• I’m trying to find a plugin that will activate my in-content & leaderboard ads by allowing me to add code to the <body> without actually messing with the files. Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Shea Bunge

    (@bungeshea)

    Hey,

    My apologies for taking so long to respond to this.

    It’s definitely possible, but very dependant on which theme you are using. WordPress only provides a handful of standard hooks that you can use with any theme, like wp_head and wp_footer, other ones depend on what the theme author chooses.

    If you let me know which theme you are using, I can take a look, otherwise you should look in header.php and see if you can see any do_action lines, which will provide the mechanism for adding code in at that position.

    add_filter( 'the_content', 'change_the_content',10);
    That code adds content before the main content area. That doesn’t add content immediately after the BODY tag.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can I use this plugin to paste AD code into the body code?’ is closed to new replies.