我会按meta\\u键订购post,但我对meta\\u值有问题,因为它是序列化对象。
我会按计数值订购我的帖子。
a:2:{s:5:"count";d:9750;s:7:"timeout";i:1358466733;}
我使用以下代码,但在更新到3.5“订单截止日期”后,在wp版本3.4.2之前,订单是正确的:
if (have_posts()) :
$args=array(
\'meta_key\' => \'tweets_count\',
\'orderby\' => \'meta_value\',
\'showposts\' => 10,
);
query_posts($args);
while (have_posts()) : the_post();
//loop
印花申请:
REQUEST:SELECT SQL_CALC_FOUND_ROWS wp_posts.ID FROM wp_posts WHERE 1=1 AND wp_posts.post_type = \'post\' AND (wp_posts.post_status = \'publish\' OR wp_posts.post_status = \'private\') ORDER BY wp_posts.post_date DESC LIMIT 0, 10
谢谢。