Skip to content

Instantly share code, notes, and snippets.

@dattard21
Created October 3, 2016 19:45
Show Gist options
  • Save dattard21/85d3b7c52375cb64b3affffedab5cca4 to your computer and use it in GitHub Desktop.
Save dattard21/85d3b7c52375cb64b3affffedab5cca4 to your computer and use it in GitHub Desktop.
function add_attribution_backlink( $content ) {
// Process content here and add the backlink
$backlink = ‘<div class=”attribution”>This article first appeared on <a href=”http://premium.wpmudev.org/blog”>WPMU Dev Blog</a></div>’;
$content = $content . $backlink;
return $content;
}
add_filter( 'content_save_pre', ‘add_attribution_backlink’, 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment