Skip to content

Instantly share code, notes, and snippets.

@micahwave
Created February 25, 2014 15:09
Show Gist options
  • Save micahwave/9210684 to your computer and use it in GitHub Desktop.
Save micahwave/9210684 to your computer and use it in GitHub Desktop.
/**
* Append "Menu" to newly created menus so they slugs dont screw up other taxonomy slugs
*/
function time_nav_menu_filter() {
if( isset( $_POST['menu-name'] ) )
$_POST['menu-name'] .= ' Menu';
}
add_action( 'admin_init', 'time_nav_menu_filter' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment