程序员人生 网站导航

Wordpress如何在摘录中显示Read More

栏目:WordPress时间:2013-10-11 06:26:03

为了避免重复的内容,减少网站的加载时间,也为了更好的SEO,许多博客开始使用摘录,他是在分页面或者是主页面上的小型文章描述。WordPress默认的是[...]。使用这段代码就可以把这个替换掉,而是显示[read more],并包含一个链接。这段代码需要放在functions.php文件<?php ?>里

// Changing excerpt more
function new_excerpt_more($more) {
global $post;
return '… <a href="'. get_permalink($post->ID) . '">' . 'Read More »' . '</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');

来源:Wordpress啦

------分隔线----------------------------
------分隔线----------------------------

最新技术推荐