[Resolved] Widget in slide menu after menu

Home Forums Support [Resolved] Widget in slide menu after menu

Home Forums Support Widget in slide menu after menu

  • This topic has 2 replies, 2 voices, and was last updated 7 years ago by Soma.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #307864
    Soma

    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

    #307886
    Jamal

    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

    #307950
    Soma

    Sweet! 😉
    thanks.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.