Skip to content

Instantly share code, notes, and snippets.

@theukedge
Created September 14, 2013 21:35
Show Gist options
  • Save theukedge/6565863 to your computer and use it in GitHub Desktop.
Save theukedge/6565863 to your computer and use it in GitHub Desktop.
<?php
if( get_post_meta( get_the_ID(), 'diww_sponsored', true ) == 'sponsored' ) {
if( get_post_meta( get_the_ID(), 'diww_sponsored_type', true ) == 'giveaway' ) {
$sponsored_content = '<p class="sponsored">This is a sponsored giveaway.</p>';
$sponsored_content .= $content;
return $sponsored_content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment