2017-07-10 7 views
0

次のコードは親ページのない「通常の」ワードプレスページでは問題ありませんが、要求されたページに親がある場合は何も得られず、コードを取得できませんアラートボックスは、Web検索と試行錯誤の5時間後に決して来なかった)。ここjQueryはWordPressのhast親ページを取得します

JS/jQueryの:

<script> 
jQuery(document).ready(function() { 
//get the page via page slug 
    jQuery.get("thePageSlug").success(function(data){ 
    //get the content div of the found page 
    jQuery(data).find("#content").appendTo("#content"); 
    alert("finally....."); 
    }); 
}); 
</script> 
+1

これは、ここで話題になり、私たちは疑問を移行示唆ていませんよ、あなたは* [* wordpress.se]でより重点的なヘルプを見つけるかもしれません(しかし、私はほとんどのWordpress開発者がスタックオーバーフローでもかなりアクティブになるだろうと思っています)。 –

答えて

0

私はあなたに.get機能で相対パスを使用しているため、これがあると思います。絶対パスを使用して、Wrodpress Permalinkと競合しないようにしてください。

代わりにこれを試してみてください:

jQuery.get("/thePageSlug")........... 

あるいは:

jQuery.get("http://your.domain/path/to/your/thePageSlug")........... 

コード:

<script> 
    jQuery(document).ready(function() { 
     //get the page via page slug 
     jQuery.get("<?php echo site_url(); ?>/thePageSlug").success(function(data){ 
      //get the content div of the found page 
      jQuery(data).find("#content").appendTo("#content"); 
      alert("finally....."); 
     }); 
    }); 
</script> 
関連する問題