这是主题:https://wordpress.org/themes/responsive/
儿童主题:http://cyberchimps.com/guide/child-theme-example/
在这里查看:https://codex.wordpress.org/Customizing_the_Read_More,我试图通过在子主题function.php
文件中输入以下内容来说明主题在主页上显示摘录而不是完整帖子:
<?php
function new_excerpt_more($more) {
//die('no yolo :(');
global $post;
return '<a class="moretag" href="'. get_permalink($post->ID) . '"> Read the full article...</a>';
}
function child_theme_setup() {
//die('yolo works');
// Replaces the excerpt "more" text by a link
add_filter('excerpt_more', 'new_excerpt_more');
}
add_action( 'after_setup_theme', 'child_theme_setup' );
?>
这显然不起作用,因为我是一个PHP菜鸟,如果未评论die('yolo works');
有效且die('no yolo :(');
没有。
答案 0 :(得分:1)
查看我们已经写过的post。希望能帮助到你!
答案 1 :(得分:0)
我最终使用了一个插件:https://wordpress.org/plugins/advanced-excerpt/
虽然是一个儿童主题&#34;代码解决方案会更好:)