Skip to content

Instantly share code, notes, and snippets.

@wpexplorer
Last active October 29, 2017 22:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wpexplorer/a83f371f3ecc7e12de50 to your computer and use it in GitHub Desktop.
Save wpexplorer/a83f371f3ecc7e12de50 to your computer and use it in GitHub Desktop.
Remove all WordPress theme_mods but keep menu locations
// Get menu locations and save to array
$locations = get_theme_mod( 'nav_menu_locations' );
$save_menus = array();
foreach( $locations as $key => $val ) {
$save_menus[$key] = $val;
}
// Remove all mods
remove_theme_mods();
// Re-add the menus
set_theme_mod( 'nav_menu_locations', array_map( 'absint', $save_menus ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment