我有一个允许子页面的自定义页面类型的事件,我想按子页面的日期顺序对事件页面进行排序。
所以我的结构是这样的:
野营旅行:
筹款:
等
在查询页面时,我希望他们按照筹款人的顺序返回,然后去野营旅行。
答案 0 :(得分:0)
我假设你正在使用一个类别来分开野营旅行和筹款人,这种方法应该接近其他分离旅行/筹款人的方法。我也假设你想在循环之外做这个,或者作为辅助循环。我没有测试过这个,但是这样的事情应该可以解决。
基本上这就是要做的事情:
1)查询按日期排序的筹款人和露营旅行。
2)将两个问题合并在一起,以便筹款人第一,露营之旅第二。
3)循环浏览每个返回的帖子,并根据需要标记信息。
代码:
<?php //Enter your information for each variable:
$post_type = 'enter_your_custom_post_type_slug';
$fundraiserCatID = 'enter_your_fundaiser_category_id';
$campingCatID = 'enter_your_camping_category_id';
$acfDateFieldName = 'enter_your_date_acf_field_slug';
//Setup each Query args
$fundraiserAgrs = array('post_type' => $post_type, 'cat' => $fundraiserCatID, 'orderby' => 'meta_value', 'meta_key' => $acfDateFieldName, 'order' => 'ASC');
$campingAgrs = array('post_type' => $post_type, 'cat' => $fundraiserCatID, 'orderby' => 'meta_value', 'meta_key' => $acfDateFieldName, 'order' => 'ASC');
$fundraisers = get_posts($fundraiserArgs);
$campingTrips = get_posts($campingArgs);
$events = array_push($fundraisers, $campingTrips); //merge the two queries, with fundraisers first, then camping trips
if($events) : foreach($events as $event): //If we have $events, loop through each event
//Do what you will with the $event content ?>
<h1><?php echo $event->post_title; ?></h1>
<?php echo $event->post_content; ?>
<h6>Date: <?php the_field($acfDateFieldName, $event->ID); ?></h6>
<?php endforeach; endif; //End the loop and the conditional ?>