Page Order in the Builder

Hi there.

Just a very small quality of life wish:

Could you take in care the page order set in WP also for the builder page list?

I like to order my shi… hope I´m not alone :wink:

Hey @shenom,

this should do the trick:

add_filter( 'bricks/ajax/get_pages_args', function ( $query_args ) {
	$query_args['orderby'] = 'menu_order';
	$query_args['order'] = 'ASC';
	
	return $query_args;
} );

Best,

André

2 Likes

You know… Thx - I like your ‘tricks’ a lot :slight_smile:

Maybe it´s anyway something we can see without tricks - just from Bricks.