1 <?php
2
3 /**
4 * Vanilla ACF related enhancements.
5 *
6 * @author Nevma, http://www.nevma.gr, info@nevma.gr
7 *
8 * @license http://www.gnu.org/licenses/gpl-3.0.en.html GPLv3
9 */
10
11
12
13 /**
14 * Make the posts that appear in ACF relationship fields be ordered by
15 * descending date (most recent).
16 *
17 * @return void
18 */
19
20 function vanilla_acf_change_relationship_field_post_order ( $args, $field, $post_id ) {
21
22 $args['orderby'] = 'date';
23 $args['order'] = 'DESC';
24 $args['post_status'] = 'publish';
25
26 return $args;
27
28 }
29
30 ?>