Wordpress上的儿童模板的自定义摘录

时间:2014-05-05 11:09:19

标签: php wordpress

我一直在创建一个儿童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' );

?>

我只是想在连接原帖的摘录中显示精选图片。

谢谢!

0 个答案:

没有答案