使用wp查询调用特定页面

时间:2015-03-13 作者:Hussy571

我正在创建一个页面网站,我在“页面”帖子类型上添加了一个自定义字段,要求“将此页面用作分区:”是或否(带有下拉列表)。我将模板上的所有页面都调用为一页。使用wp查询的php(自定义模板)

<?php $args = array(
    \'post_type\' => \'pages\',
    \'order\' => \'ASC\'
);
$the_query = new WP_Query($args);
?>
<?php if (have_posts()) : while (the_query->have_posts()): the_query->the_posts ?>
    <?php some content here ?>
<?php endwhile; endif; ?>
现在,我只想调用那些将“将此页面用作节”设置为“是”的页面。。我怎样才能实现它???请帮助。。谢谢

0 个回复
结束

相关推荐

Add code only for blog posts

我正在尝试只在博客帖子中运行一个代码,而另一个代码只在单个页面中运行。但我甚至无法生成一个包含wordpress条件标记的php if语句。在页脚中。php,我尝试了一些简单的函数if( is_singular() ) { // should show work in singular pages, bot is not working } 在下面的代码中,将在首页上执行code4 getif ( is_front_page() && is_home()