标签: php wordpress templates
我在为wordpress模板创建page.php时遇到问题。所有功能都有效,但问题是循环不会给我页面内容。相反,它给了我最后一篇文章。我有标准循环:
<?php if (have_posts()) : while (have_posts()) : the_post(); the_title(); the_content(); endwhile; endif; ?>
答案 0 :(得分:0)
固定。我删除了get_post,现在使用WP_Query