CG
(@du-bist-der-lenz)
フロントページを選んでいる場合は、「page_front-page.php」を読み込んでいませんか。
コメントありがとうございます。
index.phpには 「page_front-page.php」 の記述はありませんでしたが、
テーマのカスタマイズで
「テーマは固定フロントページをサポートしています。」
とありました。
(index.php)
<?php get_header(); ?>
<?php do_action(‘sydney_before_content’); ?>
<div id=”primary” class=”content-area col-md-9″>
<main id=”main” class=”post-wrap” role=”main”>
<?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?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( ‘content’, get_post_format() );
?>
<?php endwhile; ?>
<?php the_posts_navigation(); ?>
<?php else : ?>
<?php get_template_part( ‘content’, ‘none’ ); ?>
<?php endif; ?>–>
</main><!– #main –>
</div><!– #primary –>
<?php do_action(‘sydney_after_content’); ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
get_template_part( ‘content
これでcontent.phpを読み込んでいるのではないでしょうか。
インデックスのどの辺りに追記され部分が表示されないのでしょうか。
<?php else : ?>
から下はコンテンツのない場合、それより上はある場合に分かれているので
それぞれの場合で表示の記載または記事の有無の判断外に記載の必要があるかもしれません。
コメントありがとうございます。
index.phpの
get_template_part( ‘content
の部分を以前修正した時は変化がなかったんですが
home.phpがあり、ここにも同じ記述があったのを見落としていました。。
home.phpを削除し、content.phpに記述していた内容をindex.phpからトップページ表示することができました。
サポートしていただき、ありがとうございました!
CG
(@du-bist-der-lenz)
上位になるテンプレートページがないときに、index.php が使用されます。
https://wpdocs.osdn.jp/テンプレート階層
ありがとうございます!
home.phpがないものと思って相談してしまっていました。。