Viewing 4 replies - 1 through 4 (of 4 total)
  • Angelo

    (@klish)

    Paste this in your funtion php

    // MOSTRAR AVATAR EN WP
    function logged_in_user_avatar_shortcode() {
    if ( is_user_logged_in() ) {
    global $current_user;
    get_currentuserinfo();
    return get_avatar( $current_user->ID );
    }
    }
    add_shortcode(‘logged-in-user-avatar’, ‘logged_in_user_avatar_shortcode’);

    Angelo

    (@klish)

    and then use this shorcode

    [logged-in-user-avatar]

    Thread Starter n1njab0y

    (@n1njab0y)

    Great! Works fine! Thanx a lot!

    Plugin Author Ultimate Member

    (@ultimatemember)

    Thanks for helping 🙂

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Avatar In Menu’ is closed to new replies.