모든 글에 특성 이미지 추가하기
$DOCUMENT_DIR/wp-content/themes/$THEME_NAME/functions.php
문서를 열어 다음과 같은 함수를 추가한다.
function auto_featured_image() {
global $post;
if (!has_post_thumbnail($post->ID)) {
$attached_image = get_children( "post_parent=$post->ID&post_type=attachment&post_mime_type=image&numberposts=1" );
if ($attached_image) {
foreach ($attached_image as $attachment_id => $attachment) {
set_post_thumbnail($post->ID, $attachment_id);
}
}
}
}
// 기존 등록된 글에 특성 이미지가 없는 경우, 특성 이미지를 설정할 수 있도록 임시 사용.
add_action('the_post', 'auto_featured_image');
// 새로 추가되는 글에 특성 이미지를 설정.
add_action('save_post', 'auto_featured_image');
add_action('draft_to_publish', 'auto_featured_image');
add_action('new_to_publish', 'auto_featured_image');
add_action('pending_to_publish', 'auto_featured_image');
add_action('future_to_publish', 'auto_featured_image');