我对这个有点失落。
我正在尝试为我的自定义分类法创建一个索引页面,我有99%的工作,但它忽略了orderby并以发布的日期顺序显示帖子。
$number_of_posts = intval(get_option('theme_number_posts_agent'));
$get_county = get_terms(
'new_developments',
array(
'orderby' => 'name',
'order' => 'ASC',
'hide_empty' => 1,
)
);
if(!$number_of_posts){
$number_of_posts = 3;
}
foreach ( $get_county as $get_countys ) {
$agents_query = array(
'post_type' => 'agent',
'posts_per_page' => $number_of_posts,
'paged' => $paged,
'orderby' => 'title', 'order' => 'ASC',
'tax_query' => array(
array(
'taxonomy' => 'new_developments',
'field' => 'slug',
'terms' => $get_countys
)
)
);
$agent_listing_query = new WP_Query( $agents_query );
if ( $agent_listing_query->have_posts() ) :
while ( $agent_listing_query->have_posts() ) :
$agent_listing_query->the_post();
我已将orderby放在get_terms和wp_query下的两个地方,但没有...
任何帮助都将受到极大的赞赏
答案 0 :(得分:0)
我想你想要订购自定义分类法。在codex中你可以通过命令分配 1)id 2)数数 3)姓名 4)S .. 5)term_group - 没有补充实现(避免使用) 6)没有。 但是没有日期选择。
我猜你可以用 https://wordpress.org/plugins/taxonomy-terms-order/ 这个插件是你的最佳答案
谢谢