admin-ajax.php
하중 wp-load.php
:
/** Load WordPress Bootstrap */
require_once( dirname( dirname( __FILE__ ) ) . '/wp-load.php' );
wp-load.php
로드 wp-config.php
되고 wp-settings.php
로드됩니다.
그리고 우리는 이것을 발견합니다 :
// Load the functions for the active theme, for both parent and child theme if applicable.
if ( ! defined( 'WP_INSTALLING' ) || 'wp-activate.php' === $pagenow ) {
if ( TEMPLATEPATH !== STYLESHEETPATH && file_exists( STYLESHEETPATH . '/functions.php' ) )
include( STYLESHEETPATH . '/functions.php' );
if ( file_exists( TEMPLATEPATH . '/functions.php' ) )
include( TEMPLATEPATH . '/functions.php' );
}
예, 테마 functions.php
가로드되었습니다.
하나의 예외가 있습니다 wp-settings.php
:
// Stop most of WordPress from being loaded if we just want the basics.
if ( SHORTINIT )
return false;
경우 SHORTINIT
로 정의 TRUE
이전 주제를로드 할 수 없습니다.
그래서 있는지 확인 SHORTINIT
입니다 TRUE
몇 가지 이유.
또 다른 일반적인 오류는의 잘못된 사용법입니다 is_admin()
. 이것은 항상 TRUE
에 admin-ajax.php
있으므로 다음이 실패합니다.
if ( ! is_admin() )
// register or execute AJAX stuff
AJAX 디버깅
효율적인 기본 방법 중 하나는 HTTP 헤더를 사용하여 AJAX를 디버깅하는 것입니다.
간단한 도우미 함수는 다음과 같습니다.
function send_debug_header( $msg )
{
static $counter = 1;
header( "X-Debug-Ajax-$counter: $msg" );
$counter += 1;
}
그리고이 플러그인은 그것을 사용하는 방법을 보여줍니다 :
<?php # -*- coding: utf-8 -*-
/**
* Plugin Name: Debug AJAX per HTTP
* Description: Look at the HTTP headers in your browser's network console
*/
// The constant is already defined when plugins are loaded.
// Prove we have been called.
if ( defined( 'DOING_AJAX' ) && DOING_AJAX )
send_debug_header( 'File "' . __FILE__ . '" was called on an AJAX request.' );
function send_debug_header( $msg )
{
static $counter = 1;
header( "X-Debug-Ajax-$counter: $msg" );
$counter += 1;
}
add_action( 'wp_ajax_debug_test', 't5_debug_test' );
add_action( 'wp_ajax_nopriv_debug_test', 't5_debug_test' );
function t5_debug_test()
{
$in = is_user_logged_in() ? '' : 'not ';
send_debug_header( 'Function "' . __FUNCTION__ . '" was called and the user is ' . $in . 'logged in.' );
print_r( debug_backtrace() );
die(1);
}
add_action( 'wp_enqueue_scripts', 't5_enqueue_jquery' );
function t5_enqueue_jquery()
{
wp_enqueue_script( 'jquery' );
}
add_action( 'wp_footer', 't5_debug_ajax_test_button', 0 );
function t5_debug_ajax_test_button()
{
?>
<input type="submit" id="t5debugajax" value="Debug AJAX">
<script>
jQuery( function($){
var sendFeedBack = function( response ){
console.log( response );
};
$("#t5debugajax").on("click", function(){
$.post(
"<?php echo admin_url( 'admin-ajax.php' ); ?>",
{
action: "debug_test"
},
sendFeedBack
);
});
});
</script>
<?php
}
클릭하면 AJAX 요청을 트리거하는 버튼을 프런트 엔드에 추가합니다. 브라우저의 네트워크 콘솔을 열고 요청에 대한 응답 헤더를 확인하십시오.