为了避免重复的内容,减少网站的加载时间,也为了更好的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');
分类:新闻资讯