Change Related Portfolio Query Arguments
// Change Related Portfolio Query Arguments
add_filter( 'wpex_related_portfolio_args', function( $args ) {
// Remove tax_query parameter so it doesn't try and display items from the same category
$args['tax_query'] = NULL;
// Change orderby parameter from random to date
$args['orderby'] = 'date';
// Return args
return $args;
} );
All PHP snippets should be added via child theme's functions.php file or via a plugin (we recommend Code Snippets)