• Id like to add another widget section right before the pre-footer.
    I managed to do it at the very top of the home page by adding some code the functions.php.

    Is it possible with this theme?

Viewing 1 replies (of 1 total)
  • Branko

    (@brankoconjic)

    Sure, you can use sinatra_before_colophon hook. You probably used a hook in the header to achieve that for the header.

    Something like this:

    function sinatra_custom_before_colophon() {
        // your content
    }
    add_action( 'sinatra_before_colophon', 'sinatra_custom_before_colophon', 1 );
Viewing 1 replies (of 1 total)

The topic ‘Adding widget section before pre footer’ is closed to new replies.