Skip to content

Instantly share code, notes, and snippets.

@sosukeinu
Created January 29, 2013 16:17
Show Gist options
  • Save sosukeinu/4665456 to your computer and use it in GitHub Desktop.
Save sosukeinu/4665456 to your computer and use it in GitHub Desktop.
WP function strip *img* from post content *if* post format is *image*
<?php
// Strip Images from Content if Post Format Image
add_filter('the_content', 'strip_images',2);
if ( has_post_format( 'image', $postID )) {
function strip_images($content){
return preg_replace('/<img[^>]+./','',$content);
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment