Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #318146

    How I can create a simple advertising space to put in multiple pages at once? I need these banners outside the Side bars. Can I create with Slides?

    #318651

    Hi!

    Where do you want them to be exactly? there is a hook you can use to put content before the container element, try putting the following code in the theme / child theme functions.php:

    function put_stuff_before_main_content() {
    	echo "banner code";
    }
    
    add_action('ava_after_main_container', 'put_stuff_before_main_content');

    Regards,
    Josue

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