php 显示wordpress最近的帖子

Posted

tags:

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

<ul>
    // Define our WP Query Parameters
    <?php $the_query = new WP_Query( 'posts_per_page=3' ); ?>

    // 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(); ?></li>

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

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

控制 wordpress 存档页面上的帖子数量

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

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

php 自定义Wordpress最近的帖子

如何在 WordPress 中显示自定义的最近帖子?

PHP Wordpress:在任何Wordpress页面上显示最新的博客帖子