由于您并没有提供任何代码,下面的代码段假定“property”为post类型,price为meta字段。我认为该代码将为您提供一些方向,您可以从那里开始。可以根据需要进行更改:
$args = array(\'post_type\' => \'property\',
\'meta_key\' => \'price\',
\'orderby\' => \'meta_value\',
\'order\' => \'ASC\',
\'meta_query\' => array(array(\'key\' => \'price\',\'compare\' => \'=\',))
);
$query = new WP_Query($args);