服务器与VPS
促销优惠信息

wordpress首页修改文章列表摘要字数的方法

很多wordpress主题首页默认调用网站全文,或者首页文章摘要只显示55个字,很多朋友不知怎么修改。

今天给大家介绍一下修改文章列表摘要字数的方法。

方法一:functions.php文件中,修改($limit = 70)数字即可。

// 摘要字符数
function _get_excerpt($limit = 70, $after = '...') {
$excerpt = get_the_excerpt();
if (_new_strlen($excerpt) > $limit) {
return _str_cut(strip_tags($excerpt), 0, $limit, $after);
} else {
return $excerpt;
}
}

方法二、需要用到如下代码:

<?php echo mb_strimwidth(strip_tags(get_the_content()),0,200," ");/*the_excerpt();the_content(__('Read more...', 'inove'));*/ ?><a rel="more-link" href="<?php%20the_permalink()?>" title="<?php the_title(); ?>">……查看详情</a>

使用方法如下:
1、将该代码替换原来的文章代码:

<?php the_content(); ?>

或者原来的摘要代码:

<?php the_excerpt("Read More..."); ?>

2、修改代码中的数字200为你想要显示摘要的字数即可。

楚狂人 » wordpress首页修改文章列表摘要字数的方法

相关推荐

  • 暂无文章

评论 3

  • (必填)
  • (必填)
  1. #0

    function new_excerpt_length($length)
    {
    return 200;
    }
    这个就行

    ysbinang10年前 (2014-07-03)回复
    • 这个不行呢 5.0.2版本

      nice6年前 (2018-12-30)回复
      • 哦哦,这个文章很早了,是2013年的,应该是wp版本升级之后,以前的一些代码都改变了

        楚狂人6年前 (2018-12-31)

觉得文章有用就打赏一下文章作者

非常感谢你的打赏,我们将继续给力更多优质内容,让我们一起创建更加美好的网络世界!

支付宝扫一扫打赏

微信扫一扫打赏