Plugin Author
Ajay
(@ajay)
You can filter crp_query_args to add the orderby arg
https://developer.wordpress.org/reference/classes/wp_query/#order-orderby-parameters
The plugin wraps around WP_Query so you can use the same orderby parameters.
Sorry, but I tried and I couldn’t. Can you help me?
Plugin Author
Ajay
(@ajay)
You can try this code added to your functions.php or a custom plugin.
function filter_crp_query_args( $args ) {
$args['orderby'] = 'title';
$args['order'] = 'ASC';
return $args;
}
add_filter( 'crp_query_args', 'filter_crp_query_args' );
`
-
This reply was modified 4 years, 6 months ago by
Ajay.