Advertisement
artemsemkin

Cassio: modify taxonomies capabilities

Feb 16th, 2025 (edited)
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php
  2.  
  3. add_filter( 'register_taxonomy_args', 'modify_arts_portfolio_category_args', 10, 2 );
  4. function modify_arts_portfolio_category_args( $args, $taxonomy ) {
  5.   if ( 'arts_portfolio_category' === $taxonomy ) {
  6.     $args['hierarchical'] = true;
  7.     $args['has_archive'] = true;
  8.   }
  9.  
  10.   return $args;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement