Image Menu Plugin For WordPress
Now before you make the menu with images css I used to do, then I come to find alternative to this plugin, but the plugin has problems, there is a fault on the active image in the post and insert page, it is difficult to insert the image command, after searching for a while I’ve found a plugin that is quite appropriate “Nav Menu images”
After using it to detect a problem is the text in the menu is completely replaced by a new image that was uploaded, after finding out they found a way to overcome the following:
you copy paste this code into functions.php file offline
function md_nmi_custom_content( $content, $item_id, $original_content ) {
$content = $content . '<span>' . $original_content . '</span>';
return $content;
}
add_filter( 'nmi_menu_item_content', 'md_nmi_custom_content', 10, 3 );
Here’s how to fix error quickest and most effective.
I wish you success with this plugin.