关于wordpress WP\\u查询的问题:
\'post_type\' => \'event_date\' 输出日/月/年ex:31122012
我想订购我的前端\'event_date\' 输出不是按最新WP post ENTRY,而是按最新WP post ENTRY\'event_date\'
已尝试\'order\' => \'ASC\' 仅在WP post条目上排序
这是我的密码:
$arg = array(\'post_type\' => \'livedates\');
$the_query = new WP_Query($arg);
while($the_query->have_posts()) : $the_query->the_post();
$date = str_split(get_post_meta($post->ID, \'event_date\', true), 2);
//the loop
endwhile;