トップページには以下のようなコンテンツが存在します。
PHP
1<?php 2 $categories = get_the_category(); 3 foreach( $categories as $category ){// 親カテゴリーIDを取得 4 if( !$parent ){ 5 echo '<div class="front_column_button_wrap"> 6 <a href="' . get_category_link( 11 ) . '">' 7 .'このカテゴリーのすべての記事を見る</a> 8 </div>'; 9 break; 10 } 11 } 12?>
上記コードは記事一覧(search.php)へのリンクを生成し、親カテゴリーIDが11に属する子カテゴリーのすべての記事を記事一覧(search.php)に表示させます。
という前提があり、
■実現したいこと
親カテゴリーIDが11に属する子カテゴリーのすべての記事を記事一覧(search.php)に表示させた場合のみ、記事一覧(search.php)に存在するサイドバー内容を変更したいのですが、そんなことは可能でしょうか?
以下、記事一覧(search.php)で読み込んでいるsidebar.phpです
hestiaというテーマを使用していますが、このサイドバーの内容を変えたいだけなので、ここになにかしらのif文を入れるのかな。。という、つたない予測しかできていません...
php
1<?php 2/** 3 * The Sidebar containing the main widget areas. 4 * 5 * @package Hestia 6 * @since Hestia 1.0.0 7 * @modified 1.1.30 8 */ 9 10$sidebar_class = apply_filters( 'hestia_filter_blog_sidebar_classes', 'col-md-3 blog-sidebar-wrapper' ); 11if ( is_active_sidebar( 'sidebar-1' ) ) { ?> 12 <div class="<?php echo esc_attr( $sidebar_class ); ?> "> 13 <aside id="secondary" class="blog-sidebar" role="complementary"> 14 サイドバーの内容 15 </aside><!-- .sidebar .widget-area --> 16 </div> 17 <?php 18} elseif ( is_customize_preview() ) { 19 hestia_sidebar_placeholder( 'col-md-offset-1', 'sidebar-1' ); 20} ?>
(追記)
以下、サイドバーの読み込み部分です。
サイドバーは右カラムにあるので下の方のrightと書かれているコードあたりで読み込んでいるものと思われます。
php
1<div class="container"> 2 <div class="row"> 3 <?php 4 do_action( 'hestia_before_search_content' ); 5 6 if ( $hestia_blog_sidebar_layout === 'sidebar-left' ) { 7 get_sidebar(); 8 } 9 ?> 10 <div class="<?php echo esc_attr( $wrap_class ); ?>"> 11 <?php 12 if ( have_posts() ) : 13 while ( have_posts() ) : 14 the_post(); 15 get_template_part( 'template-parts/content' ); 16 endwhile; 17 the_posts_pagination(); 18 else : 19 get_template_part( 'template-parts/content', 'none' ); 20 endif; 21 ?> 22 </div> 23 <?php 24 if ( $hestia_blog_sidebar_layout === 'sidebar-right' ) { 25 get_sidebar(); 26 } 27 ?> 28 </div> 29 </div>
以上になります。
わかりづらい内容で大変申し訳ございませんが、もしおわかりになられる方がいらっしゃいましたらご教示いただけると大変助かります。
よろしくお願いいたします。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/04 23:41