我有一个wordpress查询,通过自定义帖子类型的帖子。我有
$args = array(
'post_type' => 'custom_post_type',
'posts_per_page' => '-1',
);
$post = new WP_Query( $args );
if ($post->have_posts()){
while ($post->have_posts()){
$post->the_post();
$id = get_the_ID();
$custom = get_post_custom($id);
$date = $custom["custom_date"][0];
}
}
我需要创建一个数组,该数组将id作为键,并指定相应值的日期,如:
Array
(
[123] => 2014-1-1
[456] => 2015-2-1
[789] => 2013-2-8
[012] => 2011-12-12
)
我完全厌倦了php数组。我尝试只创建一个空数组,然后分配给它的值但没有任何反应(只是将数组输出)。
答案 0 :(得分:0)
找到解决方案:
$date_array[$id] = $date;
如此简单,现在感到愚蠢xD