Php wordpress自定义循环按自定义字段升序降序帖子

Php wordpress自定义循环按自定义字段升序降序帖子,php,wordpress,Php,Wordpress,我正在开发wordpress网站,这取决于价格,所以我添加了名为“价格”的自定义文件 <?php while ( have_posts() ) : the_post(); echo $price = get_post_meta($post->ID, 'price', TRUE); endwhile; ?> 这是显示所有帖子价格的基本循环。 要求: 有人可以修改上面的内容,使其按照升序或降序显示帖子,就像每个价格网站一样我不知道我是否做得好,但这正是你需要的吗 <

我正在开发wordpress网站,这取决于价格,所以我添加了名为“价格”的自定义文件

<?php 
while ( have_posts() ) : the_post();
echo  $price = get_post_meta($post->ID, 'price', TRUE);
endwhile;
 ?>
这是显示所有帖子价格的基本循环。 要求:
有人可以修改上面的内容,使其按照升序或降序显示帖子,就像每个价格网站一样

我不知道我是否做得好,但这正是你需要的吗

 <?php query_posts(array('posts_per_page'=>20,'meta_key' => 'price','orderby' => 'meta_value_num','order' => 'ASC',))?>

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

 echo  $price = get_post_meta($post->ID, 'price', TRUE);

 <?php endwhile; endif; ?>
祝你好运