Skip to:
Content
Pages
Categories
Search
Top
Bottom

how to insert shortcode into Nav menu


  • admin25
    Participant

    @admin25

    Hello, I have made a menu item with the following code.

    The menu item shows up but the shortcode output is not there.

    Is there something I can add or a different method that will do this.

    //--Nav Menu
    function add_profile_link_to_nav(){
    if ( is_user_logged_in() ) { ?>
    
    <ul>
    <li> <a href="http://example.com/members/">All  Members</a>
    <ul class="sub-menu">
    <li class="menu-item"> </li>
    </ul>
    </li>
    </ul>    <!--end menu-->
    <?php }
    }
    add_action( "bp_menu","add_profile_link_to_nav" );
    
    function custom_execute_shortcode() {
    $myfunction= '[my shortcode"]';
    $myfunction_parsed = do_shortcode($myfunction);
    return $myfunction_parsed;
    }

    I have also added
    add_filter('bp_menu', 'do_shortcode', 7);
    in hopes this might help.

    Thanks for any help or insight.

  • The topic ‘how to insert shortcode into Nav menu’ is closed to new replies.
Skip to toolbar