Tagged: hook, widget area
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
Hi M1000000,
You can try this:
function before_footer(){
/*your code here*/
}
add_action('ava_before_footer', 'before_footer');
Cheers!
Rikard
That’s great – thanks Rikard.