我目前正在遍历所有帖子并显示 post_meta 值,如下所示:
global $wpdb;
$table = $wpdb->prefix . 'postmeta';
$theid = get_the_id();
$getLowestPrice = $wpdb->get_results("SELECT * FROM $table WHERE meta_value = '$theid'");
foreach ( $getLowestPrice as $post ){
get_post_meta( $post->post_id, '_wholesale_price', false );
}
有没有办法对结果进行排序,最低 -> 最高?目前它们正在随机显示,或者在输入时显示。