Hi Tom, i have used the following PHP to add shortcode content to the nav. It works great as long as a menu has been assigned to the nav or else nothing shows.
add_action( 'generate_inside_navigation','db_add_shortcode' );
function db_add_shortcode() {
echo do_shortcode('[my shortcode content]');
}
Is it possible to hook this when no nav is assigned (humour me)?
I dont want to use another hook as i want to keep the sticky nav function.
thanks
David