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
193–306

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

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
!($current_user instanceof) && !isset($value) && empty($api_root)193–199apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root)195–204apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root)197–203apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error()197–203apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error()197–203apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)197–202apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root)199–208apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error()199–208apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error()199–208apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)199–207apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error()201–207apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error()201–207apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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 306 instructions
!($current_user instanceof) && !isset($value) && empty($api_root)201–207apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)201–206apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()201–206apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()201–206apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)203–209apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error()203–212apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error()203–212apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root)203–212apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)203–211apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()203–211apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()203–211apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)205–214apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root)205–211apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()205–210apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()205–210apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)205–210apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)207–213apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error()207–213apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error()207–213apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)207–212apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root)207–216apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()207–215apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()207–215apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)207–215apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)209–218apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error()209–218apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error()209–218apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)209–217apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)209–214apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)210–216apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error()211–217apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error()211–217apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)211–217apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)211–216apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()211–216apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()211–216apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)211–219apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)212–221apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error()213–222apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error()213–222apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)213–222apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)213–221apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()213–221apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()213–221apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)214–220apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error()214–220apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error()214–220apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)214–219apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)215–221apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()215–220apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()215–220apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)215–220apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)216–225apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error()216–225apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error()216–225apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)216–224apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root)217–225apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)217–226apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()217–225apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()217–225apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)217–225apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error()218–224apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error()218–224apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)218–224apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)218–223apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()218–223apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()218–223apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root)219–230apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)219–224apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error()220–229apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error()220–229apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)220–225apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)220–228apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()220–228apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()220–228apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error()221–229apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error()221–229apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)221–228apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)221–229apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)222–226apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()222–227apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()222–227apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)222–227apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error()223–234apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error()223–234apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)223–233apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)224–232apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)224–229apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()224–232apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()224–232apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)224–232apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root)225–233apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()225–232apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()225–232apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)226–237apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)226–231apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)227–235apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root)227–238apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()227–237apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()227–237apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error()228–236apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error()228–236apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)228–235apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)228–236apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)229–240apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)229–236apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error()230–241apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error()230–241apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)230–240apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error()231–239apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error()231–239apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)231–238apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)231–241apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)232–240apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()232–239apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()232–239apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null233–243apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error()233–244apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error()233–244apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)233–243apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)234–242apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)234–242apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)234–245apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()234–244apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()234–244apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)235–243apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()235–242apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()235–242apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null235–248apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)236–247apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)236–247apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)236–243apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null237–247apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null237–247apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)237–248apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null237–246apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()237–247apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()237–247apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error()238–246apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error()238–246apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error()238–246apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error()238–246apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)238–245apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)238–245apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)238–248apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)239–246apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null239–252apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null239–252apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null239–251apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null240–250apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error()240–251apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error()240–251apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error()240–251apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error()240–251apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)240–250apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)240–250apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)241–249apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null241–251apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null241–250apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null241–250apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)241–251apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)242–250apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)242–250apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()242–249apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()242–249apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()242–249apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()242–249apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null242–255apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null243–253apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)243–254apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null243–256apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null243–255apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null243–255apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null244–254apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null244–254apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)244–255apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)244–251apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null244–253apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()244–254apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()244–254apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()244–254apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()244–254apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error()245–253apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error()245–253apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)245–252apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null245–258apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null245–254apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)246–253apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)246–253apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null246–259apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null246–259apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null246–258apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null247–257apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error()247–258apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null247–257apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error()247–258apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null247–256apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)247–257apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null247–259apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null248–258apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null248–257apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null248–257apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)248–258apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)248–258apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)249–255apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()249–256apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()249–256apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null249–262apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null249–262apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null249–261apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null250–260apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null250–260apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null250–263apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null250–262apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null250–262apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null251–261apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root)251–258apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null251–260apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error()251–261apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null251–260apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error()251–261apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null252–265apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null252–265apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null252–261apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)253–260apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null253–266apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null253–265apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null253–265apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null254–264apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null254–264apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null254–264apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null254–264apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null254–263apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null254–263apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null254–266apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null255–264apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path)255–265apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null256–266apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null256–269apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null256–269apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null256–269apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null256–269apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null256–268apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null256–268apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null257–267apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null257–269apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null258–268apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null258–268apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null258–267apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null258–267apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null258–267apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null258–267apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null258–271apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null259–272apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null260–270apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null260–270apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null260–273apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null260–269apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null260–269apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null260–272apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null260–272apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null260–272apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null260–272apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null261–271apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null261–271apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null261–270apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null262–271apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null262–271apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null262–275apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null262–275apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null262–274apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null263–273apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null263–276apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null263–276apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null263–275apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null264–274apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null264–273apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null264–273apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null264–276apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null264–276apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null265–275apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null265–274apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null265–274apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null265–278apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null266–276apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null266–279apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null266–278apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null266–278apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null267–277apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null267–277apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null267–276apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null267–276apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null267–279apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null267–279apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null268–281apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null268–277apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null269–278apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null269–282apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null269–282apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null269–281apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null270–280apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null270–280apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null270–279apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null270–282apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null271–281apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null271–280apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null271–280apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null271–283apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null272–285apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null272–285apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null272–284apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null273–283apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null273–283apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null273–286apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null273–285apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null273–285apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null274–284apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null274–283apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null274–283apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null275–288apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null275–288apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null275–284apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null276–289apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null276–288apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null276–288apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null277–287apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null277–287apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null277–287apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null277–287apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null277–286apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null277–286apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null277–289apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null278–287apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null279–292apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null279–292apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null279–292apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null279–292apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null279–291apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null279–291apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null280–290apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null280–292apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null281–291apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null281–291apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null281–290apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null281–290apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null281–290apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null281–290apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null282–295apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null283–296apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null283–292apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null283–295apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null283–295apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null283–295apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null283–295apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null284–294apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null284–294apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null284–293apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null285–294apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null285–294apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null286–299apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null286–299apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null286–298apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null287–299apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null287–299apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null288–296apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null288–297apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null288–297apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null290–299apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null290–302apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null290–302apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null292–301apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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()
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null294–306apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), 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-dev380193–304302 fewer instructions than PHP 8.5
8.5382193–30630
8.4382193–306309 fewer instructions than PHP 8.3
8.3391199–31530
8.2391199–31530
8.1391199–31530
7.4391199–31530

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 310 (+25 into the body)

    Filters whether JSONP is enabled for the REST API.

  2. do_action( rest_enabled )filter_deprecatedline 342 (+57 into the body)

    Filters whether the REST API is enabled.

  3. apply_filters( rest_exposed_cors_headers )filterline 406 (+121 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 432 (+147 into the body)

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

  5. apply_filters( rest_post_dispatch )filterline 462 (+177 into the body)

    Filters the REST API response.

  6. apply_filters( rest_send_nocache_headers )filterline 485 (+200 into the body)

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

  7. apply_filters( rest_pre_serve_request )filterline 515 (+230 into the body)

    Filters whether the REST API request has already been served.

  8. apply_filters( rest_pre_echo_response )filterline 538 (+253 into the body)

    Filters the REST API response.

Uses · 31

Show all 31

Source code

	public function serve_request( $path = null ) {		/* @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;			} 			if ( ! wp_check_jsonp_callback( $jsonp_callback ) ) {				echo $this->json_error( 'rest_callback_invalid', __( 'Invalid JSONP callback function.' ), 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.7.7 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.