Skip to content

Instantly share code, notes, and snippets.

@tott
Created November 9, 2013 12:33
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 tott/7384971 to your computer and use it in GitHub Desktop.
Save tott/7384971 to your computer and use it in GitHub Desktop.
Enable exporting of Nav menus via WP Exporter
<?php
function tott_enable_menu_export() {
global $wp_post_types;
$wp_post_types['nav_menu_item']->_builtin = false;
}
add_action( 'load-export.php', 'tott_enable_menu_export' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment