首页    >    新闻资讯    >   如何在摘录中显示Read More

如何在摘录中显示Read More

为了避免重复的内容,减少网站的加载时间,也为了更好的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 &raquo;' . '</a>';
   }
   add_filter('excerpt_more', 'new_excerpt_more');

分类:新闻资讯

标签:, ,

* 版权声明:作者WordPress啦! 转载请注明出处。