Last active
March 15, 2017 23:19
-
-
Save graylaurenm/31665c2dd5552a9fe4a0b99d6bd1ffab to your computer and use it in GitHub Desktop.
Add affiliate disclosure to top of posts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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>'; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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>'; | |
} ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment