wordpress ブログ ページの div 要素に PHP を挿入しようとしています。静的コンテンツで動作するようになりましたが、スクリプトが PHP をロードしません。私の動的/PHPコード:
<?php // data.php
$args = array( 'numberposts' => 1, 'category' => 4, 'orderby' => 'rand' );
$postslist = get_posts( $args );
// Get posts associated with category 4
foreach ($postslist as $post) : setup_postdata($post); ?>
<h2><?php the_title(); ?></h2>
<?php
global $more;
$more=0;
the_content('read more');
?>
<?php endforeach; ?>
そして私のajax呼び出し:
(function($) {
$("div#content-here").click(function(){
var url = '/wp-content/themes/elevenchild/data.php';
$("div#content-here").load(url);
});
})( jQuery );
当然、私の見解は
<div id="content-here"></div>
エレメント。
私のjqueryライブラリは正常にロードされています。シンプルな HTML を挿入できるので、メソッドは機能しますが、PHP では機能しませんか? コンソールでは、500 内部サーバー エラーが報告されます。
ヘルプ