php 显示最近的帖子

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 显示最近的帖子相关的知识,希望对你有一定的参考价值。

<!-- recent posts-->
        <ul>
        <!--  Define our WP Query Parameters -->
        <?php $the_query = new WP_Query( 'posts_per_page=5' ); ?>

        <!--  Start our WP Query -->
        <?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>

        <!--  Display the Post Title with Hyperlink -->
        <li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>

        <!--  Display the Post Excerpt -->
        <li><?php the_excerpt(__('(more…)')); ?></li>

        <!--  Repeat the process and reset once it hits the limit -->
        <?php 
        endwhile;
        wp_reset_postdata();
        ?>
        </ul>

以上是关于php 显示最近的帖子的主要内容,如果未能解决你的问题,请参考以下文章

php 显示最近的帖子

PHP 显示最近更新的帖子/页面

PHP 显示最近的帖子

PHP 在WordPress边栏中显示最近帖子的发布日期

在最近的订单模板和管理订单上显示产品帖子类型高级自定义字段(woocommerce)

在WordPress中显示粘滞帖子并将其从最近的帖子列表中排除