Support

Account

Home Forums General Issues Posts Object Field order Reply To: Posts Object Field order

  • Sorry. Just had to use the same logic found on Customize the relationship field list query.

    Here’s the code:

    add_filter( 'acf/fields/post_object/query', 'change_posts_order' );
    function change_posts_order( $args ) {
    	$args['orderby'] = 'date';
    	$args['order'] = 'DESC';
    	return $args;
    }