Skip to content

Instantly share code, notes, and snippets.

View chrclmnky's full-sized avatar

CHRCLMNKY chrclmnky

View GitHub Profile
@chrclmnky
chrclmnky / gist:b9c5113f00dbbc098af7f57cced7693e
Created June 23, 2017 22:48
Copied from https://gist.github.com/theukedge - Add anything at the end of a Wordpress post.
<?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);