現在、すべての投稿をループして、次のような 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 );
}
結果を最低 - >最高に並べ替える方法はありますか? 現時点では、ランダムに表示されるか、入力されたとおりに表示されます。