码迷,mamicode.com
首页 > 其他好文 > 详细

wordpress调用文章摘要,若无摘要则自动截取文章内容字数做为摘要

时间:2019-08-23 15:04:04      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:page   str   作者   php   lse   highlight   while   忘记   lte   

以下是调用指定分类文章列表的一个方法,作者如果有填写文章摘要则直接调用摘要;如果文章摘要忘记写了则自动截取文章内容字数做为摘要。这个方法也适用于调用description标签

<ul>
<?php
    $args=array(
        ‘cat‘ => 1,   // 分类ID
        ‘posts_per_page‘ => 10, // 显示篇数
    );
    query_posts($args);
    if(have_posts()) : while (have_posts()) : the_post();
?>
    <li>
        <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> //标题
        <p>
        <?php if (has_excerpt()) {
                echo $description = get_the_excerpt(); //文章编辑中的摘要
            }else {
                echo mb_strimwidth(strip_tags(apply_filters(‘the_content‘, $post->post_content)), 0, 170,"……"); 
//文章编辑中若无摘要,自动截取文章内容字数做为摘要,0表示开始的位置,170表示结束的位置
            } ?>
        </p>
    </li>
<?php  endwhile; endif; wp_reset_query(); ?>
</ul>

  这个方法是不是还不错,感兴趣的朋友可以去试试。

wordpress调用文章摘要,若无摘要则自动截取文章内容字数做为摘要

标签:page   str   作者   php   lse   highlight   while   忘记   lte   

原文地址:https://www.cnblogs.com/ytkah/p/11399935.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!