Tagged: ,

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #482670

    I would like to add a permanent new widget area – basically a full row directly above div id=”footer” – so that I can add a row of content across the site.

    Can I acheive this in the usual WP way with a function and assuming so can you let me know the appropriate hook for this (can’t seem to find a hook reference anywhere).

    Many Thanks

    #483102

    Hi M1000000,

    You can try this:

    function before_footer(){
      /*your code here*/
    }
    add_action('ava_before_footer', 'before_footer');

    Cheers!
    Rikard

    #483364

    That’s great – thanks Rikard.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Add new widget area – need hook’ is closed to new replies.