Automated Cat to Nav
add_action(‘created_category’, ‘auto_add_category_to_primary_theme_menu’, 10, 2); function auto_add_category_to_primary_theme_menu($term_id, $tt_id) { // Get menu assigned to the “primary” theme location $locations = get_nav_menu_locations(); if (!isset($locations[‘primary’])) return; $menu_id = $locations[‘primary’]; $category = get_category($term_id); if (!$category || is_wp_error($category)) return; // Prevent duplicates $items = wp_get_nav_menu_items($menu_id);…Continue reading