Skip to content

Instantly share code, notes, and snippets.

@graylaurenm
Last active March 15, 2017 23:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save graylaurenm/31665c2dd5552a9fe4a0b99d6bd1ffab to your computer and use it in GitHub Desktop.
Save graylaurenm/31665c2dd5552a9fe4a0b99d6bd1ffab to your computer and use it in GitHub Desktop.
Add affiliate disclosure to top of posts
<?php // do not include this line
add_action( 'genesis_entry_content', 'oc_snippet_do_disclosure', 1 );
function oc_snippet_do_disclosure() {
if ( is_singular( 'post' ) ) {
echo '<p><strong>Disclosure: </strong>This post may contain affiliate links. I receive a small commission at no cost to you when you make a purchase using my link.</p>';
}
}
<?php if ( is_singular( 'post' ) ) {
echo '<p><strong>Disclosure: </strong>This post may contain affiliate links. I receive a small commission at no cost to you when you make a purchase using my link.</p>';
} ?>
<?php if ( is_singular( 'post' ) ) { ?>
[ssbp]
<p><strong>Disclosure: </strong>This post may contain affiliate links. I receive a small commission at no cost to you when you make a purchase using my link.</p>
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment