在wordpress中,使用CTU插件,我制作了一个名为apartments的自定义帖子类型,其中包含一个名为available的字段。我只希望使用available = yes定位任何帖子。我该怎么做?我试过the_post('available = yes')
<?php
$args = array(
'post_type' => 'apartment'
);
$the_query = new WP_Query( $args );
?>
<?php if( have_posts()): ?>
<?php while ($the_query->have_posts()): ?>
<?php $the_query->the_post(); ?>
<?php $the_field('available'); ?>
<?php endwhile; ?>
<?php else: ?>
<?php endif; ?>
答案 0 :(得分:1)
我认为最简单的解决方案是: 1.在自定义分类中,创建一个名为available的术语 2.将其添加到您的自定义查询
$args = array(
'post_type' => 'apartment',
'category_name' => 'available'
);