Skip to content

Automatically add submenu items to hierarchical post type menu items

Notifications You must be signed in to change notification settings

barryceelen/wp-submenu-3000

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WordPress automatic submenu plugin

Build Status

If no submenu item is explicitly set, this plugin automatically adds submenu items if the menu item points to a hierarchical post type.

The plugin acts on all menus and respects the 'depth' option. To disable the plugin for a specific menu, add a filter:

add_filter( 'submenu_3000', 'prefix_filter_submenu_3000', 10, 4 );

/**
 * Only add submenu items to a specific theme location.
 *
 * @param string   $item_output The menu item's starting HTML output.
 * @param WP_Post  $item        Menu item data object.
 * @param int      $depth       Depth of menu item. Used for padding.
 * @param stdClass $args        An object of wp_nav_menu() arguments.
 */
function prefix_filter_submenu_3000( $item_output, $item, $depth, $args ) {

	if ( 'primary' !== $args->theme_location ) {
		return false;
	}
}

Filter CSS classes and link attributes

  • Filter the CSS classes for a submenu <ul> element: submenu_3000_submenu_css_class
  • Filter he HTML attributes for a submenu
      element: submenu_3000_submenu_attributes
    • Filter the CSS classes for a submenu item <li> element: submenu_3000_item_css_class
    • Filter the HTML attributes for a submenu item link element: submenu_3000_menu_link_attributes

    Read More

About

Automatically add submenu items to hierarchical post type menu items

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages