Created
November 9, 2013 12:33
-
-
Save tott/7384971 to your computer and use it in GitHub Desktop.
Enable exporting of Nav menus via WP Exporter
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
<?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