トップページの最新記事の一覧表示のカスタマイズ


まずは、index.phpをテーマの中から探します

つぎに
こんなwhile文で囲まれているところを探します

			<?php while ( have_posts() ) : the_post(); ?>

				<?php
					/* Include the Post-Format-specific template for the content.
					 * If you want to override this in a child theme, then include a file
					 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
					 */
					get_template_part( 'template-parts/content', get_post_format() );
					$i++;
				?>

			<?php endwhile; ?>

テンプレートを呼び出しの所を見て、表示のテンプレートを探します。

テーマのところにtemplate-parts/content.php がありました

そのファイルをカスタマイズするとOKです。

	<?php if ( 'post' == get_post_type() ) : ?>
							<div class="entry-meta">
								<?php theia_lite_posted_on(); ?>
							</div><!-- .entry-meta -->
							<?php endif; ?>
						</header><!-- .entry-header -->
						カテゴリー: <?php the_category(' '); ?>
						<div class="entry-summary">
							<?php the_excerpt(); ?>
						</div><!-- .entry-summary -->

カテゴリーの表示がなかったので、上のように追加しました。