Hi,
I have a portfolio with some categories, but I’d like to display the categories in a specific order (“Toutes les galeries” then “Initial”).
How possible ?
Hey totofunk!
You can try using a plugin like this one to change the order of your portfolio items in WordPress http://wordpress.org/plugins/simple-custom-post-order/
Best regards,
Devin
actually I already use this plugging and it works fine.
The problem is that I want to change the order of my categories in the sorting function itself.
because in French it displays “Fresh / Initial / Toutes les galeries” and in English it is the opposite : All Galleries / Fresh / Initial. (I removed the “All” sorting function)
Hi!
Edit config-templatebuilder > avia-shortcodes > portfolio.php, find this code on line 442:
//get all categories that are actually listed on the page
$categories = get_categories(array(
'taxonomy' => $params['taxonomy'],
'hide_empty'=> 0
));
Replace it with:
$categories = get_categories(array(
'taxonomy' => $params['taxonomy'],
'hide_empty'=> 0,
'orderby' => 'name',
'order' => 'DESC'
));
Best regards,
Ismael