//миниатюра записи по умолчанию
add_action('save_post', 'my_template_thumbnail');
function my_template_thumbnail($post_id) {
$post_thumbnail = get_post_meta($post_id, $key = '_thumbnail_id', $single = true);
if ( !wp_is_post_revision($post_id) ) :
if ( empty($post_thumbnail) ) {
update_post_meta($post_id, $meta_key = '_thumbnail_id', $meta_value = '18');
}
endif;
}