Skip to content

Instantly share code, notes, and snippets.

@DrewAPicture
Created February 16, 2013 21:34
Show Gist options
  • Save DrewAPicture/4968840 to your computer and use it in GitHub Desktop.
Save DrewAPicture/4968840 to your computer and use it in GitHub Desktop.
Remove invalid menu locaitons
<?php
if ( is_array( $menu_locations ) ) {
foreach ( $menu_locations as $key => $value ) {
if ( ! is_string( $key ) )
unset( $menu_locations[$key] );
}
}
set_theme_mod( 'nav_menu_locations', $menu_locations );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment