在WordPress页面循环不起作用

时间:2015-12-15 17:28:16

标签: php wordpress

这是我的页面模板:

它没有把内容拉进去。不确定我缺少什么?

<?php get_header(); ?>
    <section id="services">
        <div class="container">
            <div class="row divide">
            <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
            <h2><?php the_title(); ?></h2>
            <?php the_content(); ?>
            <?php endwhile; endif; ?>
            </div>
        </div>
    </section>
<?php get_footer(); ?>

2 个答案:

答案 0 :(得分:0)

此代码用于模板中的显示帖子列表。请试一试。

get_header();
?>
<section id="services">
    <div class="container">
        <div class="row divide">
            <?php
            $args = array('post_type' => 'post');
            $postlist = new WP_Query($args);

            if ($postlist->have_posts()) {
                while ($postlist->have_posts()) {
                    $postlist->the_post();
                    the_title();
                    the_content();
                    // list posts here
                }

                // post pagination
            } else {
                // no posts content
            }
            ?>
        </div>
    </div>
</section>
<?php get_footer();

答案 1 :(得分:0)

尝试

grep -B 1 line5 | head -1