WP_REST_Server::serve_request( string $path = null ): null|false
- Since
- 4.4.0
- Source
wp-includes/rest-api/class-wp-rest-server.php:285
Description
Matches the current server URI to a route and runs the first matching callback then outputs a JSON representation of the returned value.
Compatibility
- WordPress
- since 4.4.0
- PHP
- 7.4–8.6-dev
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0), and compiles on PHP 7.4 through 8.6-dev.
Parameters
$pathstringoptional- The request route. If not set,
$_SERVER['PATH_INFO']will be used.
Default null.Default:null
Return value
null|false- Null if not served and a HEAD request, false otherwise.
Performance profile
How much work a call to WP_REST_Server::serve_request() does, and what it touches: the algorithmic scaling, the Zend instruction count per call across PHP versions, the hooks it hands control to, and the core code that calls it. Measured from the compiled opcodes, not a stopwatch, so every number is identical on any machine running the same PHP version, and every function in core is ranked by cost.
- Cost class
- Heavy
- Scaling
- Scales with input
- Instructions
- 193–306
- 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 382.
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 |
|---|---|---|
!($current_user instanceof) && !isset($value) && empty($api_root) | 193–199 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) | 195–204 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) | 197–203 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() | 197–203 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() | 197–203 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 197–202 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) | 199–208 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() | 199–208 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() | 199–208 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 199–207 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() | 201–207 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() | 201–207 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
372 further outcomes, up to 306 instructions
!($current_user instanceof) && !isset($value) && empty($api_root) | 201–207 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 201–206 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 201–206 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 201–206 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && empty($api_root) | 203–209 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() | 203–212 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() | 203–212 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && !isset($value) && empty($api_root) | 203–212 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 203–211 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 203–211 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 203–211 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && empty($api_root) | 205–214 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) | 205–211 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 205–210 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 205–210 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 205–210 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && empty($api_root) | 207–213 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && is_wp_error() | 207–213 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() | 207–213 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 207–212 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) | 207–216 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 207–215 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 207–215 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 207–215 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && empty($api_root) | 209–218 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && is_wp_error() | 209–218 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() | 209–218 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 209–217 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 209–214 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) | 210–216 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && empty($api_root) && is_wp_error() | 211–217 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() | 211–217 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) | 211–217 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 211–216 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 211–216 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 211–216 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 211–219 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) | 212–221 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && empty($api_root) && is_wp_error() | 213–222 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() | 213–222 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) | 213–222 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 213–221 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 213–221 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 213–221 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && empty($api_root) | 214–220 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && is_wp_error() | 214–220 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() | 214–220 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 214–219 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && empty($api_root) | 215–221 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 215–220 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 215–220 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 215–220 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && empty($api_root) | 216–225 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && is_wp_error() | 216–225 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() | 216–225 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 216–224 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) | 217–225 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) | 217–226 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 217–225 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 217–225 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 217–225 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && empty($api_root) && is_wp_error() | 218–224 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() | 218–224 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) | 218–224 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 218–223 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 218–223 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 218–223 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) | 219–230 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 219–224 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && is_wp_error() | 220–229 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() | 220–229 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) | 220–225 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 220–228 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 220–228 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 220–228 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() | 221–229 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() | 221–229 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 221–228 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 221–229 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) | 222–226 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 222–227 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 222–227 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 222–227 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() | 223–234 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() | 223–234 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 223–233 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) | 224–232 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) | 224–229 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 224–232 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 224–232 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 224–232 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) | 225–233 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 225–232 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 225–232 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) | 226–237 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 226–231 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) | 227–235 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) | 227–238 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 227–237 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 227–237 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && is_wp_error() | 228–236 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() | 228–236 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 228–235 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 228–236 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method() |
!($current_user instanceof) && empty($api_root) | 229–240 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 229–236 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && is_wp_error() | 230–241 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() | 230–241 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 230–240 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && is_wp_error() | 231–239 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() | 231–239 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 231–238 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 231–241 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) | 232–240 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 232–239 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 232–239 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null | 233–243 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && is_wp_error() | 233–244 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() | 233–244 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 233–243 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) | 234–242 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) | 234–242 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) | 234–245 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 234–244 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 234–244 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) | 235–243 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 235–242 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 235–242 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null | 235–248 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) | 236–247 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) | 236–247 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 236–243 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 237–247 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 237–247 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) | 237–248 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 237–246 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 237–247 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 237–247 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && is_wp_error() | 238–246 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && is_wp_error() | 238–246 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() | 238–246 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() | 238–246 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 238–245 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 238–245 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 238–248 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 239–246 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 239–252 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 239–252 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 239–251 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 240–250 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && is_wp_error() | 240–251 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && is_wp_error() | 240–251 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() | 240–251 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() | 240–251 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 240–250 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 240–250 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) | 241–249 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null | 241–251 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 241–250 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 241–250 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 241–251 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) | 242–250 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) | 242–250 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 242–249 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 242–249 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 242–249 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 242–249 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 242–255 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 243–253 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) | 243–254 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null | 243–256 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 243–255 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 243–255 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 244–254 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 244–254 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) | 244–255 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) | 244–251 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 244–253 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 244–254 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 244–254 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 244–254 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 244–254 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && is_wp_error() | 245–253 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() | 245–253 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 245–252 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 245–258 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 245–254 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 246–253 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 246–253 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 246–259 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 246–259 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 246–258 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 247–257 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && is_wp_error() | 247–258 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 247–257 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() | 247–258 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 247–256 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 247–257 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 247–259 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 248–258 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 248–257 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 248–257 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 248–258 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 248–258 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) | 249–255 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 249–256 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 249–256 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 249–262 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 249–262 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 249–261 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 250–260 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 250–260 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 250–263 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 250–262 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 250–262 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 251–261 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) | 251–258 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 251–260 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() | 251–261 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 251–260 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() | 251–261 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 252–265 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 252–265 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 252–261 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 253–260 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 253–266 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 253–265 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 253–265 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 254–264 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 254–264 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 254–264 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 254–264 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 254–263 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 254–263 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 254–266 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 255–264 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) | 255–265 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters() |
!($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null | 256–266 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 256–269 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 256–269 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 256–269 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 256–269 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 256–268 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 256–268 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 257–267 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 257–269 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 258–268 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 258–268 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 258–267 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 258–267 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 258–267 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 258–267 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null | 258–271 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 259–272 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 260–270 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 260–270 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 260–273 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 260–269 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 260–269 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 260–272 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 260–272 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 260–272 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 260–272 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 261–271 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 261–271 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 261–270 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 262–271 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 262–271 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && !isset($value) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 262–275 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && !isset($value) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 262–275 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 262–274 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 263–273 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 263–276 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 263–276 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 263–275 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null | 264–274 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 264–273 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 264–273 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 264–276 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 264–276 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 265–275 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 265–274 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 265–274 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 265–278 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 266–276 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && !isset($value) && empty($api_root) && $code !== 204 && $result !== null | 266–279 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 266–278 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 266–278 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 267–277 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 267–277 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 267–276 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 267–276 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 267–279 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 267–279 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 268–281 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 268–277 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 269–278 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 269–282 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 269–282 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 269–281 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 270–280 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 270–280 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 270–279 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 270–282 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 271–281 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 271–280 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 271–280 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 271–283 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error() |
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 272–285 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 272–285 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 272–284 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 273–283 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 273–283 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 273–286 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 273–285 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 273–285 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 274–284 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 274–283 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 274–283 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 275–288 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 275–288 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 275–284 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 276–289 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 276–288 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 276–288 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 277–287 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 277–287 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 277–287 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 277–287 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 277–286 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 277–286 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 277–289 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 278–287 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 279–292 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 279–292 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 279–292 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 279–292 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 279–291 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 279–291 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 280–290 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 280–292 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 281–291 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 281–291 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 281–290 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 281–290 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 281–290 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 281–290 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 282–295 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 283–296 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 283–292 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 283–295 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 283–295 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 283–295 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 283–295 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 284–294 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 284–294 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 284–293 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 285–294 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 285–294 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && is_wp_error() && $code !== 204 && $result !== null | 286–299 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !is_wp_error() && $code !== 204 && $result !== null | 286–299 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 286–298 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 287–299 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 287–299 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 288–296 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 288–297 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 288–297 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && $code !== 204 && $result !== null | 290–299 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && is_wp_error() && $code !== 204 && $result !== null | 290–302 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && !is_wp_error() && $code !== 204 && $result !== null | 290–302 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), wp_get_nocache_headers(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 292–301 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->set_body(), ->set_method(), apply_filters(), ->send_header(), apply_filters(), ->send_header(), ->check_authentication(), is_wp_error(), ->dispatch(), rest_ensure_response(), is_wp_error(), ->error_to_response(), rest_ensure_response(), apply_filters(), rest_parse_embed_param(), ->envelope_response(), ->get_headers(), ->send_headers(), ->get_status(), ->set_status(), is_user_logged_in(), apply_filters(), apply_filters(), ->get_method(), rest_parse_embed_param(), ->response_to_data(), apply_filters(), ->get_json_encode_options(), wp_json_encode(), ->get_json_last_error(), ->set_status(), ->error_to_response(), ->get_json_encode_options(), wp_json_encode() |
!($current_user instanceof) && empty($api_root) && !empty($path) && $code !== 204 && $result !== null | 294–306 | apply_filters(), get_option(), ->send_header(), ->send_header(), get_rest_url(), ->send_header(), __(), sprintf(), apply_filters_deprecated(), wp_unslash(), ->set_query_params(), wp_unslash(), ->set_body_params(), ->set_file_params(), wp_unslash(), ->get_headers(), ->set_headers(), ::get_raw_data(), ->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 | 380 | 193–304 | 30 | 2 fewer instructions than PHP 8.5 |
| 8.5 | 382 | 193–306 | 30 | |
| 8.4 | 382 | 193–306 | 30 | 9 fewer instructions than PHP 8.3 |
| 8.3 | 391 | 199–315 | 30 | |
| 8.2 | 391 | 199–315 | 30 | |
| 8.1 | 391 | 199–315 | 30 | |
| 7.4 | 391 | 199–315 | 30 |
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 310 (+25 into the body)
Filters whether JSONP is enabled for the REST API.
- do_action( rest_enabled )filter_deprecatedline 342 (+57 into the body)
Filters whether the REST API is enabled.
- apply_filters( rest_exposed_cors_headers )filterline 406 (+121 into the body)
Filters the list of response headers that are exposed to REST API CORS requests.
- apply_filters( rest_allowed_cors_headers )filterline 432 (+147 into the body)
Filters the list of request headers that are allowed for REST API CORS requests.
- apply_filters( rest_post_dispatch )filterline 462 (+177 into the body)
Filters the REST API response.
- apply_filters( rest_send_nocache_headers )filterline 485 (+200 into the body)
Filters whether to send no-cache headers on a REST API request.
- apply_filters( rest_pre_serve_request )filterline 515 (+230 into the body)
Filters whether the REST API request has already been served.
- apply_filters( rest_pre_echo_response )filterline 538 (+253 into the body)
Filters the REST API response.
Uses · 31
- 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 31
- 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::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 ) { /* @var WP_User|null $current_user */ global $current_user; if ( $current_user instanceof WP_User && ! $current_user->exists() ) { /* * If there is no current user authenticated via other means, clear * the cached lack of user, so that an authenticate check can set it * properly. * * This is done because for authentications such as Application * Passwords, we don't want it to be accepted unless the current HTTP * request is a REST API request, which can't always be identified early * enough in evaluation. */ $current_user = null; } /** * Filters whether JSONP is enabled for the REST API. * * @since 4.4.0 * * @param bool $jsonp_enabled Whether JSONP is enabled. Default true. */ $jsonp_enabled = apply_filters( 'rest_jsonp_enabled', true ); $jsonp_callback = false; if ( isset( $_GET['_jsonp'] ) ) { $jsonp_callback = $_GET['_jsonp']; } $content_type = ( $jsonp_callback && $jsonp_enabled ) ? 'application/javascript' : 'application/json'; $this->send_header( 'Content-Type', $content_type . '; charset=' . get_option( 'blog_charset' ) ); $this->send_header( 'X-Robots-Tag', 'noindex' ); $api_root = get_rest_url(); if ( ! empty( $api_root ) ) { $this->send_header( 'Link', '<' . sanitize_url( $api_root ) . '>; rel="https://api.w.org/"' ); } /* * Mitigate possible JSONP Flash attacks. * * https://miki.it/blog/2014/7/8/abusing-jsonp-with-rosetta-flash/ */ $this->send_header( 'X-Content-Type-Options', 'nosniff' ); /** * Filters whether the REST API is enabled. * * @since 4.4.0 * @deprecated 4.7.0 Use the {@see 'rest_authentication_errors'} filter to * restrict access to the REST API. * * @param bool $rest_enabled Whether the REST API is enabled. Default true. */ apply_filters_deprecated( 'rest_enabled', array( true ), '4.7.0', 'rest_authentication_errors', sprintf( /* translators: %s: rest_authentication_errors */ __( 'The REST API can no longer be completely disabled, the %s filter can be used to restrict access to the API, instead.' ), 'rest_authentication_errors' ) ); if ( $jsonp_callback ) { if ( ! $jsonp_enabled ) { echo $this->json_error( 'rest_callback_disabled', __( 'JSONP support is disabled on this site.' ), 400 ); return false; } if ( ! wp_check_jsonp_callback( $jsonp_callback ) ) { echo $this->json_error( 'rest_callback_invalid', __( 'Invalid JSONP callback function.' ), 400 ); return false; } }Changelog
Introduced in 4.4.0. One change between 6.7.7 and 7.1.0.
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.7.7 tag, from
src/wp-includes/rest-api/class-wp-rest-server.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it. - Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.