wordpressの投稿記事を抜粋して、トップページやカテゴリーページで表示させたい時に使える方法です。 the_excerpt wordpressのループ内で使うことができる投稿記事を抜粋してくれるwordpressの関数です。 例えば、 <?php if(have_posts()): ?> <?php while(have_posts()): the_post();?> <h2><a href="<?php the_permalink(); ?>"> <?php the_title(); ?></a></h2> <div><?php the_excerpt(); ?> <p><?php the_category(); ?></p></div> <?php endwhile; ?> <?php endif; ?> ※the_excerpt();初めからpタグに囲まれて表示されます。 ただ