Can you change the default sorting for the portfolio items?
It looks like it is set to order by the post id from what i can tell, because if i change the post date it does not affect the sorting.
Please help.
Thanks
Can you change the default sorting for the portfolio items?
It looks like it is set to order by the post id from what i can tell, because if i change the post date it does not affect the sorting.
Please help.
Thanks
I found the solution ...
function loop_portfolio_query( $location )
{
if ( $location == 'loop-portfolio' )
{
global $avia_config;
if(isset($avia_config['new_query'])) {
$avia_config['new_query']['orderby'] = "title";
$avia_config['new_query']['order'] = "ASC";
query_posts($avia_config['new_query']);
}
}
}
add_action( 'avia_action_query_check' , 'loop_portfolio_query', 10, 1 );
This topic has been closed to new replies.