前提・実現したいこと
ワードプレスで、固定ページのカスタムテンプレートを作ったのですが、エラー表示が出てしまいます。
エラーの解消をしたいです。
このページです。
発生している問題・エラーメッセージ
Notice: Object of class WP_Post could not be converted to int in /home/le-blancs/www/wp/wp-includes/post-template.php on line 319 Notice: Object of class WP_Post could not be converted to int in /home/le-blancs/www/wp/wp-includes/post-template.php on line 325
該当のソースコード
該当のテンプレートファイルの内容は以下のようになっています。
php
1<?php 2/* 3Template Name: 自由作成固定ページテンプレート 4*/ 5?> 6 7 8<?php get_header(); ?> 9 10 11<main> 12 <?php 13 if(have_posts()): while(have_posts()): the_post();?> 14 <section id="page-wrapper"> 15 <div class="inner"> 16 <div class="title-h2-wrapper"> 17 <h2 class="title-h2"> 18 <strong> 19 <?php 20 $page = get_post( get_the_ID() ); 21 $slug = $page->post_name; 22 ?> 23 <?php echo $slug; ?> 24 </strong> 25 <span><?php the_title(); ?></span> 26 </h2> 27 </div> 28 <div class="pnkz"> 29 <?php 30 if ( function_exists( 'bcn_display' ) ) { 31 bcn_display(); 32 } 33 ?> 34 </div> 35 <section class="content"> 36 <h3 class="title-h3"><span><?php the_title(); ?></span></h3> 37 <div class="free-temp-wrapper"> 38 <?php the_content(); ?> 39 </div> 40 </section> 41 </div> 42 </section> 43 <?php endwhile; endif; ?> 44</main> 45 46<?php get_footer(); ?>
試したこと
どうやら、the_contentを取り除くとエラー表示が消えるようです。
the_contentを削除すると、エラー表示が消え、その他の部分は問題なく表示されます。
ネットでいろいろ調べてみたのですが、このエラーに関する情報があまりなく、よくわかりません。
具体的に、エラーの文章にあるpost-template.phpの該当箇所を見てみました。該当の318行目~325行目は以下のようになっています。
php
1 // If the requested page doesn't exist. 2 if ( $elements['page'] > count( $elements['pages'] ) ) { ←319行目 3 // Give them the highest numbered page that DOES exist. 4 $elements['page'] = count( $elements['pages'] ); 5 } 6 7 $page_no = $elements['page']; 8 $content = $elements['pages'][ $page_no - 1 ]; ←325行目
phpのことはよくわからないので、何を言っているのかわかりません。
補足情報(FW/ツールのバージョンなど)
どなたかどうしたらエラーを解消できるかわかる方いらっしゃったら教えてください。よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/04 02:20