Change Order of Properties in Slider @Ushuaia
<?php
/**
* Change Order of Properties in Slider
* @ushuaia
*/
add_filter('wpcasa_home_slider_query_args', 'custom_home_slider_query_args');
function custom_home_slider_query_args($query_args) {
$query_args['orderby'] = 'title';
return $query_args;
}