Skip to content

Instantly share code, notes, and snippets.

@miklb
Created February 2, 2017 22:01
Show Gist options
  • Save miklb/c4954f39b7e7fb1766302132613228f2 to your computer and use it in GitHub Desktop.
Save miklb/c4954f39b7e7fb1766302132613228f2 to your computer and use it in GitHub Desktop.
function twithandle( $content ) {
$twithandle = preg_replace( '/([^a-zA-Z0-9-_&])@([0-9a-zA-Z_]+)/','$1<a href="https://twitter.com/$2" rel="nofollow">@$2</a>',$content );
return $twithandle;
}
add_filter( 'the_content', 'twithandle' );
add_filter( 'comment_text', 'twithandle' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment