更改打印$postID;回显$postID;
在函数中输入以下代码。php(在主题文件夹中)
添加\\u操作(“wp\\u ajax\\u example\\u ajax\\u request”,“example\\u ajax\\u request”);函数示例\\u ajax\\u request(){
if(isset($\\u request)){$postID=$\\u request[\'postID];echo$postID;}wp\\u die();}wp\\u die();}
3。出于测试目的,您需要启用日志功能,将下面的代码放入您的wp配置中。根文件夹中的php
define( \'WP_DEBUG\', true );
// Enable Debug logging to the /wp-content/debug.log file
define( \'WP_DEBUG_LOG\', true );
define( \'WP_DEBUG_DISPLAY\', false );
@ini_set( \'display_errors\', \'Off\' );
将此行插入函数示例\\u ajax\\u request函数
function example_ajax_request() {
if ( isset( $_REQUEST ) ) { $postID = $_REQUEST[\'postID\'];
error_log(\'testing ajax\');
echo $postID; } wp_die();
}