Created
October 29, 2013 17:25
-
-
Save ryarwood/7219032 to your computer and use it in GitHub Desktop.
Remove links from images in Wordpress functions.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'the_content', 'attachment_image_link_remove_filter' ); | |
function attachment_image_link_remove_filter( $content ) { | |
$content = | |
preg_replace( | |
array('{<a(.*?)(wp-att|wp-content\/uploads)[^>]*><img}', | |
'{ wp-image-[0-9]*" /></a>}'), | |
array('<img','" />'), | |
$content | |
); | |
return $content; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment