我正在创建一个页面网站,我在“页面”帖子类型上添加了一个自定义字段,要求“将此页面用作分区:”是或否(带有下拉列表)。我将模板上的所有页面都调用为一页。使用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; ?>
现在,我只想调用那些将“将此页面用作节”设置为“是”的页面。。我怎样才能实现它???请帮助。。谢谢