Skip to content

Instantly share code, notes, and snippets.

@theukedge
Created September 14, 2013 21:37
Show Gist options
  • Save theukedge/6565878 to your computer and use it in GitHub Desktop.
Save theukedge/6565878 to your computer and use it in GitHub Desktop.
<?php
function diww_pre_content($content) {
$pre_content = '<p class="sponsored">This is sponsored content.</p>';
$pre_content .= $content;
return $pre_content;
}
add_filter( 'the_content', 'diww_pre_content' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment