我在我的帖子元中有一个选择下拉列表,其中我获得了另一个自定义帖子类型的所有帖子的帖子ID。参见以下代码-
<select name="property_type" id="property_type">
<option value=""></option>
<?php
$propertyType_args=array(
\'post_type\' => "soto_propertyType",
\'post_status\' => \'publish\',
\'posts_per_page\' => -1,
\'order\' =>\'ASC\',
);
$propertyType_query = null;
$propertyType_query = new WP_Query($propertyType_args);
if( $propertyType_query->have_posts() ) {
while ($propertyType_query->have_posts()) : $propertyType_query->the_post();
?>
<option value="<?php echo the_ID(); ?>" <?php selected( $property_type, the_ID(), false ); ?>><?php echo the_title(); ?></option>
<?php
endwhile;
}
wp_reset_query();
?>
</select>
在这个选择列表中,我得到了所有帖子的所有ID,但没有得到选项中选择的现有值。我得到这样的选择下拉列表-
要显示下拉列表中选定的现有值,我必须做些什么。请帮帮我。