Created
October 22, 2017 19:55
-
-
Save amanhstu/375c8c92aa663bdf4a946cb0860e23a7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php function wpse55748_filter_post_thumbnail_html( $html ) { | |
// If there is no post thumbnail, | |
// Return a default image | |
if ( '' == $html ) { | |
return '<img src="' . get_template_directory_uri() . '/images/default-featured-image.png" />'; | |
} | |
// Else, return the post thumbnail | |
return $html; | |
} | |
add_filter( 'post_thumbnail_html', 'wpse55748_filter_post_thumbnail_html' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Will set a default featured image for posts if there is not set any featured image