前提・実現したいこと
Wordpressで構築されたあるデータ (terms = page1)を取得するコードがあります。
現状、"'terms' => 'page1'"のようにpage1のデータを取得して、XXX.jp/case/page1ページに表示しています。
このデータ取得コードを、categoryページごとにif分岐させたいと考えています。
しかし、if分岐を書いてみましたが、if 文内のコードが動かなくなります。
どのように変更をすればよいでしょうか。
該当のソースコード
page1への遷移
php
1 <?php 2 $terms = get_terms('case_category'); 3 if (!empty($terms) && !is_wp_error($terms)) { 4 echo '<ul class="casies">'; 5 foreach ($terms as $term) { 6 $img = get_field('case_category-image', 'case_category_' . $term->term_id); 7 $link = str_replace('/case_category/', '/case/', get_term_link($term->term_id)); 8 ?> 9 <li> 10 <a href="<?php echo $link; ?>"> 11 <img src="<?php echo $img; ?>" alt="<?php echo $term->name; ?>" /> 12 </a> 13 </li> 14 <?php 15 } 16 echo "</ul>"; 17 } 18 ?>
functions.php if文以外は正常に動きます
php
1if (in_category('page1')){ 2 3function dk_get_case() { 4 $headers['Access-Control-Allow-Origin'] = '*'; 5 $return = ['status' => false, 'data' => [], 'message' => '']; 6 7 $case_clinics = [19,20,24,32,22,12,29,44,14,47]; 8 9 foreach($case_clinics as $key => $case_clinic){ 10 11 $dk_posts = get_posts( 12 array( 13 'showposts' => -1, 14 'post_type' => 'case', 15 'tax_query' => array( 16 'relation' => 'AND', 17 array( 18 'taxonomy' => 'case_clinic', 19 'field' => 'term_id', 20 'terms' => $case_clinic 21 ), 22 array( 23 'taxonomy' => 'case_category', 24 'field' => 'slug', 25 'terms' => 'page1' 26 ) 27 ) 28 ) 29 ); 30 if(count($dk_posts) > 0){ 31 foreach($dk_posts as $dk_post){ 32 $attachment_id = CFS()->get('case_image', $dk_post->ID); 33 $case_name1 = CFS()->get('case_name1', $dk_post->ID); 34 $case_clinic = CFS()->get('case_clinic', $dk_post->ID); 35 $case_name = CFS()->get('case_name', $dk_post->ID); 36 $case_price = CFS()->get('case_price', $dk_post->ID); 37 $case_risk = CFS()->get('case_risk', $dk_post->ID); 38 $return['data'][$key][] = [ 39 'id' => $dk_post->ID, 40 'case_clinic'=>$case_clinic, 41 'thumb' => wp_get_attachment_image($attachment_id, 'case_clinic'), 42 'popup' => wp_get_attachment_image($attachment_id, 'full'), 43 'case_name1'=>$case_name1, 44 'case_clinic'=>$case_clinic, 45 'case_name'=>$case_name, 46 'case_price'=>$case_price, 47 'case_risk'=>$case_risk, 48 ]; 49 } 50 }else{ 51 $return['data'][$key][] = []; 52 } 53 } 54 $return['status'] = true; 55// $last = count($return['data']) - 1; 56// $return['data'][$last][] = $return['data'][$last][0]; 57 // print_r($return['data']);die(); 58 echo json_encode($return); 59 die; 60} 61}
補足情報(FW/ツールのバージョンなど)
wordpress 5.4.4
あなたの回答
tips
プレビュー