現在絵画を紹介するページを作成しており、ぱんくずリストに全経由ページが表示されなくて困っています。
ページ階層は、ホーム>作品ページ一覧>作品Aとなってますが、各作品ページにいくとぱんくずリストではホーム>作品Aとなり、作品ページ一覧が表示されません。
テーマはOOPS!を使用しています。以下breadcrumb.phpになります。
PHP
1<?php 2global $author, $post; 3?> 4 <ul class="p-breadcrumb c-breadcrumb u-clearfix" itemscope itemtype="http://schema.org/BreadcrumbList"> 5 <li class="p-breadcrumb__item c-breadcrumb__item c-breadcrumb__item--home" itemprop="itemListElement" itemscope 6 itemtype="http://schema.org/ListItem"> 7 <a href="<?php echo esc_url( home_url( '/' ) ); ?>" itemscope itemtype="http://schema.org/Thing" 8 itemprop="item"><span itemprop="name">HOME</span></a> 9 <meta itemprop="position" content="1" /> 10 </li> 11 <?php if ( is_author() ) : ?> 12 <li class="p-breadcrumb__item c-breadcrumb__item"><?php echo esc_html( get_the_author_meta( 'display_name', get_query_var( 'author' ) ) ); ?></li> 13 <?php elseif ( is_category() ) : ?> 14 <li class="p-breadcrumb__item c-breadcrumb__item" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> 15 <a href="<?php echo esc_url( get_post_type_archive_link( 'post' ) ); ?>" itemscope itemtype="http://schema.org/Thing" itemprop="item"> 16 <span itemprop="name"><?php _e( 'BLOG', 'tcd-w' ); ?></span> 17 </a> 18 <meta itemprop="position" content="2" /> 19 </li> 20 <li class="p-breadcrumb__item c-breadcrumb__item"><?php echo esc_html( single_cat_title( '', false ) ); ?></li> 21 <?php elseif ( is_search() ) : ?> 22 <li class="p-breadcrumb__item c-breadcrumb__item"><?php _e( 'Search result', 'tcd-w' ); ?></li> 23 <?php elseif ( is_year() ) : ?> 24 <li class="p-breadcrumb__item c-breadcrumb__item"><?php echo esc_html( get_the_time( __( 'Y', 'tcd-w' ), $post ) ); ?></li> 25 <?php elseif ( is_month() ) : ?> 26 <li class="p-breadcrumb__item c-breadcrumb__item"><?php echo esc_html( get_the_time( __( 'F, Y', 'tcd-w' ), $post ) ); ?></li> 27 <?php elseif ( is_day() ) : ?> 28 <li class="p-breadcrumb__item c-breadcrumb__item"><?php echo esc_html( get_the_time( __( 'F jS, Y', 'tcd-w' ), $post ) ); ?></li> 29 <?php elseif ( is_home() ) : ?> 30 <li class="p-breadcrumb__item c-breadcrumb__item"><?php _e( 'BLOG', 'tcd-w' ); ?></li> 31 <?php elseif ( is_post_type_archive( 'news' ) || is_singular( 'news' ) ) : ?> 32 <li class="p-breadcrumb__item c-breadcrumb__item" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> 33 <a href="<?php echo esc_url( get_post_type_archive_link( 'news' ) ); ?>" itemscope itemtype="http://schema.org/Thing" itemprop="item"> 34 <span itemprop="name"><?php _e( 'News', 'tcd-w' ); ?></span> 35 </a> 36 <meta itemprop="position" content="2" /> 37 </li> 38 <?php if ( is_singular( 'news' ) ) : ?> 39 <li class="p-breadcrumb__item c-breadcrumb__item"><?php echo strip_tags( get_the_title( $post->ID ) ); ?></li> 40 <?php endif; ?> 41 <?php elseif ( is_post_type_archive( 'review' ) || is_singular( 'review' ) ) : ?> 42 <li class="p-breadcrumb__item c-breadcrumb__item" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> 43 <a href="<?php echo esc_url( get_post_type_archive_link( 'review' ) ); ?>" itemscope itemtype="http://schema.org/Thing" itemprop="item"> 44 <span itemprop="name"><?php _e( 'Review', 'tcd-w' ); ?></span> 45 </a> 46 <meta itemprop="position" content="2" /> 47 </li> 48 <?php if ( is_singular( 'review' ) ) : ?> 49 <li class="p-breadcrumb__item c-breadcrumb__item"><?php echo strip_tags( get_the_title( $post->ID ) ); ?></li> 50 <?php endif; ?> 51 <?php elseif ( is_page() ) : ?> 52 <li class="p-breadcrumb__item c-breadcrumb__item"><?php echo strip_tags( get_the_title( $post->ID ) ); ?></li> 53 <?php elseif ( is_singular( 'post' ) ) : ?> 54 <li class="p-breadcrumb__item c-breadcrumb__item" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> 55 <a href="<?php echo esc_url( get_post_type_archive_link( 'post' ) ); ?>" itemscope itemtype="http://schema.org/Thing" itemprop="item"> 56 <span itemprop="name"><?php _e( 'BLOG', 'tcd-w' ); ?></span> 57 </a> 58 <meta itemprop="position" content="2" /> 59 </li> 60 <li class="p-breadcrumb__item c-breadcrumb__item" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> 61 <?php 62 $categories = get_the_category(); 63 foreach ( $categories as $key => $category ) : 64 if ( 0 !== $key ) { 65 echo ', '; 66 } 67 ?> 68 <a href="<?php echo esc_url( get_category_link( $category->term_id ) ); ?>" itemscope itemtype="http://schema.org/Thing" itemprop="item"> 69 <span itemprop="name"><?php echo esc_html( $category->name ); ?></span> 70 </a> 71 <?php endforeach; ?> 72 <meta itemprop="position" content="3" /> 73 </li> 74 <li class="p-breadcrumb__item c-breadcrumb__item"><?php echo strip_tags( get_the_title( $post->ID ) ); ?></li> 75 <?php elseif ( is_404() ) : ?> 76 <li class="p-breadcrumb__item c-breadcrumb__item"><?php _e( "Sorry, but you are looking for something that isn't here.", 'tcd-w' ); ?></li> 77 <?php endif; ?> 78 </ul>
あなたの回答
tips
プレビュー