_default_wp_die_handler( string|WP_Error $message, string $title = '', string|array $args = array() )
- Since
- 3.0.0
- Source
wp-includes/functions.php:3855
Description
This is the default handler for wp_die(). If you want a custom one, you can override this using the 'wp_die_handler' filter in wp_die().
Compatibility
- WordPress
- since 3.0.0
- PHP
- 7.4–8.6-dev
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0), and compiles on PHP 7.4 through 8.6-dev.
Parameters
$messagestring|WP_Error- Error message or WP_Error object.
$titlestringoptional- Error title. Default empty string.Default:
'' $argsstring|arrayoptional- Arguments to control behavior. Default empty array.Default:
array()
Performance profile
How much work a call to _default_wp_die_handler() does, and what it touches: the algorithmic scaling, the Zend instruction count per call across PHP versions, the hooks it hands control to, and the core code that calls it. Measured from the compiled opcodes, not a stopwatch, so every number is identical on any machine running the same PHP version, and every function in core is ranked by cost.
- Cost class
- Moderate
- Scaling
- Constant
- Instructions
- 33–139
- Plugin surface
- None
- Called by
- 0
Reads stored settings via get_option(), cached per request but not free on a cold cache.
No loop in the body: the same number of instructions runs whatever you pass in.
Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 160.
Nothing here hands control to plugin code.
Nothing in core calls this; the cost is only what you spend yourself.
What it touches
- hookthird-party callbacks
apply_filters()one call below _default_wp_die_handler() - optionoption read or write
get_option()one call below _default_wp_die_handler()
Further down the call graph this can also reach cache, serialize, query and transient. Those are the worst case, several calls deep and usually down an error path, not what a normal call pays.
What one call costs · 300 distinct outcomes
One number would be a lie: the work depends on which branch runs. These are every distinct cost _default_wp_die_handler() can have, taken from its control-flow graph on PHP 8.5.
| When | Instructions | Calls it makes |
|---|---|---|
empty($parsed_args) && did_action() && !$parsed_args | 33–50 | _wp_die_process_input(), function_exists(), did_action() |
empty($parsed_args) && did_action() && $parsed_args | 35–52 | _wp_die_process_input(), function_exists(), did_action(), exit() |
empty($parsed_args) && isset($parsed_args) && function_exists() && did_action() | 46–54 | _wp_die_process_input(), function_exists(), __(), did_action() |
!empty($parsed_args) && !function_exists() && did_action() && !$parsed_args | 47–62 | _wp_die_process_input(), function_exists(), function_exists(), did_action() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && function_exists() && did_action() | 48–56 | _wp_die_process_input(), function_exists(), __(), did_action(), exit() |
!empty($parsed_args) && !function_exists() && did_action() && $parsed_args | 49–64 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), exit() |
!empty($parsed_args) && function_exists() && did_action() && !$parsed_args | 51–66 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action() |
!empty($parsed_args) && function_exists() && did_action() && $parsed_args | 53–68 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), exit() |
empty($parsed_args) && !did_action() && headers_sent() && !empty($args) && !function_exists() && !$parsed_args | 58–76 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists() |
!empty($parsed_args) && isset($parsed_args) && did_action() | 60–66 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action() |
empty($parsed_args) && !did_action() && headers_sent() && !empty($args) && !function_exists() && $parsed_args | 60–78 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), exit() |
empty($parsed_args) && !did_action() && headers_sent() && !function_exists() && !$parsed_args | 62–80 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists() |
288 further outcomes, up to 137 instructions
!empty($parsed_args) && isset($parsed_args) && $parsed_args && did_action() | 62–68 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), exit() |
!is_string($message) && !empty($parsed_args) && function_exists() && isset($parsed_args) && did_action() | 64 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action() |
empty($parsed_args) && !did_action() && headers_sent() && !function_exists() && $parsed_args | 64–82 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), exit() |
empty($parsed_args) && !did_action() && headers_sent() && !$parsed_args | 66–84 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists() |
!is_string($message) && !empty($parsed_args) && function_exists() && isset($parsed_args) && $parsed_args && did_action() | 66 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), exit() |
empty($parsed_args) && !did_action() && headers_sent() && $parsed_args | 68–86 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), exit() |
empty($parsed_args) && !did_action() && headers_sent() && empty($args) && !$parsed_args | 69–87 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists() |
empty($parsed_args) && !did_action() && headers_sent() && empty($args) && !$parsed_args | 70–88 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists() |
empty($parsed_args) && !did_action() && !headers_sent() && !empty($args) && !function_exists() && !$parsed_args | 70–88 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists() |
empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && !empty($args) | 71–80 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists() |
empty($parsed_args) && !did_action() && headers_sent() && empty($args) && $parsed_args | 71–89 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), exit() |
!empty($parsed_args) && !function_exists() && !did_action() && headers_sent() && !empty($args) && !$parsed_args | 72–88 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists() |
empty($parsed_args) && !did_action() && headers_sent() && empty($args) && $parsed_args | 72–90 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
empty($parsed_args) && !did_action() && !headers_sent() && !empty($args) && !function_exists() && $parsed_args | 72–90 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), exit() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && !empty($args) | 73–82 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), exit() |
empty($parsed_args) && !did_action() && headers_sent() && empty($args) && !$parsed_args | 73–91 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists() |
!empty($parsed_args) && !function_exists() && !did_action() && headers_sent() && !empty($args) && $parsed_args | 74–90 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), exit() |
empty($parsed_args) && !did_action() && headers_sent() && empty($args) && !$parsed_args | 74–92 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists() |
empty($parsed_args) && !did_action() && !headers_sent() && !function_exists() && !$parsed_args | 74–92 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists() |
empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() | 75–84 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists() |
empty($parsed_args) && !did_action() && headers_sent() && empty($args) && $parsed_args | 75–93 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !function_exists() && !did_action() && headers_sent() && !$parsed_args | 76–92 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists() |
!empty($parsed_args) && !did_action() && headers_sent() && !empty($args) && !$parsed_args | 76–92 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists() |
empty($parsed_args) && !did_action() && headers_sent() && empty($args) && $parsed_args | 76–94 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
empty($parsed_args) && !did_action() && !headers_sent() && !function_exists() && $parsed_args | 76–94 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), exit() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() | 77–86 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), exit() |
empty($parsed_args) && !did_action() && headers_sent() && empty($args) && !$parsed_args | 77–95 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && !function_exists() && !did_action() && headers_sent() && $parsed_args | 78–94 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && headers_sent() && !empty($args) && $parsed_args | 78–94 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), exit() |
empty($parsed_args) && !did_action() && !headers_sent() && !$parsed_args | 78–96 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists() |
empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() | 79–88 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists() |
empty($parsed_args) && !did_action() && headers_sent() && empty($args) && $parsed_args | 79–97 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && headers_sent() && !$parsed_args | 80–96 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && !did_action() && headers_sent() && !$parsed_args | 80–96 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), function_exists() |
empty($parsed_args) && !did_action() && headers_sent() && !empty($args) && function_exists() && !$parsed_args | 80–98 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
empty($parsed_args) && !did_action() && !headers_sent() && $parsed_args | 80–98 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), exit() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() | 81–90 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), exit() |
empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 81–99 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists() |
empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 82–91 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists() |
!empty($parsed_args) && !did_action() && headers_sent() && $parsed_args | 82–98 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && headers_sent() && $parsed_args | 82–98 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), function_exists(), exit() |
empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 82–100 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists() |
empty($parsed_args) && !did_action() && headers_sent() && !empty($args) && function_exists() && $parsed_args | 82–100 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 83–92 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists() |
empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && !empty($args) | 83–92 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && !$parsed_args | 83–99 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists() |
empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && $parsed_args | 83–101 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && !$parsed_args | 84–100 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && !function_exists() && !did_action() && !headers_sent() && !empty($args) && !$parsed_args | 84–100 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists() |
!empty($parsed_args) && !did_action() && headers_sent() && !$parsed_args | 84–100 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 84–93 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), exit() |
empty($parsed_args) && !did_action() && headers_sent() && empty($args) && !$parsed_args | 84–102 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && $parsed_args | 84–102 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && !empty($args) | 85–92 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 85–94 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && !empty($args) | 85–94 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && $parsed_args | 85–101 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), exit() |
empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 85–103 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists() |
empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 86–95 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && $parsed_args | 86–102 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !function_exists() && !did_action() && !headers_sent() && !empty($args) && $parsed_args | 86–102 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && headers_sent() && $parsed_args | 86–102 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), exit() |
empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 86–104 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists() |
empty($parsed_args) && !did_action() && headers_sent() && empty($args) && $parsed_args | 86–104 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && !empty($args) | 87–94 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), exit() |
empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 87–96 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists() |
empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() | 87–96 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && !$parsed_args | 87–103 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && !$parsed_args | 87–103 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists() |
empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && $parsed_args | 87–105 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && !$parsed_args | 88–104 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && !function_exists() && !did_action() && !headers_sent() && !$parsed_args | 88–104 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && !$parsed_args | 88–104 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && !did_action() && !headers_sent() && !empty($args) && !$parsed_args | 88–104 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 88–97 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), exit() |
empty($parsed_args) && !did_action() && headers_sent() && empty($args) && !$parsed_args | 88–106 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && $parsed_args | 88–106 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() | 89–96 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && !empty($args) | 89–90 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 89–98 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() | 89–98 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && $parsed_args | 89–105 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && $parsed_args | 89–105 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), exit() |
empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 89–107 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists() |
empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 90–99 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && $parsed_args | 90–106 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !function_exists() && !did_action() && !headers_sent() && $parsed_args | 90–106 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && $parsed_args | 90–106 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && !headers_sent() && !empty($args) && $parsed_args | 90–106 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), exit() |
empty($parsed_args) && !did_action() && headers_sent() && empty($args) && $parsed_args | 90–108 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() | 91–98 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), exit() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && !empty($args) | 91–92 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), exit() |
empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() | 91–100 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && !$parsed_args | 91–107 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && !$parsed_args | 91–107 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists() |
empty($parsed_args) && !did_action() && headers_sent() && empty($args) && function_exists() && !$parsed_args | 91–109 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && $parsed_args | 91–109 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && !headers_sent() && !$parsed_args | 92–108 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && !$parsed_args | 92–108 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && !did_action() && !headers_sent() && !$parsed_args | 92–108 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 92–101 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), exit() |
empty($parsed_args) && !did_action() && !headers_sent() && !empty($args) && function_exists() && !$parsed_args | 92–110 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() | 93–100 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() | 93–94 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), function_exists() |
empty($parsed_args) && isset($parsed_args) && function_exists() && !did_action() && headers_sent() && !empty($args) | 93–102 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() | 93–102 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && $parsed_args | 93–109 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && $parsed_args | 93–109 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), exit() |
empty($parsed_args) && !did_action() && headers_sent() && empty($args) && function_exists() && $parsed_args | 93–111 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 94–103 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists() |
!empty($parsed_args) && !did_action() && headers_sent() && !empty($args) && !$parsed_args | 94–110 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && !did_action() && !headers_sent() && $parsed_args | 94–110 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && $parsed_args | 94–110 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && !headers_sent() && $parsed_args | 94–110 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), exit() |
empty($parsed_args) && !did_action() && !headers_sent() && !empty($args) && function_exists() && $parsed_args | 94–112 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() | 95–102 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), exit() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() | 95–96 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), function_exists(), exit() |
empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 95–104 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 95–111 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && !$parsed_args | 95–111 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && function_exists() && !did_action() && headers_sent() && !empty($args) | 95–104 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 96–103 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 96–112 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && !did_action() && !headers_sent() && !$parsed_args | 96–112 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 96–105 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && headers_sent() && !empty($args) && $parsed_args | 96–112 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 96–114 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 97–104 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && !empty($args) | 97–104 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() | 97–98 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists() |
empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 97–106 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 97–106 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && $parsed_args | 97–113 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && $parsed_args | 97–113 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 98–105 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), exit() |
empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 98–107 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && !$parsed_args | 98–114 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && $parsed_args | 98–114 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && function_exists() && !did_action() && headers_sent() && !empty($args) && !$parsed_args | 98–114 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && !did_action() && !headers_sent() && $parsed_args | 98–114 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), exit() |
empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && $parsed_args | 98–116 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 99–106 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && !empty($args) | 99–106 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), exit() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() | 99–100 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), exit() |
empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 99–108 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 99–115 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 99–109 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 99–108 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 100–107 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 100–101 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 100–116 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 100–116 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 100–109 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && $parsed_args | 100–116 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && function_exists() && !did_action() && headers_sent() && !empty($args) && $parsed_args | 100–116 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 100–118 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 101–108 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() | 101–108 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 101–102 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && !empty($args) | 101–102 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists() |
empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 101–110 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 101–110 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && $parsed_args | 101–117 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && $parsed_args | 101–111 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), exit() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 102–109 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), exit() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 102–103 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), exit() |
empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 102–111 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && !$parsed_args | 102–118 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && $parsed_args | 102–118 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && !$parsed_args | 102–118 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && $parsed_args | 102–118 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && $parsed_args | 102–120 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 103–110 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() | 103–110 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), exit() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 103–104 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && !empty($args) | 103–104 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 103–119 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 103–113 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 103–112 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && function_exists() && !$parsed_args | 103–121 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 104–111 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 104–105 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 104–114 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists() |
empty($parsed_args) && isset($parsed_args) && function_exists() && !did_action() && headers_sent() && empty($args) | 104–113 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 104–113 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && $parsed_args | 104–120 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && $parsed_args | 104–120 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() | 105–112 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 105–106 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() | 105–106 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists() |
empty($parsed_args) && isset($parsed_args) && function_exists() && !did_action() && !headers_sent() && !empty($args) | 105–114 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && !$parsed_args | 105–121 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && $parsed_args | 105–121 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && $parsed_args | 105–115 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), exit() |
empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && function_exists() && $parsed_args | 105–123 | _wp_die_process_input(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 106–113 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), exit() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 106–107 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && !headers_sent() && !empty($args) && !$parsed_args | 106–122 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && !$parsed_args | 106–122 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && $parsed_args | 106–116 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && function_exists() && !did_action() && headers_sent() && empty($args) | 106–115 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && !empty($args) | 107–114 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() | 107–114 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), exit() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 107–108 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() | 107–108 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 107–117 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && function_exists() && !did_action() && !headers_sent() && !empty($args) | 107–116 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && $parsed_args | 107–123 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 108–115 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 108–109 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && !did_action() && !headers_sent() && !empty($args) && $parsed_args | 108–124 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && !did_action() && headers_sent() && empty($args) && $parsed_args | 108–124 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 109–116 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() | 109–110 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && !empty($args) | 109–116 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 109–118 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && function_exists() && !did_action() && headers_sent() && empty($args) && !$parsed_args | 109–125 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && $parsed_args | 109–119 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 110–117 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), exit() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 110–111 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 110–126 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && function_exists() && !did_action() && !headers_sent() && !empty($args) && !$parsed_args | 110–126 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 111–118 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 111–118 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
!is_string($message) && !empty($parsed_args) && function_exists() && isset($parsed_args) && !did_action() && headers_sent() && !empty($args) | 111–112 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() | 111–112 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), exit() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 111–120 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && function_exists() && !did_action() && headers_sent() && empty($args) && $parsed_args | 111–127 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 112–119 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 112–113 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && $parsed_args | 112–128 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && function_exists() && !did_action() && !headers_sent() && !empty($args) && $parsed_args | 112–128 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 113–120 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 113–114 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 113–120 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!is_string($message) && !empty($parsed_args) && function_exists() && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && !empty($args) | 113–114 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 113–122 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 114–121 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), exit() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 114–115 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 114–130 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 114–130 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 115–122 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 115–122 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 115–116 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 115–116 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 115–124 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 116–123 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 116–117 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists() |
empty($parsed_args) && isset($parsed_args) && function_exists() && !did_action() && !headers_sent() && empty($args) | 116–125 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && $parsed_args | 116–132 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && $parsed_args | 116–132 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 117–118 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 117–124 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 117–118 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 117–133 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 118–125 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 118–125 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), exit() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 118–119 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 118–128 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
empty($parsed_args) && isset($parsed_args) && $parsed_args && function_exists() && !did_action() && !headers_sent() && empty($args) | 118–127 | _wp_die_process_input(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && !empty($args) | 119–126 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 119–120 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 119–120 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && $parsed_args | 119–135 | _wp_die_process_input(), function_exists(), function_exists(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 120–121 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 120–127 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && !did_action() && !headers_sent() && empty($args) && $parsed_args | 120–130 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && !empty($args) | 121–128 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 121–122 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && function_exists() && !did_action() && !headers_sent() && empty($args) && !$parsed_args | 121–131 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!is_string($message) && !empty($parsed_args) && function_exists() && isset($parsed_args) && !did_action() && headers_sent() && empty($args) | 122–123 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 122–123 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), exit() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 123–130 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!is_string($message) && !empty($parsed_args) && function_exists() && isset($parsed_args) && !did_action() && !headers_sent() && !empty($args) | 123–124 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && function_exists() && !did_action() && !headers_sent() && empty($args) && $parsed_args | 123–133 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!is_string($message) && !empty($parsed_args) && function_exists() && isset($parsed_args) && $parsed_args && !did_action() && headers_sent() && empty($args) | 124–125 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 125–132 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!is_string($message) && !empty($parsed_args) && function_exists() && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && !empty($args) | 125–126 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 127–134 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 127–128 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 129–136 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 129–130 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 130–137 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 131–132 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 132–139 | _wp_die_process_input(), function_exists(), function_exists(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!is_string($message) && !empty($parsed_args) && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 133–134 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
!is_string($message) && !empty($parsed_args) && function_exists() && isset($parsed_args) && !did_action() && !headers_sent() && empty($args) | 134–135 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots() |
!is_string($message) && !empty($parsed_args) && function_exists() && isset($parsed_args) && $parsed_args && !did_action() && !headers_sent() && empty($args) | 136–137 | _wp_die_process_input(), function_exists(), function_exists(), esc_url(), __(), did_action(), headers_sent(), header(), status_header(), nocache_headers(), function_exists(), function_exists(), get_language_attributes(), function_exists(), function_exists(), function_exists(), add_filter(), remove_filter(), remove_filter(), wp_robots(), exit() |
This body has more branch combinations than are worth enumerating, so the table covers the outcomes found first rather than every one that exists.
Across PHP versions
| PHP | Compiled | Executed | Branches | Notes |
|---|---|---|---|---|
| 8.6-dev | 159 | 33–138 | 18 | 1 fewer instruction than PHP 8.5 |
| 8.5 | 160 | 33–139 | 18 | |
| 8.4 | 160 | 33–139 | 18 | 3 fewer instructions than PHP 8.3 |
| 8.3 | 163 | 33–138 | 18 | |
| 8.2 | 163 | 33–138 | 18 | 1 fewer instruction than PHP 8.1 |
| 8.1 | 164 | 34–139 | 18 | |
| 7.4 | 164 | 34–139 | 18 |
An instruction is not a fixed amount of time, so a matching count is not necessarily the same speed; what it rules out is a difference in the work itself.
Uses · 11
- _wp_die_process_input()Processes arguments passed to wp_die() consistently for its handlers.
- wp_list_pluck()Plucks a certain field out of each object or array in an array.
- esc_url()Checks and cleans a URL.
- __()Retrieves the translation of $text.
- did_action()Retrieves the number of times an action has been fired during the current request.
- status_header()Sets HTTP status header.
- nocache_headers()Sets the HTTP headers to prevent caching for the different browsers.
- get_language_attributes()Gets the language attributes for the 'html' tag.
- add_filter()Adds a callback function to a filter hook.
- remove_filter()Removes a callback function from a filter hook.
- wp_robots()Displays the robots meta tag as necessary.
Source code
function _default_wp_die_handler( $message, $title = '', $args = array() ) { list( $message, $title, $parsed_args ) = _wp_die_process_input( $message, $title, $args ); if ( is_string( $message ) ) { if ( ! empty( $parsed_args['additional_errors'] ) ) { $message = array_merge( array( $message ), wp_list_pluck( $parsed_args['additional_errors'], 'message' ) ); $message = "<ul>\n\t\t<li>" . implode( "</li>\n\t\t<li>", $message ) . "</li>\n\t</ul>"; } $message = sprintf( '<div class="wp-die-message">%s</div>', $message ); } $have_gettext = function_exists( '__' ); if ( ! empty( $parsed_args['link_url'] ) && ! empty( $parsed_args['link_text'] ) ) { $link_url = $parsed_args['link_url']; if ( function_exists( 'esc_url' ) ) { $link_url = esc_url( $link_url ); } $link_text = $parsed_args['link_text']; $message .= "\n<p><a href='{$link_url}'>{$link_text}</a></p>"; } if ( isset( $parsed_args['back_link'] ) && $parsed_args['back_link'] ) { $back_text = $have_gettext ? __( '« Back' ) : '« Back'; $message .= "\n<p><a href='javascript:history.back()'>$back_text</a></p>"; } if ( ! did_action( 'admin_head' ) ) : if ( ! headers_sent() ) { header( "Content-Type: text/html; charset={$parsed_args['charset']}" ); status_header( $parsed_args['response'] ); nocache_headers(); } $text_direction = $parsed_args['text_direction']; $dir_attr = "dir='$text_direction'"; /* * If `text_direction` was not explicitly passed, * use get_language_attributes() if available. */ if ( empty( $args['text_direction'] ) && function_exists( 'language_attributes' ) && function_exists( 'is_rtl' ) ) { $dir_attr = get_language_attributes(); } ?><!DOCTYPE html><html <?php echo $dir_attr; ?>><head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $parsed_args['charset']; ?>" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <?php if ( function_exists( 'wp_robots' ) && function_exists( 'wp_robots_no_robots' ) && function_exists( 'add_filter' ) ) { add_filter( 'wp_robots', 'wp_robots_no_robots' ); // Prevent warnings because of $wp_query not existing. remove_filter( 'wp_robots', 'wp_robots_noindex_embeds' ); remove_filter( 'wp_robots', 'wp_robots_noindex_search' ); wp_robots(); } ?> <title><?php echo $title; ?></title> <style type="text/css"> html { background: #f1f1f1; } body { background: #fff; border: 1px solid #ccd0d4; color: #444; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; margin: 2em auto; padding: 1em 2em;Changelog
Introduced in 3.0.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.9.7 tag, from
src/wp-includes/functions.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it. - Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.