カテゴリーごとにアイキャッチ画像を設定するコード
次のコードを子テーマのfunctions.phpに貼り付けます。
function default_category_eyecatch() {
global $post;
$user_eyecatch = has_post_thumbnail($post->ID);
if (!$user_eyecatch) {
$preset_image = get_children( "post_parent=$post->ID&post_type=attachment&post_mime_type=image&numberposts=1" );
if ($preset_image) {
foreach ($preset_image as $attachment_id => $attachment) {
set_post_thumbnail($post->ID, $attachment);
}
}
else if ( in_category('カテゴリーID') ) {
set_post_thumbnail($post->ID, '画像ID');
}
else if ( in_category('カテゴリーID') ) {
set_post_thumbnail($post->ID, '画像ID');
}
else {
set_post_thumbnail($post->ID, '画像ID');
wp_reset_postdata();
}
}
}
add_action('the_post', 'default_category_eyecatch');