Wordpress Archive.php页面

时间:2018-05-15 09:45:41

标签: php wordpress

我使archive.php显示完整帖子,但现在我想让它只显示每个类别的最新帖子。这是我已经为完整帖子做的代码

<?php get_header(); ?>

<?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>
        <?php topfit_mikado_get_title(); ?>
        <?php get_template_part('slider'); ?>
        <div class="mkd-container">
            <?php topfit_mikado_image_title_featured_image(); ?>
            <div class="mkd-container-inner">
                <?php do_action('topfit_mikado_after_container_open'); ?>
                <?php topfit_mikado_get_blog_single(); ?>
                <?php do_action('topfit_mikado_before_container_close'); ?>
            </div>
            <?php topfit_mikado_get_single_post_navigation_template(); ?>
        </div>
    <?php endwhile; ?>
<?php endif; ?>

1 个答案:

答案 0 :(得分:0)

你在循环中。如果您只需要该循环中的第一个项目,则可以使用break提前退出循环。

在结束前把它放在底部: - )