Skip to content

Instantly share code, notes, and snippets.

@mo3aser
mo3aser / WordPress - Import Menu Item's custom fields.php
Last active January 14, 2016 17:06
How to modify the WordPress importer plugin to Import Menu Item's custom fields
<?php
# WordPress - Import Menu Item's custom fields
# By Fouad Badawy - TieLabs.com
#1- Edit wordpress-importer.php
#2 search for
$id = wp_update_nav_menu_item( $menu_id, 0, $args );
if ( $id && ! is_wp_error( $id ) )
$this->processed_menu_items[intval($item['post_id'])] = (int) $id;