WordPress主题开发:摘录问题

时间:2013-12-16 04:06:30

标签: php wordpress themes

有人可以帮我修复this theme的摘录吗?它显示了主页中的所有帖子,如果我切换到the_excerpt(),它将显示一个未链接的继续阅读文本。 感谢。

1 个答案:

答案 0 :(得分:0)

将此代码粘贴到该主题的functions.php文件中。它将添加一个链接到摘录。

// Replaces the excerpt "more" text by a link
function new_excerpt_more($more) {
       global $post;
    return '<a class="moretag" href="'. get_permalink($post->ID) . '"> Read the full article...</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');