Skip to content

Instantly share code, notes, and snippets.

@Santel
Created January 16, 2014 08:29
Show Gist options
  • Save Santel/8451554 to your computer and use it in GitHub Desktop.
Save Santel/8451554 to your computer and use it in GitHub Desktop.
Remove first image in the posts that published before 2014
//* Remove first image from posts that published before 2014
function remove_first_image ($content) {
if (!is_page() && !is_feed() && !is_home()&& get_the_date('Y')<2014) {
$content = preg_replace("/<img[^>]+\>/i", "", $content, 1);
} return $content;
}
add_filter('the_content', 'remove_first_image');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment