Created
February 25, 2014 15:09
-
-
Save micahwave/9210684 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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