向 WP_Query 参数添加额外的排序层
Adding additional layers of ordering to a WP_Query argument
以下将驻留的活动环境:http://test-hdwg.pantheon.io/projects/
运行 变成一个小小的 PHP wp_query() 过滤任务,我想知道如何最好地处理。客户希望根据以下(lamen written)算法利用 Advanced Custom Fields (ACF) 过滤 WP_Query 的结果WordPress (4.1.1) 环境中的值:
If the query produces multiple results... {
sort the results by ACF field “project_year_end” {
if the field contains “present”, filter these items first {
if multiple results, then {
further sort by the field “project_year_start” value {}
}
}
else if, sort those without “present” afterwards by the “project_year_end” value {
if multiple results for a single value (ex: 2015), then {
further sort by “project_year_start” { }
}
}
}
}
目前,需要包含此筛选查询的模板 (PHP) 是按以下方式构建的:
<?php /* Template Name: Projects */ ?>
<?php get_header(); ?>
<main id="primary" class="content-area">
<div class="jumbotron">
<div class="row">
<div class="intro"><?php the_field('projects_heading') ?></div>
</div>
</div>
<div class="projects">
<div class="row project-list">
<div class="column-wrapper">
<?php
$args = array (
'post_type' => 'project', // target the post-type for projects
'post_per_page' => '20', // display (at max) (x) at once
'nopaging' => true, // disable automatic pagination
'order' => 'ASC', // display order = ascending
'orderby' => 'title' // organized based on the the_title() of the post
);
$projects = new WP_Query( $args );
if ( $projects->have_posts() ) {
?>
<div class="project-listing">
<?php while ( $projects->have_posts() ) {
$projects->the_post();
?>
<div class="columns ui-listing-block">
<hr/>
<h2><?php the_field('project_title') ?></h2>
<?php if( have_rows('project_date_range') ): ?>
<span>
<?php while( have_rows('project_date_range') ): the_row(); ?>
<?php the_sub_field('project_year_start'); ?>-<?php the_sub_field('project_year_end'); ?>
<?php endwhile; ?>
</span>
<?php endif; ?>
<?php echo project_excerpt(); ?>
<a href="<?php the_permalink(); ?>" title="Learn more about the project: <?php the_field('project_title') ?>" class="button postfix">Learn More</a>
</div>
<?php } ?>
</div>
<?php } else { ?>
<p>No Projects Available.</p>
<?php } wp_reset_postdata(); ?>
</div>
</div>
</div>
</main>
<?php get_footer(); ?>`
如有任何帮助,我们将不胜感激。
您可以使用 meta_key => 'your_acf_field' 然后按 orderby => 'meta_value_num' 按 acf 字段排序。请参阅此 link 以获得帮助 http://www.advancedcustomfields.com/resources/orde-posts-by-custom-fields/
以下将驻留的活动环境:http://test-hdwg.pantheon.io/projects/
运行 变成一个小小的 PHP wp_query() 过滤任务,我想知道如何最好地处理。客户希望根据以下(lamen written)算法利用 Advanced Custom Fields (ACF) 过滤 WP_Query 的结果WordPress (4.1.1) 环境中的值:
If the query produces multiple results... {
sort the results by ACF field “project_year_end” {
if the field contains “present”, filter these items first {
if multiple results, then {
further sort by the field “project_year_start” value {}
}
}
else if, sort those without “present” afterwards by the “project_year_end” value {
if multiple results for a single value (ex: 2015), then {
further sort by “project_year_start” { }
}
}
}
}
目前,需要包含此筛选查询的模板 (PHP) 是按以下方式构建的:
<?php /* Template Name: Projects */ ?>
<?php get_header(); ?>
<main id="primary" class="content-area">
<div class="jumbotron">
<div class="row">
<div class="intro"><?php the_field('projects_heading') ?></div>
</div>
</div>
<div class="projects">
<div class="row project-list">
<div class="column-wrapper">
<?php
$args = array (
'post_type' => 'project', // target the post-type for projects
'post_per_page' => '20', // display (at max) (x) at once
'nopaging' => true, // disable automatic pagination
'order' => 'ASC', // display order = ascending
'orderby' => 'title' // organized based on the the_title() of the post
);
$projects = new WP_Query( $args );
if ( $projects->have_posts() ) {
?>
<div class="project-listing">
<?php while ( $projects->have_posts() ) {
$projects->the_post();
?>
<div class="columns ui-listing-block">
<hr/>
<h2><?php the_field('project_title') ?></h2>
<?php if( have_rows('project_date_range') ): ?>
<span>
<?php while( have_rows('project_date_range') ): the_row(); ?>
<?php the_sub_field('project_year_start'); ?>-<?php the_sub_field('project_year_end'); ?>
<?php endwhile; ?>
</span>
<?php endif; ?>
<?php echo project_excerpt(); ?>
<a href="<?php the_permalink(); ?>" title="Learn more about the project: <?php the_field('project_title') ?>" class="button postfix">Learn More</a>
</div>
<?php } ?>
</div>
<?php } else { ?>
<p>No Projects Available.</p>
<?php } wp_reset_postdata(); ?>
</div>
</div>
</div>
</main>
<?php get_footer(); ?>`
如有任何帮助,我们将不胜感激。
您可以使用 meta_key => 'your_acf_field' 然后按 orderby => 'meta_value_num' 按 acf 字段排序。请参阅此 link 以获得帮助 http://www.advancedcustomfields.com/resources/orde-posts-by-custom-fields/