Advertisement
phpface

Untitled

Feb 24th, 2021
1,101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. function cobalt_filter_tax_portfolio_category_args( $args ){
  2.  
  3.     $args['rewrite']['slug'] = 'my-portfolio-category';
  4.  
  5.     return $args;
  6. }
  7. add_filter( 'cobalt_tax_portfolio_category_args', 'cobalt_filter_tax_portfolio_category_args', 10, 1 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement