ワードプレスのテーマ「Twenty Nineteen」では、カテゴリーページや、アーカイブページで、記事の本文が全て表示されます。
これを、抜粋表示に切り替える方法を紹介します。
方法は簡単
まず、ファイル「index.php」を開きます。
つぎに、この記述を探します。
きっと、すぐに見つかるでしょう。
if ( have_posts() ) {
// Load posts loop.
while ( have_posts() ) {
the_post();
get_template_part( ‘template-parts/content/content’ );
}
この記述のうち、‘template-parts/content/content’という部分を、つぎのように変えます。
if ( have_posts() ) {
// Load posts loop.
while ( have_posts() ) {
the_post();
get_template_part( ‘template-parts/content/content-excerpt’ );
}
つまり、contentをcontent-expertに変えるのです。
以上で終了です。
どうでしたか、簡単でしたね。