Skip to content

Instantly share code, notes, and snippets.

@theukedge
Last active June 23, 2017 22:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theukedge/6744477 to your computer and use it in GitHub Desktop.
Save theukedge/6744477 to your computer and use it in GitHub Desktop.
<?php function diww_add_post_content($content) {
if (is_single()) {
$content .= '<p><div id="newsletter-box">Please subscribe to <a title="Do More With WordPress" href="http://www.doitwithwp.com/go/newsletter">our newsletter</a></div></p>';
}
return $content;
}
add_filter ('the_content', 'diww_add_post_content', 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment