Which is the file for listing portfolio items?
I need to create listing pages for portfolio items belonging to different categories.
thanks.
Which is the file for listing portfolio items?
I need to create listing pages for portfolio items belonging to different categories.
thanks.
Hi a b,
Can you explain more of what you're trying to do? If what I'm thinking you're trying to accomplish is correct then you use the options under Propulsion > Portfolio to setup category specific pages. Alternatively you can also use the Template Builder. Both save you from editing the actual theme files.
Regards,
Mya
Hi Mya,
Thank you for the workaround. I think I am a bit confused with what I want to do, so i will try to make up my mind first :)
Can portfolio page list items alphabetically? Can you adjust the order of the items?
Hello,
Go to template-portfolio.php, find this code.
$avia_config['new_query'] = array("paged" => get_query_var( 'paged' ), "posts_per_page" => $avia_config['portfolio_item_count'], "post_type"=>"portfolio");
Replace it with this.
$avia_config['new_query'] = array("paged" => get_query_var( 'paged' ), "posts_per_page" => $avia_config['portfolio_item_count'], "post_type"=>"portfolio", 'orderby' => 'title', 'order' => 'DESC');
You can change orderby and order. Visit wp query_posts codex for reference.
Regards,
Ismael
You must log in to post.