Skip to content

Instantly share code, notes, and snippets.

@vandanojan
Created October 5, 2021 02:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vandanojan/c4ca3e8e799ea2fbe7a3fe093b359191 to your computer and use it in GitHub Desktop.
Save vandanojan/c4ca3e8e799ea2fbe7a3fe093b359191 to your computer and use it in GitHub Desktop.
WordPress: How To Remove Featured Images in Single Posts
function my_post_image_html( $html, $post_id, $post_image_id ) {
if(is_single()) {
return '';
} else
return $html;
}
add_filter( 'post_thumbnail_html', 'my_post_image_html', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment