Portfolio slug
-
Topic
-
I am creating a site that needs “case studies” rather than “portfolio”. I don’t really care about what it says on the back end but the urls for portfolio items is http://mysite.com/items/
I see in your faq that you can changes this with
function my_portfolio_tax_args( $args ) { $args['rewrite'] = array('slug' => 'my-slug'); return $args; } add_filter('themeblvd_portfolio_tax_args', 'my_portfolio_tax_args');
and
function my_portfolio_tag_tax_args( $args ) { $args['rewrite'] = array('slug' => 'my-other-slug'); return $args; } add_filter('themeblvd_portfolio_tag_tax_args', 'my_portfolio_tag_tax_args');
I changed ‘my-slug’ to ‘casestudies’ but it doesn’t seem to be working. I resaved the permalinks but it continues to use ‘items’
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.