Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active March 30, 2018 08:21
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 braddalton/af52dab0ec0aa6de93fb495899c1db25 to your computer and use it in GitHub Desktop.
Save braddalton/af52dab0ec0aa6de93fb495899c1db25 to your computer and use it in GitHub Desktop.
Add Affiliate Disclosure After Single Post Entry Titles in Genesis https://wp.me/p1lTu0-hql
add_action( 'genesis_entry_header', 'affiliate_disclosure', 12 );
function affiliate_disclosure() {
if ( is_singular( 'post' ) ) :
echo 'Hello World';
endif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment