Skip to content

Instantly share code, notes, and snippets.

@misfist
Forked from Santel/functions.php
Last active January 24, 2018 20:29
Show Gist options
  • Save misfist/e268e8f514482090e7dfb9d2ea656864 to your computer and use it in GitHub Desktop.
Save misfist/e268e8f514482090e7dfb9d2ea656864 to your computer and use it in GitHub Desktop.
WordPress - Remove first image from single post content
<?php
function prefix_remove_first_image( $content ) {
if ( !is_page() && !is_feed() && !is_home() ){
$content = preg_replace( "/<img[^>]+\>/i", "", $content, 1 );
}
return $content;
}
add_filter( 'the_content', 'prefix_remove_first_image' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment