WP_REST_Server::serve_request( string|null $path = null ): null|false
- Since
- 4.4.0
- Source
wp-includes/rest-api/class-wp-rest-server.php:285
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
$pathstring|nulloptional- 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
- Scaling
- Scales with input
- Instructions
- 196–309
- Plugin surface
- 8 hooks
- Called by
- 0
Reads stored settings via get_option(), cached per request but not free on a cold cache.
The body loops, so the work grows with what you pass in.
Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 386.
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.
Nothing in core calls this; the cost is only what you spend yourself.
What it touches
- hookthird-party callbacks
apply_filters()called directly - optionoption read or write
get_option()called directly - cacheobject cache
wp_cache_get()one call below WP_REST_Server::serve_request() - serializeserialisation
maybe_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.
| When | Instructions | Calls it makes |
|---|---|---|
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) | 196–202 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) | 198–207 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) | 200–206 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() | 200–206 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() | 200–206 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 200–205 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) | 202–211 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() | 202–211 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() | 202–211 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 202–210 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() | 204–210 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() | 204–210 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
372 further outcomes, up to 309 instructions
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) | 204–210 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 204–209 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 204–209 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 204–209 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 206–212 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() | 206–215 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() | 206–215 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) | 206–215 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 206–214 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 206–214 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 206–214 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 208–217 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) | 208–214 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 208–213 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 208–213 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 208–213 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 210–216 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() | 210–216 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() | 210–216 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 210–215 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) | 210–219 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 210–218 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 210–218 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 210–218 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 212–221 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() | 212–221 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() | 212–221 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 212–220 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 212–217 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 213–219 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() | 214–220 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() | 214–220 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 214–220 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 214–219 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 214–219 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 214–219 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 214–222 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 215–224 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() | 216–225 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() | 216–225 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 216–225 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 216–224 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 216–224 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 216–224 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 217–223 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() | 217–223 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() | 217–223 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 217–222 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 218–224 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 218–223 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 218–223 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 218–223 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 219–228 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() | 219–228 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() | 219–228 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 219–227 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) | 220–228 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 220–229 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 220–228 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 220–228 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 220–228 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() | 221–227 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() | 221–227 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 221–227 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 221–226 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 221–226 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 221–226 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) | 222–233 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 222–227 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() | 223–232 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() | 223–232 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 223–228 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 223–231 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 223–231 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 223–231 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() | 224–232 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() | 224–232 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 224–231 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 224–232 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 225–229 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 225–230 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 225–230 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 225–230 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() | 226–237 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() | 226–237 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 226–236 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 227–235 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 227–232 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 227–235 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 227–235 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 227–235 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) | 228–236 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 228–235 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 228–235 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 229–240 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 229–234 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 230–238 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) | 230–241 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 230–240 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 230–240 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() | 231–239 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() | 231–239 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 231–238 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 231–239 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 232–243 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 232–239 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() | 233–244 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() | 233–244 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 233–243 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() | 234–242 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() | 234–242 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 234–241 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 234–244 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 235–243 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 235–242 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 235–242 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null | 236–246 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() | 236–247 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() | 236–247 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 236–246 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 237–245 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 237–245 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 237–248 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 237–247 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 237–247 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 238–246 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 238–245 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 238–245 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null | 238–251 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 239–250 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 239–250 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 239–246 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 240–250 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 240–250 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 240–251 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 240–249 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 240–250 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 240–250 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() | 241–249 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() | 241–249 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() | 241–249 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() | 241–249 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 241–248 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 241–248 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 241–251 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 242–249 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 242–255 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 242–255 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 242–254 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 243–253 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() | 243–254 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() | 243–254 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() | 243–254 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() | 243–254 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 243–253 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 243–253 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 244–252 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null | 244–254 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 244–253 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 244–253 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 244–254 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 245–253 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 245–253 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 245–252 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 245–252 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 245–252 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 245–252 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 245–258 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 246–256 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 246–257 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null | 246–259 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 246–258 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 246–258 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 247–257 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 247–257 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 247–258 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 247–254 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 247–256 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 247–257 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 247–257 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 247–257 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 247–257 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() | 248–256 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() | 248–256 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 248–255 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 248–261 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 248–257 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 249–256 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 249–256 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 249–262 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 249–262 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 249–261 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 250–260 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() | 250–261 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 250–260 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() | 250–261 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 250–259 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 250–260 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 250–262 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 251–261 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 251–260 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 251–260 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 251–261 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 251–261 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 252–258 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 252–259 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 252–259 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 252–265 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 252–265 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 252–264 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 253–263 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 253–263 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 253–266 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 253–265 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 253–265 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 254–264 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) | 254–261 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 254–263 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 254–264 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 254–263 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 254–264 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 255–268 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 255–268 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 255–264 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 256–263 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 256–269 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 256–268 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 256–268 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 257–267 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 257–267 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 257–267 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 257–267 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 257–266 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 257–266 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 257–269 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 258–267 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) | 258–268 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null | 259–269 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 259–272 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 259–272 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 259–272 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 259–272 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 259–271 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 259–271 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 260–270 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 260–272 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 261–271 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 261–271 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 261–270 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 261–270 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 261–270 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 261–270 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null | 261–274 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 262–275 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 263–273 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 263–273 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 263–276 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 263–272 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 263–272 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 263–275 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 263–275 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 263–275 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 263–275 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 264–274 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 264–274 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 264–273 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 265–274 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 265–274 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 265–278 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 265–278 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 265–277 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 266–276 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 266–279 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 266–279 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 266–278 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null | 267–277 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 267–276 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 267–276 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 267–279 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 267–279 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 268–278 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 268–277 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 268–277 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 268–281 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 269–279 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null | 269–282 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 269–281 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 269–281 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 270–280 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 270–280 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 270–279 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 270–279 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 270–282 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 270–282 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 271–284 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 271–280 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 272–281 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 272–285 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 272–285 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 272–284 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 273–283 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 273–283 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 273–282 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 273–285 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 274–284 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 274–283 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 274–283 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 274–286 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 275–288 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 275–288 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 275–287 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 276–286 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 276–286 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 276–289 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 276–288 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 276–288 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 277–287 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 277–286 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 277–286 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 278–291 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 278–291 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 278–287 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 279–292 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 279–291 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 279–291 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 280–290 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 280–290 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 280–290 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 280–290 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 280–289 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 280–289 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 280–292 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 281–290 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 282–295 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 282–295 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 282–295 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 282–295 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 282–294 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 282–294 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 283–293 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 283–295 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 284–294 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 284–294 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 284–293 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 284–293 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 284–293 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 284–293 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 285–298 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 286–299 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 286–295 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 286–298 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 286–298 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 286–298 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 286–298 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 287–297 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 287–297 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 287–296 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 288–297 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 288–297 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 289–302 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 289–302 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 289–301 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 290–302 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 290–302 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 291–299 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 291–300 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 291–300 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 293–302 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 293–305 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 293–305 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 295–304 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!->is_dispatching() && !($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 297–309 | ->is_dispatching(), apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
This body has more branch combinations than are worth enumerating, so the table covers the outcomes found first rather than every one that exists.
Across PHP versions
| PHP | Compiled | Executed | Branches | Notes |
|---|---|---|---|---|
| 8.6-dev | 384 | 196–307 | 31 | 2 fewer instructions than PHP 8.5 |
| 8.5 | 386 | 196–309 | 31 | |
| 8.4 | 386 | 196–309 | 31 | 9 fewer instructions than PHP 8.3 |
| 8.3 | 395 | 202–318 | 31 | |
| 8.2 | 395 | 202–318 | 31 | |
| 8.1 | 395 | 202–318 | 31 | |
| 7.4 | 395 | 202–318 | 31 |
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:
- apply_filters( rest_jsonp_enabled )filterline 316 (+31 into the body)
Filters whether JSONP is enabled for the REST API.
- do_action( rest_enabled )filter_deprecatedline 348 (+63 into the body)
Filters whether the REST API is enabled.
- apply_filters( rest_exposed_cors_headers )filterline 412 (+127 into the body)
Filters the list of response headers that are exposed to REST API CORS requests.
- apply_filters( rest_allowed_cors_headers )filterline 438 (+153 into the body)
Filters the list of request headers that are allowed for REST API CORS requests.
- apply_filters( rest_post_dispatch )filterline 468 (+183 into the body)
Filters the REST API response.
- apply_filters( rest_send_nocache_headers )filterline 491 (+206 into the body)
Filters whether to send no-cache headers on a REST API request.
- apply_filters( rest_pre_serve_request )filterline 521 (+236 into the body)
Filters whether the REST API request has already been served.
- apply_filters( rest_pre_echo_response )filterline 544 (+259 into the body)
Filters the REST API response.
Uses · 32
- apply_filters()Calls the callback functions that have been added to a filter hook.
- get_option()Retrieves an option value based on an option name.
- get_rest_url()Retrieves the URL to a REST endpoint on a site.
- sanitize_url()Sanitizes a URL for database or redirect usage.
- apply_filters_deprecated()Fires functions attached to a deprecated filter hook.
- __()Retrieves the translation of $text.
- wp_check_jsonp_callback()Checks that a JSONP callback is a valid JavaScript callback name.
- wp_unslash()Removes slashes from a string or recursively removes slashes from strings within an array.
- is_wp_error()Checks whether the given variable is a WordPress Error.
- rest_ensure_response()Ensures a REST response is a response object (for consistency).
- rest_parse_embed_param()Parses the "_embed" parameter into the list of resources to embed.
- is_user_logged_in()Determines whether the current visitor is a logged in user.
Show all 32
- str_starts_with()Polyfill for `str_starts_with()` function added in PHP 8.0.
- wp_get_nocache_headers()Gets the HTTP header information to prevent caching.
- wp_json_encode()Encodes a variable into JSON, with some confidence checks.
- WP_REST_Server::is_dispatching()Returns whether the REST server is currently dispatching / responding to a request.
- WP_REST_Server::send_header()Sends an HTTP header.
- WP_REST_Server::json_error()Retrieves an appropriate error representation in JSON.
- WP_REST_Request::__construct()Constructor.
- WP_REST_Server::get_headers()Extracts headers from a PHP-style $_SERVER array.
- WP_REST_Server::get_raw_data()Retrieves the raw request entity (body).
- WP_REST_Server::check_authentication()Checks the authentication headers if supplied.
- WP_REST_Server::dispatch()Matches the request to a callback and call it.
- WP_REST_Server::error_to_response()Converts an error to a response object.
- WP_REST_Server::envelope_response()Wraps the response in an envelope.
- WP_REST_Server::send_headers()Sends multiple HTTP headers.
- WP_REST_Server::set_status()Sends an HTTP status code.
- WP_REST_Server::remove_header()Removes an HTTP header from the current response.
- WP_REST_Server::response_to_data()Converts a response to data to send.
- WP_REST_Server::get_json_encode_options()Gets the encoding options passed to {@see wp_json_encode}.
- WP_REST_Server::get_json_last_error()Returns if an error occurred during most recent JSON encode/decode.
- WP_Error::__construct()Initializes the error.
Source code
public function serve_request( $path = null ) { // Refuse to start a fresh top-level REST cycle while another dispatch // is already in flight. Internal sub-requests must use dispatch(). if ( $this->is_dispatching() ) { return false; } /* @var WP_User|null $current_user */ global $current_user; if ( $current_user instanceof WP_User && ! $current_user->exists() ) { /* * If there is no current user authenticated via other means, clear * the cached lack of user, so that an authenticate check can set it * properly. * * This is done because for authentications such as Application * Passwords, we don't want it to be accepted unless the current HTTP * request is a REST API request, which can't always be identified early * enough in evaluation. */ $current_user = null; } /** * Filters whether JSONP is enabled for the REST API. * * @since 4.4.0 * * @param bool $jsonp_enabled Whether JSONP is enabled. Default true. */ $jsonp_enabled = apply_filters( 'rest_jsonp_enabled', true ); $jsonp_callback = false; if ( isset( $_GET['_jsonp'] ) ) { $jsonp_callback = $_GET['_jsonp']; } $content_type = ( $jsonp_callback && $jsonp_enabled ) ? 'application/javascript' : 'application/json'; $this->send_header( 'Content-Type', $content_type . '; charset=' . get_option( 'blog_charset' ) ); $this->send_header( 'X-Robots-Tag', 'noindex' ); $api_root = get_rest_url(); if ( ! empty( $api_root ) ) { $this->send_header( 'Link', '<' . sanitize_url( $api_root ) . '>; rel="https://api.w.org/"' ); } /* * Mitigate possible JSONP Flash attacks. * * https://miki.it/blog/2014/7/8/abusing-jsonp-with-rosetta-flash/ */ $this->send_header( 'X-Content-Type-Options', 'nosniff' ); /** * Filters whether the REST API is enabled. * * @since 4.4.0 * @deprecated 4.7.0 Use the {@see 'rest_authentication_errors'} filter to * restrict access to the REST API. * * @param bool $rest_enabled Whether the REST API is enabled. Default true. */ apply_filters_deprecated( 'rest_enabled', array( true ), '4.7.0', 'rest_authentication_errors', sprintf( /* translators: %s: rest_authentication_errors */ __( 'The REST API can no longer be completely disabled, the %s filter can be used to restrict access to the API, instead.' ), 'rest_authentication_errors' ) ); if ( $jsonp_callback ) { if ( ! $jsonp_enabled ) { echo $this->json_error( 'rest_callback_disabled', __( 'JSONP support is disabled on this site.' ), 400 ); return false; }Changelog
Introduced in 4.4.0. One change between 6.7.7 and 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
$path retyped from string to string|null.verified against sourceAbout this page
- Parsed data
- Generated from the wordpress-develop 6.9.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.