Created
April 22, 2020 16:09
-
-
Save hayatbiralem/b50bdb3a057029a54941d3d66671ec02 to your computer and use it in GitHub Desktop.
WordPress - Set default post thumbnail id
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
add_filter('get_post_metadata', 'my_default_thumbnail_id', 100, 4); | |
function my_default_thumbnail_id($check, $post_id, $key, $single) | |
{ | |
if($key == '_thumbnail_id') { | |
remove_filter('get_post_metadata', 'my_default_thumbnail_id', 100); | |
if(!has_post_thumbnail($post_id) && function_exists('get_field')) { | |
$check = get_field('placeholder_image', 'option'); | |
} | |
add_filter('get_post_metadata', 'my_default_thumbnail_id', 100, 4); | |
if(!empty($check)) { | |
return $check; | |
} | |
} | |
return $check; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment