Skip to content

Instantly share code, notes, and snippets.

@ryarwood
Created October 29, 2013 17:25
Show Gist options
  • Save ryarwood/7219032 to your computer and use it in GitHub Desktop.
Save ryarwood/7219032 to your computer and use it in GitHub Desktop.
Remove links from images in Wordpress functions.php
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