前提・実現したいこと
Wordpressで構築されたあるデータ (terms = page1)を取得するコードがあります。
現状、"'terms' => 'page1'"のようにpage1のデータを取得して、XXX.jp/case/page1ページに表示しています。
このデータ取得コードを、下層ページurlに沿ったデータが取得できるように(例えばXXX.jp/case/page2ではpage2のデータ)変更したいと考えています。
どのように変更をすればよいでしょうか。
該当のソースコード
functions.php
php
1add_action('wp_ajax_get_case', 'dk_get_case'); 2add_action('wp_ajax_nopriv_get_case', 'dk_get_case'); 3function dk_get_case() { 4 $headers['Access-Control-Allow-Origin'] = '*'; 5 $return = ['status' => false, 'data' => [], 'message' => '']; 6 7 $case_clinics = [1,2,3,4]; 8 foreach($case_clinics as $key => $case_clinic){ 9 $dk_posts = get_posts( 10 array( 11 'showposts' => -1, 12 'post_type' => 'case', 13 'tax_query' => array( 14 'relation' => 'AND', 15 array( 16 'taxonomy' => 'case_clinic', 17 'field' => 'term_id', 18 'terms' => $case_clinic 19 ), 20 array( 21 'taxonomy' => 'case_category', 22 'field' => 'slug', 23 'terms' => 'page1' 24 ) 25 ) 26 ) 27 ); 28 if(count($dk_posts) > 0){ 29 foreach($dk_posts as $dk_post){ 30 $attachment_id = CFS()->get('case_image', $dk_post->ID); 31 $case_name1 = CFS()->get('case_name1', $dk_post->ID); 32 $case_clinic = CFS()->get('case_clinic', $dk_post->ID); 33 $case_name = CFS()->get('case_name', $dk_post->ID); 34 $case_price = CFS()->get('case_price', $dk_post->ID); 35 $case_risk = CFS()->get('case_risk', $dk_post->ID); 36 $return['data'][$key][] = [ 37 'id' => $dk_post->ID, 38 'case_clinic'=>$case_clinic, 39 'thumb' => wp_get_attachment_image($attachment_id, 'case_clinic'), 40 'popup' => wp_get_attachment_image($attachment_id, 'full'), 41 'case_name1'=>$case_name1, 42 'case_clinic'=>$case_clinic, 43 'case_name'=>$case_name, 44 'case_price'=>$case_price, 45 'case_risk'=>$case_risk, 46 ]; 47 } 48 }else{ 49 $return['data'][$key][] = []; 50 } 51 } 52 $return['status'] = true;
taxonomy-case_category-page1.php
php
1 <div class="col case-right"> 2 <h3 style="font-family:'Futura PT'; font-weight:600">Kusano Taro Clinic</h3> 3 <h4 style="font-weight:600">Clinic</h4> 4 //data表示位置 5 <div class="case-img" data-slider-3></div> 6 <div class="popup"></div> 7 </div>
footer.php
php
1 2 jQuery(document).ready(function () { 3 $('.list-cases ul li .case-img').empty(); 4 5 $.ajax({ 6 url: 'https://charme-beauty.jp/staging/wp-admin/admin-ajax.php?action=get_case', 7 type: 'get', 8 dataType: 'json', 9 success: function (res) { 10 if (res.status == true) { 11 var html_case = '<a class="case-content" href="#" data-src="#pop-[id]" data-fancybox="group">[image]<p class="text-center">[case_name]</p></a>'; 12 var html_popup = '<div id="pop-[id]" class="popup_box">'; 13 html_popup += '<div class="popup_box_inner">'; 14 html_popup += '<div class="popup_box_l">'; 15 html_popup += '[image]'; 16 html_popup += '</div>'; 17 html_popup += '<div class="popup_box_r">'; 18 html_popup += '<p style="color: #937F65;font-family: \'Futura Midium\';font-size: 22px;margin-bottom: -5px !important;font-weight: 600;">[case_name1]</p>'; 19 html_popup += '<p style="color: #937f65;font-weight: 600;margin-bottom: -5px !important;">[case_clinic]</p>'; 20 html_popup += '<h3 style="margin-top: 0px;margin-bottom: 30px;"></h3>'; 21 html_popup += '<div>'; 22 html_popup += '<dl><dt style="font-size:24px; color: #000; letter-spacing: 5px;">[case_name]</dt></dl>'; 23 html_popup += '<dl><dt style="font-size: 16px;">料金</dt><dd style="font-family: \'Futura Midium\'; font-weight: 600">[case_price]</dd></dl>'; 24 html_popup += '<dl><dt style="font-size: 16px;">リスク・副作用</dt><dd style="font-weight: 600">[case_risk]</dd></dl>'; 25 html_popup += '</div>'; 26 html_popup += '</div>'; 27 html_popup += '</div>'; 28 html_popup += '</div>'; 29 30 if (res.data.length > 0) { 31 $.each(res.data, function (x, y) { 32 $.each(y, function (a, b) { 33 if (b.id) { 34 var html = html_case; 35 html = html.replace('[id]', b.id); 36 html = html.replace('[image]', b.thumb); 37 html = html.replace('[case_name]', b.case_name); 38 $('.list-cases ul li:eq(' + (x) + ') .case-img').append(html); 39 40 var popup = html_popup; 41 popup = popup.replace('[id]', b.id); 42 popup = popup.replace('[image]', b.popup); 43 popup = popup.replace('[case_name1]', b.case_name1); 44 popup = popup.replace('[case_clinic]', b.case_clinic); 45 popup = popup.replace('[case_name]', b.case_name); 46 popup = popup.replace('[case_price]', b.case_price); 47 popup = popup.replace('[case_risk]', b.case_risk); 48 $('.list-cases ul li:eq(' + (x) + ') .case-right .popup').append(popup); 49 } 50 }); 51 }); 52 53 $('[data-fancybox]').fancybox({}); 54 55 $('[data-slider-3]').slick({ 56 infinite: true, 57 slidesToShow: 3, 58 slidesToScroll: 1 59 }); 60 } 61 } 62 } 63 }); 64 $(function () { 65 $('.sec-case-detail li div').matchHeight(); 66 $('.sec-case-detail li span').matchHeight(); 67 $('.sec-case-detail li h3').matchHeight(); 68 }); 69 });
###試したコード1
jsでurlを取得しようとしています。しかし、var_dumpの結果はNULLです。
footer.php
php
1 <script> 2 jQuery(document).ready(function () { 3var url = window.location.href; 4$.ajax({ 5 type: "POST", 6 url: "https://example.com/case/page1", 7 data: {"url": url}, 8 error: function (XMLHttpRequest, textStatus, errorThrown) { 9 console.log("ajax通信に失敗しました"); 10 console.log("XMLHttpRequest : " + XMLHttpRequest.status); 11 console.log("textStatus : " + textStatus); 12 console.log("errorThrown : " + errorThrown.message); 13 }, 14 success: function (response) { 15 console.log("ajax通信に成功しました"); 16 console.log(url_category); 17 } 18}); 19 });
taxonomy-case_category-page1.php
php
1<?php var_dump($_POST['url_category']); ?>
###試したコード2
下記コードの結果、
footer.php
php
1jQuery(document).ready(function () { 2 var url_category = window.location.href; 3 var ajaxUrl = window.location.protocol + '//' + window.location.host + '/staging/wp-content/themes/charme-beauty/functions.php'; 4 $.ajax({ 5 url: ajaxUrl, 6 type: "POST", 7 data: { "url_category": url_category }, 8 error: function (XMLHttpRequest, textStatus, errorThrown) { 9 console.log("ajax通信に失敗しました"); 10 console.log("XMLHttpRequest : " + XMLHttpRequest.status); 11 console.log("textStatus : " + textStatus); 12 console.log("errorThrown : " + errorThrown.message); 13 }, 14 success: function (response) { 15 console.log("ajax通信に成功しました"); 16 console.log(url_category); 17 } 18 }); 19});
functions.php
php
1 $url = $_POST['url_category'];
補足情報(FW/ツールのバージョンなど)
Wordpress 5.4.4
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/10/08 08:33
2021/10/08 12:52
2021/10/15 05:48 編集
2021/10/23 05:12 編集
2021/10/23 04:46
2021/10/23 05:14
2021/10/24 04:32
2021/10/24 04:37
2021/10/24 04:43 編集
2021/10/24 04:50
2021/10/24 08:51
2021/10/24 08:56
2021/10/24 13:39
2021/10/26 01:04