Skip to content

Instantly share code, notes, and snippets.

View chrclmnky's full-sized avatar

CHRCLMNKY chrclmnky

View GitHub Profile
@kleo
kleo / backspace.md
Last active July 28, 2023 17:59
backspace

Project moved due to excessive amount of unicorns. Repo https://git.io/adminpldt

Our community of amazing people. Managed by a cat. Backspace https://discord.gg/C43625u

Gist here will not be updated anymore Discussion here on Gist is still allowed but I strongly recommend going over to the repository or Discord chat


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