• Resolved carlosalbertott

    (@carlosalbertott)


    Hi all!
    I am trying to add some content before the footer; how can I achieve so with this:
    <?php do_action(‘leeway_before_footer’);?>
    Any help will be greately appreciated!

Viewing 2 replies - 1 through 2 (of 2 total)
  • AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello carlosalbertott,

    Put below code into your current theme’s functions.php file.

    add_action('leeway_before_footer', 'my_footer_text');
    function my_footer_text() {
    echo "<div><h3>Hello World</h3></div>";
    }

    Hope this will helps you.

    Thread Starter carlosalbertott

    (@carlosalbertott)

    Thanks AddWeb! It actually worked as expected!
    Cheers!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Add new content before footer’ is closed to new replies.