我的子主题中的整个 functions.php 文件目前是:
<?php
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style-rtl.css' );
}
?>
<?php
// Display 6 products per page. Goes in functions.php
add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 6;' ), 20 );
?>
我需要添加一个片段来更改页脚。我从WordPress支持获得了这个片段,但是我插入它的每个地方都会出现语法错误。我已经多种方式插入,正确嵌套在标签中,但我的网站总是打破。在插入此代码段之后,请问一位善良的人,请告诉我整个 functions.php 文件应该是什么样的?
add_action( 'init', 'custom_remove_footer_credit', 10 );
function custom_remove_footer_credit () {
remove_action( 'storefront_footer', 'storefront_credit', 20 );
add_action( 'storefront_footer', 'custom_storefront_credit', 20 );
}
function custom_storefront_credit() {
?>
<div class="site-info">
© <?php echo get_bloginfo( 'name' ) . ' ' . get_the_date( 'Y' ); ?>
</div><!-- .site-info -->
<?php
}
?>