Is Ajax in WordPress

后端 未结 7 984
萌比男神i
萌比男神i 2021-01-03 17:23

Is there anyway to detect if the current server operation is currently an AJAX request in WordPress?

For example:

is_ajax()
7条回答
  •  孤城傲影
    2021-01-03 18:16

    if ( ! function_exists('is_ajax') ) {
        function is_ajax() {
            return defined( 'DOING_AJAX' );
        }
    }
    

提交回复
热议问题