Archived topic
Widget in slide menu after menu
2 replies · Started by Soma on April 19, 2017
Viewing posts 1–3 of 3
Hi!
I`ve taking a look in the forum with no luck,
Im using the code from this post to add a widget to the slide menu,
but it adds it before the menu. It its possible to add it after the menu by using another hook or something like that?
Thanks
There is the generate_after_slideout_navigation hook that you can use so the second code snippet on that page you linked to will be
add_action( 'generate_after_slideout_navigation','tu_add_slideout_widget_area' );
function tu_add_slideout_widget_area() {
dynamic_sidebar( 'my-slide-out-nav' );
}
Hope this is helpful
Sweet! ;)
thanks.
...
This archived topic is closed to new replies.