WordPress 条件分岐間違っている箇所は?
WordPressで最新記事を判別して大きく見せるなど、表示を変更する条件分岐のカスタマイズ方法を下記のURLを参考に改造しました。
https://whitebear-seo.com/wordpress-newpost-conditional-branch/
結果はエラーが出ました。
どこが間違っているか教えていただけないでしょうか?
宜しくお願いします。
<?php
if ( have_posts() ) :
if ( is_home() && ! is_front_page() ) : ?>
<?php
endif;
/* 改造前 */
while ( have_posts() ) : the_post();
/* 改造前 */
get_template_part( 'template-parts/content', get_post_format() );
/* ページネーション */
endwhile;
echo '<div class="text-center paging-navs">';
the_posts_pagination();
echo '</div>';
else :
get_template_part( 'template-parts/content', 'none' );
/* ページネーション END */
endif; ?>
/* 改造後 */の部分だけ改造しました。
↓
<?php
if ( have_posts() ) :
if ( is_home() && ! is_front_page() ) : ?>
<?php
endif;
/* 改造後 */
while ( have_posts() ) : the_post(); $counter++;
if ($counter <= 1): ?
get_template_part( 'template-parts/content2', get_post_format() );
else:
/* 改造後 */
get_template_part( 'template-parts/content', get_post_format() );
/* ページネーション */
endwhile;
echo '<div class="text-center paging-navs">';
the_posts_pagination();
echo '</div>';
else :
get_template_part( 'template-parts/content', 'none' );
/* ページネーション END */
endif; ?>
お礼
ご回答ありがとうございました。 すみません。私はSEではないのでご回答いただいた方のソースが 素人の書き方なのかどうかは存じ上げません・・・。 corokorocoroさんの書き方も教えていただければ幸いです。 よろしくお願いします。