基本上,我有一个问题,我有从高级自定义字段中提取的详细信息,目前我有他们按页面标题升序排序。
但是,我不想按页面标题升序,而是按我的自定义字段:*教育排名*。
<?php query_posts(\'post_type=page&post_parent=2&posts_per_page=-1&orderby=&order=ASC\'); ?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<tr>
<td><?php echo the_field(\'educational_ranking\'); ?></td>
<td><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></td>
<td><?php echo the_field(\'current_students\'); ?></td>
<td>£<?php echo the_field(\'tuition_fees\'); ?></td>
<td></td>
</tr>
<?php endwhile; rewind_posts(); ?>
到目前为止,这就是我所知道的,我似乎不知道如何按领域排序:“教育排名”——有什么想法吗?
SO网友:Ajay Patel
使用自定义字段wp\\U查询
Ex公司
<?php
$args = array(
\'post_type\' => \'page\',
\'meta_query\' => array(
array(
\'key\' => \'mytitle\',
\'value\' => \'title\',
\'orderby\' => \'mytitle\',
\'order\' => \'DESC\'
),
)
);
$query = new WP_Query( $args );
if ( have_posts() ) while ( $wp_query->have_posts() ) : $wp_query->the_post(); ?>
<tr>
<td><?php echo the_field(\'educational_ranking\'); ?></td>
<td><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></td>
<td><?php echo the_field(\'current_students\'); ?></td>
<td>£<?php echo the_field(\'tuition_fees\'); ?></td>
<td></td>
</tr>
<?php endwhile; rewind_posts(); ?>