wppaste
WordPress

_default_wp_die_handler( string|WP_Error $message, string $title = '', string|array $args = array() )

Since
3.0.0
Source
wp-includes/functions.php:3855
Kills WordPress execution and displays HTML page with an error message.

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

Reads stored settings via get_option(), cached per request but not free on a cold cache.

Scaling
Constant

No loop in the body: the same number of instructions runs whatever you pass in.

Instructions
33–139

Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 160.

Plugin surface
None

Nothing here hands control to plugin code.

Called by
0

Nothing in core calls this; the cost is only what you spend yourself.

What it touches

  • hookthird-party callbacksapply_filters()one call below _default_wp_die_handler()
  • optionoption read or writeget_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.

WhenInstructionsCalls it makes
empty($parsed_args) && did_action() && !$parsed_args33–50_wp_die_process_input(), function_exists(), did_action()
empty($parsed_args) && did_action() && $parsed_args35–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_args47–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_args49–64_wp_die_process_input(), function_exists(), function_exists(), did_action(), exit()
!empty($parsed_args) && function_exists() && did_action() && !$parsed_args51–66_wp_die_process_input(), function_exists(), function_exists(), esc_url(), did_action()
!empty($parsed_args) && function_exists() && did_action() && $parsed_args53–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_args58–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_args60–78_wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), exit()
empty($parsed_args) && !did_action() && headers_sent() && !function_exists() && !$parsed_args62–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_args64–82_wp_die_process_input(), function_exists(), did_action(), headers_sent(), function_exists(), function_exists(), exit()
empty($parsed_args) && !did_action() && headers_sent() && !$parsed_args66–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_args68–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_args69–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_args70–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_args70–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_args71–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_args72–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_args72–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_args72–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_args73–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_args74–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_args74–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_args74–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_args75–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_args76–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_args76–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_args76–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_args76–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_args77–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_args78–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_args78–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_args78–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_args79–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_args80–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_args80–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_args80–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_args80–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_args81–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_args82–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_args82–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_args82–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_args82–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_args83–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_args83–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_args84–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_args84–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_args84–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_args84–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_args84–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_args85–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_args85–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_args86–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_args86–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_args86–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_args86–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_args86–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_args87–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_args87–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_args87–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_args88–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_args88–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_args88–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_args88–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_args88–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_args88–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_args89–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_args89–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_args89–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_args90–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_args90–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_args90–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_args90–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_args90–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_args91–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_args91–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_args91–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_args91–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_args92–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_args92–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_args92–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_args92–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_args93–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_args93–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_args93–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_args94–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_args94–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_args94–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_args94–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_args94–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_args95–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_args95–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_args96–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_args96–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_args96–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_args96–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_args97–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_args97–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_args98–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_args98–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_args98–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_args98–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_args98–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_args99–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_args99–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_args100–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_args100–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_args100–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_args100–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_args100–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_args101–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_args101–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_args102–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_args102–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_args102–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_args102–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_args102–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_args103–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_args103–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_args103–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_args104–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_args104–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_args104–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_args105–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_args105–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_args105–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_args105–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_args106–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_args106–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_args106–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_args107–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_args107–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_args108–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_args108–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_args109–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_args109–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_args110–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_args110–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_args111–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_args112–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_args112–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_args114–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_args114–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_args116–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_args116–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_args117–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_args118–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_args119–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_args120–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_args121–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_args123–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

PHPCompiledExecutedBranchesNotes
8.6-dev15933–138181 fewer instruction than PHP 8.5
8.516033–13918
8.416033–139183 fewer instructions than PHP 8.3
8.316333–13818
8.216333–138181 fewer instruction than PHP 8.1
8.116434–13918
7.416434–13918

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

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 ? __( '&laquo; Back' ) : '&laquo; 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.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 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.