Same question here, we would like to show the title as well
function md_nmi_custom_content( $content, $item_id, $original_content ) {
$content = $content . '<span class="page-title">' . $original_content . '</span>';
return $content;
}
add_filter( 'nmi_menu_item_content', 'md_nmi_custom_content', 10, 3 );
Paste the above code in functions.php
file to get both image and text in menu.
You can read more here:
http://blog.milandinic.com/2012/11/23/nav-menu-images-developers-guide/
Paste the below code in functions.php file
function md_nmi_custom_content( $content, $item_id, $original_content ) {
$content = $content . ‘<span class=”page-title”>’ . $original_content . ‘</span>’;
return $content;
}
add_filter( ‘nmi_menu_item_content’, ‘md_nmi_custom_content’, 10, 3 );
Read more here:
http://blog.milandinic.com/2012/11/23/nav-menu-images-developers-guide/