これは私のfunction.phpの中身です
<?php
if ( function_exists( 'add_theme_support' )){
add_theme_support( 'post-thumbnails' );
}
if ( function_exists( 'add_image_size' )){
add_image_size('featured', 400, 340, true);
add_image_size('post-thumb', 100, 140, true);
}
?>
これは私のindex.phpの中身です
<?php the_post_thumbnail('post-thumb'); ?>
- アイキャッチ画像が
Screen Options
有効になっています。 - アイキャッチ画像メタボックスの表示
Edit Post
- アイキャッチ画像を設定しました。
問題は、サムネイルが index.php(ホームページ) に表示されないことです。何か不足していますか?よろしくお願いします。