我一直在创建一个儿童Wordrpess主题。父主题是TwentyTwelve主题。
我覆盖styles.css文件,它完美无缺。但我不能替换我的functions.php
上的_excerpt函数我一直在寻找,但我无法找到解决方案。
的functions.php
<?php
function custom_excerpt($text) {
return "Test";
}
function my_child_theme_setup() {
add_filter('the_excerpt', 'custom_excerpt');
add_filter('get_the_excerpt', 'custom_excerpt');
add_filter('default_excerpt', 'custom_excerpt');
}
add_action( 'after_setup_theme', 'my_child_theme_setup' );
?>
我只是想在连接原帖的摘录中显示精选图片。
谢谢!