Wordpress template page.php


Wordpress template page.php

我在为wordpress模板创建page.php时遇到问题。所有函数都可以工作,但问题是循环并没有给我提供页面内容。相反,它给了我最后一个帖子。我有标准环路:

<?php if (have_posts()) : while (have_posts()) : the_post();
    the_title();
the_content();
endwhile; endif; ?>

已修复。我已经删除了get_post,现在使用WP_Query