抜粋があるかどうかの条件分岐
<?php if ( has_excerpt() ): ?> <div class="entry-summary"> <?php the_excerpt(); ?> </div> <?php endif; ?>
抜粋があれば抜粋をする記入例
has_exoerpt()
が抜粋での条件判定
has_exoerpt(‘ID’)
で特定の記事にたいしての抜粋がある場合
<?php if ( has_excerpt() ): ?> <div class="entry-summary"> <?php the_excerpt(); ?> </div> <?php endif; ?>
抜粋があれば抜粋をする記入例
has_exoerpt()
が抜粋での条件判定
has_exoerpt(‘ID’)
で特定の記事にたいしての抜粋がある場合