我正在尝试以更低的价格向更高的价格(数值)订购我的自定义帖子。这是我的疑问。但它不是按从最低到最高的价格订购的。
<?php
$tours = new WP_Query(array(
\'post_type\' => \'tour\',
\'posts_per_page\'=> 12,
\'meta_key\' => \'tour_price\',
\'orderby\' => \'meta_value_num\',
\'order\' => \'DESC\'
));
avobe查询只按降序排序,不按价格排序。
最合适的回答,由SO网友:Connor 整理而成
我想你要找的是:
<?php
$tours = new WP_Query(array(
\'post_type\' => \'tour\',
\'posts_per_page\'=> 12,
\'meta_key\' => \'tour_price\',
\'orderby\' => \'meta_value_num\',
\'order\' => \'ASC\'
));
下降意味着从高到低的下降<上升正在上升,从低到高。