Changeset 44921
- Timestamp:
- 03/17/2019 01:44:20 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r44910 r44921 2922 2922 2923 2923 /** 2924 * Kill WordPress execution and display HTML message witherror message.2924 * Kills WordPress execution and displays HTML page with an error message. 2925 2925 * 2926 2926 * This function complements the `die()` PHP function. The difference is that … … 3014 3014 3015 3015 /** 3016 * Kills WordPress execution and display HTML message witherror message.3017 * 3018 * This is the default handler for wp_die if you want a custom one for your3019 * site then you can overloadusing the {@see 'wp_die_handler'} filter in wp_die().3016 * Kills WordPress execution and displays HTML page with an error message. 3017 * 3018 * This is the default handler for wp_die(). If you want a custom one, 3019 * you can override this using the {@see 'wp_die_handler'} filter in wp_die(). 3020 3020 * 3021 3021 * @since 3.0.0 … … 3211 3211 3212 3212 /** 3213 * Kill WordPress execution and display JSON message witherror message.3214 * 3215 * This is the handler for wp_die when processing JSON requests.3213 * Kills WordPress execution and displays JSON response with an error message. 3214 * 3215 * This is the handler for wp_die() when processing JSON requests. 3216 3216 * 3217 3217 * @since 5.1.0 … … 3249 3249 3250 3250 /** 3251 * Kill WordPress execution and display XML message witherror message.3252 * 3253 * This is the handler for wp_die when processing XMLRPC requests.3251 * Kills WordPress execution and displays XML response with an error message. 3252 * 3253 * This is the handler for wp_die() when processing XMLRPC requests. 3254 3254 * 3255 3255 * @since 3.2.0 … … 3281 3281 3282 3282 /** 3283 * Kill WordPress ajax execution.3284 * 3285 * This is the handler for wp_die when processing Ajax requests.3283 * Kills WordPress execution and displays Ajax response with an error message. 3284 * 3285 * This is the handler for wp_die() when processing Ajax requests. 3286 3286 * 3287 3287 * @since 3.4.0 … … 3323 3323 3324 3324 /** 3325 * Kill WordPress execution.3326 * 3327 * This is the handler for wp_die when processing APP requests.3325 * Kills WordPress execution and displays an error message. 3326 * 3327 * This is the handler for wp_die() when processing APP requests. 3328 3328 * 3329 3329 * @since 3.4.0 … … 3351 3351 3352 3352 /** 3353 * Processes arguments passed to {@see wp_die()}consistently for its handlers.3353 * Processes arguments passed to wp_die() consistently for its handlers. 3354 3354 * 3355 3355 * @since 5.1.0
Note: See TracChangeset
for help on using the changeset viewer.