我使用此代码从自定义帖子类型中获取日期。我如何在我的ajax调用中使用它
<select id="date">
<?php
$dates = array();
$argez = (array( 'post_type' => 'latest_message'));
query_posts( $argez );
if (have_posts()) : while (have_posts()) : the_post();
$dates[] = get_the_date();
$dates = array_unique($dates);
print_r($datesun);
endwhile;
foreach($dates as $date) {
echo '<option value="' . $date . '">' . $date .'</option> ';
}
endif;
?>
</select>
我知道我必须使用这样的东西,但不知道如何。我需要能够点击日期,并显示该日期的所有帖子
if ($_POST["topic"]!=0 ) {
$topic = array($_POST["topic"]);
} else {
$topic = get_terms( 'topic', array('fields' => 'ids') );
//$topic = array(implode(', ',$topic));
}
$myquery['tax_query'] = array(
array(
'taxonomy' => 'topic',
'terms' => $topic,
'field' => 'id',
)
);