我在我的 Wordpress 网站上保存了许多自定义帖子类型的商店项目,并以字符串形式$nn.nn
或简单地以自定义元的形式附加了各种价格$n
。
我想输出以下内容:
价格范围从 £nn.nn 到 £nn.nn?
所以,我想查询价格元,只显示最低和最高。
是否可以在 PHP 中执行此操作?
到目前为止,这就是我想出的所有方法,但它只是输出一个用逗号分隔的所有价格列表:
$args = array('post_type' => 'shop-items',);
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ):
echo 'Prices range from ';
// The Loop
while ( $the_query->have_posts() ) : $the_query->the_post();
$price = get_post_meta( get_the_ID(), 'itemprice', true );
echo '$price . ', ';
endwhile;
endif;