Wordpress Categories Automatically Add to Menu

Use the “JC Submenu” plugin and in theme functions.php add this code:

//Enable compatibility with theme custom menu walkers

add_filter(‘jcs/enable_public_walker’, ‘jc_disable_public_walker’);

function jc_disable_public_walker($default){
return false;
}

From here

and follow this video:

To add a list of subcategories automatically under one of the primary menus:

To add a list of posts underneath one of the primary menus:

Leave a reply