wordpress 摘要添加“阅读全文”及文章链接

给文章”阅读全文”添加链接,将如下代码放到主题的functions.php文件。

function new_excerpt_more($more) {

global $post;

return ' <a href="'.get_permalink($post-&gt;ID). '"> 阅读全文 </a> ';
}

add_filter('excerpt_more', 'new_excerpt_more'); 

发表评论

电子邮件地址不会被公开。 必填项已用*标注

您可以使用这些HTML标签和属性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>