ADD ADS SHORTCODE in every post/page

Hi,
how can i add a shortcode to put ADS banner in bottom on every post or page ?

Hi There,

Because this requires a template change, I’d advise that you setup a child theme. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in Customization Best Practices.

After that add this code at your child theme’s functions.php:

function x_add_banner_to_post_page() { if(is_singular( array('page', 'post') )){ echo do_shortcode('[your-ad-shortcode]'); } } add_action('x_before_the_content_end', 'x_add_banner_to_post_page');

Hope this helps.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.