Advertisement
artemsemkin

Disable taxonomy archive page

Feb 6th, 2024 (edited)
1,179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. <?php
  2.  
  3. add_filter( 'register_taxonomy_args', 'custom_change_taxonomy_args', 10, 2 );
  4. function custom_change_taxonomy_args( $args, $taxonomy ) {
  5.   if ( $taxonomy === 'arts_portfolio_category' || $taxonomy === 'arts_portfolio_year' ) {
  6.     $args['public']       = false;
  7.     $args['show_ui']      = true;
  8.     $args['show_in_menu'] = true;
  9.   }
  10.  
  11.   return $args;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement