mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 20:30:23 +00:00
Docs: Standardize capitalization of Ajax throughout core documentation per the core spelling guide.
Ajax, while considered an acronym for Asynchronous JavaScript and XML, is most commonly capitalized only in the first character. Part props ocean90. See #32246. git-svn-id: https://develop.svn.wordpress.org/trunk@38028 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -2569,7 +2569,7 @@ function wp_die( $message = '', $title = '', $args = array() ) {
|
||||
|
||||
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
|
||||
/**
|
||||
* Filters callback for killing WordPress execution for AJAX requests.
|
||||
* Filters the callback for killing WordPress execution for Ajax requests.
|
||||
*
|
||||
* @since 3.4.0
|
||||
*
|
||||
@@ -2578,7 +2578,7 @@ function wp_die( $message = '', $title = '', $args = array() ) {
|
||||
$function = apply_filters( 'wp_die_ajax_handler', '_ajax_wp_die_handler' );
|
||||
} elseif ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST ) {
|
||||
/**
|
||||
* Filters callback for killing WordPress execution for XML-RPC requests.
|
||||
* Filters the callback for killing WordPress execution for XML-RPC requests.
|
||||
*
|
||||
* @since 3.4.0
|
||||
*
|
||||
@@ -2587,7 +2587,7 @@ function wp_die( $message = '', $title = '', $args = array() ) {
|
||||
$function = apply_filters( 'wp_die_xmlrpc_handler', '_xmlrpc_wp_die_handler' );
|
||||
} else {
|
||||
/**
|
||||
* Filters callback for killing WordPress execution for all non-AJAX, non-XML-RPC requests.
|
||||
* Filters the callback for killing WordPress execution for all non-Ajax, non-XML-RPC requests.
|
||||
*
|
||||
* @since 3.0.0
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user