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?
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