wppaste
WordPress

WP_REST_Server::serve_request( string $path = null ): null|false

Since
4.4.0
Source
wp-includes/rest-api/class-wp-rest-server.php:285
Handles serving a REST API request.

Description

Matches the current server URI to a route and runs the first matching callback then outputs a JSON representation of the returned value.

Compatibility

WordPress
since 4.4.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

$pathstringoptional
The request route. If not set, $_SERVER['PATH_INFO'] will be used.
Default null.Default: null

Return value

null|false
Null if not served and a HEAD request, false otherwise.

Performance profile

How much work a call to WP_REST_Server::serve_request() 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
Heavy

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

Scaling
Scales with input

The body loops, so the work grows with what you pass in.

Instructions
196–309

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

Plugin surface
8 hooks

Third-party callbacks on 'rest_jsonp_enabled', 'rest_enabled', 'rest_exposed_cors_headers' run inside this call, and their cost is not bounded by anything here.

Called by
0

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

What it touches

  • hookthird-party callbacksapply_filters()called directly
  • optionoption read or writeget_option()called directly
  • cacheobject cachewp_cache_get()one call below WP_REST_Server::serve_request()
  • serializeserialisationmaybe_unserialize()one call below WP_REST_Server::serve_request()

Further down the call graph this can also reach 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 · 384 distinct outcomes

One number would be a lie: the work depends on which branch runs. These are every distinct cost WP_REST_Server::serve_request() can have, taken from its control-flow graph on PHP 8.5.

