Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi LauraDon,
    You may find some answer here https://blog.milandinic.com/2012/11/23/nav-menu-images-developers-guide/

    but it’s quiet hard to figure it out… try and come back when you succeed.
    For me I always get a bad answer with an error message lije Syntax Error, wich is very disapointing…

    … but the answer is really closed to this…

    Thread Starter LauraDon

    (@lauradon)

    Thanks for your reply, but i’ve been unable to get this working. I have posted a comment to them, so i’m hoping that they reply. I was editing php file for the plugin nav-menu-images.php, is this the file that you were editing?
    thanks

    Hé. I got it.
    Just copy the code bellow in your functions.php and you see now text and images in your nav menu.
    #### code from https://blog.milandinic.com/2012/11/23/nav-menu-images-developers-guide/ ###

    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 );

    you can edit the span tag to get what you want.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Image AND Text’ is closed to new replies.