Hi, i need order porfolio but not by date. I need order as I want!! I want by alphabetic order.
How can i do it?
Do I need some pluging?
Thanks!!
Hi, i need order porfolio but not by date. I need order as I want!! I want by alphabetic order.
How can i do it?
Do I need some pluging?
Thanks!!
You can use a plugin like: http://wordpress.org/extend/plugins/post-types-order/ to order your portfolio items. You can also use following php code to sort your items (alph. order) - add it to the bottom of functions.php:
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 );Great!! Thank so much!!
Regards,
This topic has been closed to new replies.