Advertisement
GochiSiyan

cat list

Apr 13th, 2022
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. add_filter( 'theme_mod_nav_menu_locations', function ( $menu ) {
  2. if ( is_category() ) {
  3. $cats = [0,0,0,0];//list of category id to change
  4. if ( in_array( get_queried_object_id(), $cats ) ) {
  5. $menu = is_array( $menu ) ? $menu : array();
  6. $menu['navigation'] = 0;//the menu id you wish to assign to the category.
  7. }
  8. }
  9. return $menu;
  10. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement