Ah, I figured out I can use this:
<?php echo do_shortcode("[buddy_notification_bell]"); ?>
Unfortunately my menu looks something like this and I’m not sure how to add that shortcode as the last “li”.. Any idea?
<!-- Navigation -->
<?php wp_nav_menu( array(
'theme_location' => 'header',
'depth' => 3,
'container' => 'div',
'container_class' => 'navbar-collapse collapse',
'menu_class' => 'nav navbar-nav navbar-right menu-header',
'fallback_cb' => 'wp_bootstrap_navwalker::fallback',
'walker' => new wp_bootstrap_navwalker()
)
);
?>
<!-- /Navigation -->
-
This reply was modified 6 years, 4 months ago by dbazhinov.