Skip to content

Instantly share code, notes, and snippets.

@hayatbiralem
Created April 22, 2020 16:09
Show Gist options
  • Save hayatbiralem/b50bdb3a057029a54941d3d66671ec02 to your computer and use it in GitHub Desktop.
Save hayatbiralem/b50bdb3a057029a54941d3d66671ec02 to your computer and use it in GitHub Desktop.
WordPress - Set default post thumbnail id
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