WhenInstructionsCalls it makes
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root)196–202->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root)198–207->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root)200–206->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error()200–206->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error()200–206->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)200–205->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root)202–211->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error()202–211->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error()202–211->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)202–210->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error()204–210->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error()204–210->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
372 further outcomes, up to 309 instructions
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root)204–210->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)204–209->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()204–209->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()204–209->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)206–212->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error()206–215->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error()206–215->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root)206–215->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)206–214->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()206–214->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()206–214->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)208–217->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root)208–214->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()208–213->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()208–213->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)208–213->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)210–216->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error()210–216->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error()210–216->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)210–215->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root)210–219->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()210–218->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()210–218->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)210–218->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)212–221->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error()212–221->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error()212–221->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)212–220->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)212–217->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)213–219->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error()214–220->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error()214–220->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)214–220->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)214–219->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()214–219->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()214–219->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)214–222->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)215–224->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error()216–225->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error()216–225->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)216–225->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)216–224->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()216–224->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()216–224->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)217–223->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error()217–223->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error()217–223->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)217–222->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)218–224->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()218–223->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()218–223->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)218–223->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)219–228->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error()219–228->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error()219–228->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)219–227->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root)220–228->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)220–229->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()220–228->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()220–228->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)220–228->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error()221–227->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error()221–227->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)221–227->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)221–226->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()221–226->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()221–226->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root)222–233->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)222–227->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error()223–232->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error()223–232->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)223–228->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)223–231->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()223–231->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()223–231->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error()224–232->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error()224–232->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)224–231->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)224–232->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)225–229->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()225–230->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()225–230->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)225–230->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error()226–237->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error()226–237->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)226–236->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)227–235->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)227–232->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()227–235->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()227–235->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)227–235->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root)228–236->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()228–235->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()228–235->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)229–240->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)229–234->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)230–238->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root)230–241->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()230–240->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()230–240->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error()231–239->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error()231–239->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)231–238->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)231–239->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)232–243->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)232–239->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error()233–244->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error()233–244->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)233–243->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error()234–242->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error()234–242->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)234–241->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)234–244->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)235–243->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()235–242->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()235–242->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null236–246->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error()236–247->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error()236–247->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)236–246->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)237–245->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)237–245->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)237–248->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()237–247->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()237–247->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)238–246->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()238–245->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()238–245->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null238–251->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)239–250->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)239–250->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)239–246->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null240–250->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null240–250->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)240–251->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null240–249->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()240–250->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()240–250->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error()241–249->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error()241–249->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error()241–249->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error()241–249->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)241–248->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)241–248->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)241–251->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)242–249->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null242–255->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null242–255->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null242–254->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null243–253->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error()243–254->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error()243–254->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error()243–254->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error()243–254->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)243–253->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)243–253->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)244–252->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null244–254->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null244–253->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null244–253->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)244–254->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)245–253->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)245–253->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()245–252->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()245–252->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()245–252->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()245–252->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null245–258->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null246–256->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)246–257->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null246–259->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null246–258->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null246–258->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null247–257->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null247–257->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)247–258->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)247–254->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null247–256->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()247–257->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()247–257->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()247–257->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()247–257->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error()248–256->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error()248–256->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)248–255->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null248–261->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null248–257->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)249–256->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)249–256->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null249–262->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null249–262->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null249–261->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null250–260->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error()250–261->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null250–260->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error()250–261->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null250–259->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)250–260->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null250–262->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null251–261->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null251–260->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null251–260->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)251–261->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)251–261->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)252–258->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()252–259->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()252–259->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null252–265->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null252–265->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null252–264->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null253–263->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null253–263->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null253–266->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null253–265->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null253–265->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null254–264->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root)254–261->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null254–263->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()254–264->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null254–263->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()254–264->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null255–268->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null255–268->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null255–264->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)256–263->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null256–269->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null256–268->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null256–268->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null257–267->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null257–267->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null257–267->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null257–267->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null257–266->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null257–266->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null257–269->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null258–267->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path)258–268->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null259–269->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null259–272->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null259–272->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null259–272->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null259–272->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null259–271->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null259–271->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null260–270->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null260–272->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null261–271->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null261–271->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null261–270->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null261–270->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null261–270->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null261–270->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null261–274->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null262–275->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null263–273->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null263–273->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null263–276->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null263–272->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null263–272->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null263–275->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null263–275->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null263–275->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null263–275->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null264–274->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null264–274->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null264–273->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null265–274->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null265–274->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null265–278->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null265–278->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null265–277->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null266–276->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null266–279->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null266–279->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null266–278->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null267–277->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null267–276->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null267–276->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null267–279->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null267–279->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null268–278->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null268–277->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null268–277->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null268–281->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null269–279->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null269–282->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null269–281->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null269–281->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null270–280->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null270–280->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null270–279->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null270–279->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null270–282->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null270–282->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null271–284->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null271–280->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null272–281->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null272–285->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null272–285->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null272–284->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null273–283->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null273–283->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null273–282->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null273–285->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null274–284->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null274–283->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null274–283->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null274–286->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null275–288->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null275–288->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null275–287->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null276–286->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null276–286->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null276–289->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null276–288->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null276–288->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null277–287->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null277–286->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null277–286->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null278–291->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null278–291->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null278–287->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null279–292->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null279–291->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null279–291->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null280–290->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null280–290->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null280–290->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null280–290->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null280–289->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null280–289->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null280–292->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null281–290->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null282–295->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null282–295->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null282–295->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null282–295->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null282–294->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null282–294->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null283–293->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null283–295->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null284–294->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null284–294->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null284–293->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null284–293->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null284–293->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null284–293->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null285–298->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null286–299->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null286–295->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null286–298->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null286–298->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null286–298->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null286–298->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null287–297->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null287–297->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null287–296->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null288–297->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null288–297->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null289–302->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null289–302->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null289–301->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null290–302->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null290–302->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null291–299->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null291–300->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null291–300->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null293–302->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null293–305->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null293–305->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null295–304->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null297–309->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode()

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-dev384196–307312 fewer instructions than PHP 8.5
8.5386196–30931
8.4386196–309319 fewer instructions than PHP 8.3
8.3395202–31831
8.2395202–31831
8.1395202–31831
7.4395202–31831

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.

Hooks and filters fired · 8

8 hooks fire while WP_REST_Server::serve_request() runs, in this order:

  1. apply_filters( rest_jsonp_enabled )filterline 316 (+31 into the body)

    Filters whether JSONP is enabled for the REST API.

  2. do_action( rest_enabled )filter_deprecatedline 348 (+63 into the body)

    Filters whether the REST API is enabled.

  3. apply_filters( rest_exposed_cors_headers )filterline 412 (+127 into the body)

    Filters the list of response headers that are exposed to REST API CORS requests.

  4. apply_filters( rest_allowed_cors_headers )filterline 438 (+153 into the body)

    Filters the list of request headers that are allowed for REST API CORS requests.

  5. apply_filters( rest_post_dispatch )filterline 468 (+183 into the body)

    Filters the REST API response.

  6. apply_filters( rest_send_nocache_headers )filterline 491 (+206 into the body)

    Filters whether to send no-cache headers on a REST API request.

  7. apply_filters( rest_pre_serve_request )filterline 521 (+236 into the body)

    Filters whether the REST API request has already been served.

  8. apply_filters( rest_pre_echo_response )filterline 544 (+259 into the body)

    Filters the REST API response.

Uses · 32

Show all 32

Source code

	public function serve_request( $path = null ) {		// Refuse to start a fresh top-level REST cycle while another dispatch		// is already in flight. Internal sub-requests must use dispatch().		if ( $this->is_dispatching() ) {			return false;		} 		/* @var WP_User|null $current_user */		global $current_user; 		if ( $current_user instanceof WP_User && ! $current_user->exists() ) {			/*			 * If there is no current user authenticated via other means, clear			 * the cached lack of user, so that an authenticate check can set it			 * properly.			 *			 * This is done because for authentications such as Application			 * Passwords, we don't want it to be accepted unless the current HTTP			 * request is a REST API request, which can't always be identified early			 * enough in evaluation.			 */			$current_user = null;		} 		/**		 * Filters whether JSONP is enabled for the REST API.		 *		 * @since 4.4.0		 *		 * @param bool $jsonp_enabled Whether JSONP is enabled. Default true.		 */		$jsonp_enabled = apply_filters( 'rest_jsonp_enabled', true ); 		$jsonp_callback = false;		if ( isset( $_GET['_jsonp'] ) ) {			$jsonp_callback = $_GET['_jsonp'];		} 		$content_type = ( $jsonp_callback && $jsonp_enabled ) ? 'application/javascript' : 'application/json';		$this->send_header( 'Content-Type', $content_type . '; charset=' . get_option( 'blog_charset' ) );		$this->send_header( 'X-Robots-Tag', 'noindex' ); 		$api_root = get_rest_url();		if ( ! empty( $api_root ) ) {			$this->send_header( 'Link', '<' . sanitize_url( $api_root ) . '>; rel="https://api.w.org/"' );		} 		/*		 * Mitigate possible JSONP Flash attacks.		 *		 * https://miki.it/blog/2014/7/8/abusing-jsonp-with-rosetta-flash/		 */		$this->send_header( 'X-Content-Type-Options', 'nosniff' ); 		/**		 * Filters whether the REST API is enabled.		 *		 * @since 4.4.0		 * @deprecated 4.7.0 Use the {@see 'rest_authentication_errors'} filter to		 *                   restrict access to the REST API.		 *		 * @param bool $rest_enabled Whether the REST API is enabled. Default true.		 */		apply_filters_deprecated(			'rest_enabled',			array( true ),			'4.7.0',			'rest_authentication_errors',			sprintf(				/* translators: %s: rest_authentication_errors */				__( 'The REST API can no longer be completely disabled, the %s filter can be used to restrict access to the API, instead.' ),				'rest_authentication_errors'			)		); 		if ( $jsonp_callback ) {			if ( ! $jsonp_enabled ) {				echo $this->json_error( 'rest_callback_disabled', __( 'JSONP support is disabled on this site.' ), 400 );				return false;			}

Changelog

Introduced in 4.4.0. One change between 6.7.7 and 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.

6.9.7
Parameter $path retyped from string to string|null.verified against source
4.4.0
Introduced.from the docblock

About this page

Parsed data
Generated from the wordpress-develop 6.8.8 tag, from src/wp-includes/rest-api/class-wp-rest-server.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.