Skip to content

Instantly share code, notes, and snippets.

@twoelevenjay
Created January 16, 2017 16:33
Show Gist options
  • Save twoelevenjay/13fe3002316395aebf5cd582f68f6938 to your computer and use it in GitHub Desktop.
Save twoelevenjay/13fe3002316395aebf5cd582f68f6938 to your computer and use it in GitHub Desktop.
make_ifttt_clickable.php
<?php
add_filter( 'the_content', 'make_ifttt_clickable', 1 );
function make_ifttt_clickable( $content ) {
$reg_ex = '/http:\/\/ift.tt(\/\S*)?/';
$link = '<a target="_blank" href="http://ift.tt${1}">http://ift.tt${1}</a>';
return preg_replace( $reg_ex, $link, $content );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment