function load_post_body() {
// POSTデータの検証
if (!isset($_POST['post_id'])) {
wp_send_json_error('POSTデータが不足しています。');
wp_die();
} $post_id = intval($_POST['post_id']); // 記事IDを取得 // 記事を取得
$post = get_post($post_id);
if ($post) {
wp_send_json_success(array(
'content' => apply_filters('the_content', $post->post_content),
));
} else {
wp_send_json_error('記事が見つかりませんでした。');
} wp_die(); // 終了
} add_action('wp_enqueue_scripts', 'enqueue_ajax_script');
function enqueue_ajax_script() {
wp_enqueue_script('ajax-script', get_template_directory_uri() . '/js/ajax-script.js', array('jquery'), null, true);
wp_localize_script('ajax-script', 'ajaxurl', admin_url('admin-ajax.php'));
}