WP_Error::__construct( string|int $code = '', string $message = '', mixed $data = '' )
Initializes the error.
Description
If $code
is empty, the other parameters will be ignored.
When $code
is not empty, $message
will be used even if it is empty. The $data
parameter will be used only if it is not empty.
Though the class is constructed with a single error code and message, multiple codes can be added using the add()
method.
Parameters
- $code
-
(Optional) Error code.
Default value: ''
- $message
-
(Optional) Error message.
Default value: ''
- $data
-
(Optional) Error data.
Default value: ''
Source
File: wp-includes/class-wp-error.php
public function __construct( $code = '', $message = '', $data = '' ) {
if ( empty($code) )
return;
$this->errors[$code][] = $message;
if ( ! empty($data) )
$this->error_data[$code] = $data;
}
Related
Uses
Uses | Description |
---|---|
wp-includes/class-wp-error.php: WP_Error::add() |
Adds an error or appends an additional message to an existing error. |
Used By
Used By | Description |
---|---|
wp-admin/includes/class-wp-site-health.php: WP_Site_Health::get_cron_tasks() |
Populates the list of cron events and store them to a class-wide variable. |
wp-admin/includes/class-wp-site-health.php: WP_Site_Health::check_for_page_caching() |
Checks if site has page cache enabled or not. |
wp-admin/includes/user.php: wp_is_authorize_application_password_request_valid() |
Checks if the Authorize Application Password request is valid. |
wp-admin/includes/user.php: wp_is_authorize_application_redirect_url_valid() |
Validates the redirect URL protocol scheme. The protocol can be anything except http and javascript. |
wp-admin/includes/plugin.php: resume_plugin() |
Tries to resume a single plugin. |
wp-admin/includes/plugin.php: validate_plugin_requirements() |
Validates the plugin requirements for ClassicPress version and PHP version. |
wp-admin/includes/class-language-pack-upgrader.php: Language_Pack_Upgrader::clear_destination() |
Clears existing translations where this item is going to be installed into. |
wp-admin/includes/translation-install.php: maybe_upgrade_translations() |
Download new language packs after core update. |
wp-admin/includes/file.php: move_dir() |
Initializes and connects the ClassicPress Filesystem Abstraction classes. |
wp-admin/includes/file.php: verify_file_signature() |
Verifies the contents of a file against its ED25519 signature. |
wp-admin/includes/image.php: wp_update_image_subsizes() |
If any of the currently registered image sub-sizes are missing, create them and update the image meta data. |
wp-admin/includes/theme.php: resume_theme() |
Tries to resume a single theme. |
wp-includes/class-wp-recovery-mode-email-service.php: WP_Recovery_Mode_Email_Service::maybe_send_recovery_mode_email() |
Sends the recovery mode email if the rate limit has not been sent. |
wp-includes/https-detection.php: wp_update_https_detection_errors() |
Runs a remote HTTPS request to detect whether HTTPS supported, and stores potential errors. |
wp-includes/class-wp-application-passwords.php: WP_Application_Passwords::create_new_application_password() |
Creates a new application password. |
wp-includes/class-wp-application-passwords.php: WP_Application_Passwords::update_application_password() |
Updates an application password. |
wp-includes/class-wp-application-passwords.php: WP_Application_Passwords::record_application_password_usage() |
Records that an application password has been used. |
wp-includes/class-wp-application-passwords.php: WP_Application_Passwords::delete_application_password() |
Deletes an application password. |
wp-includes/class-wp-application-passwords.php: WP_Application_Passwords::delete_all_application_passwords() |
Deletes all application passwords for the given user. |
wp-includes/class-wp-recovery-mode-key-service.php: WP_Recovery_Mode_Key_Service::validate_recovery_mode_key() |
Verifies if the recovery mode key is correct. |
wp-includes/class-wp-recovery-mode-cookie-service.php: WP_Recovery_Mode_Cookie_Service::validate_cookie() |
Validates the recovery mode cookie. |
wp-includes/class-wp-recovery-mode-cookie-service.php: WP_Recovery_Mode_Cookie_Service::get_session_id_from_cookie() |
Gets the session identifier from the cookie. |
wp-includes/class-wp-recovery-mode-cookie-service.php: WP_Recovery_Mode_Cookie_Service::parse_cookie() |
Parses the cookie into its four parts. |
wp-includes/user.php: wp_authenticate_application_password() |
Authenticates the user using an application password. |
wp-includes/class-wp-recovery-mode.php: WP_Recovery_Mode::handle_error() |
Handles a fatal error occurring. |
wp-includes/class-wp-image-editor-imagick.php: WP_Image_Editor_Imagick::make_subsize() |
Create an image sub-size and return the image meta data value for it. |
wp-includes/class-wp-image-editor-imagick.php: WP_Image_Editor_Imagick::maybe_exif_rotate() |
Check if a JPEG image has EXIF Orientation tag and rotate it if needed. |
wp-includes/class-wp-image-editor-imagick.php: WP_Image_Editor_Imagick::write_image() |
Writes an image to a file or stream. |
wp-includes/class-wp-fatal-error-handler.php: WP_Fatal_Error_Handler::display_default_error_template() |
Displays the default PHP error template. |
wp-includes/rest-api/class-wp-rest-server.php: WP_REST_Server::match_request_to_handler() |
Matches a request object to its handler. |
wp-includes/rest-api/class-wp-rest-server.php: WP_REST_Server::respond_to_request() |
Dispatches the request to the callback handler. |
wp-includes/rest-api/class-wp-rest-server.php: WP_REST_Server::serve_batch_request_v1() |
Serves the batch/v1 request. |
wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php: WP_REST_Search_Controller::get_items() |
Retrieves a collection of search results. |
wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php: WP_REST_Search_Controller::get_search_handler() |
Gets the search handler to handle the current request. |
wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php: WP_REST_Menu_Locations_Controller::get_items_permissions_check() |
Checks whether a given request has permission to read menu locations. |
wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php: WP_REST_Menu_Locations_Controller::get_item_permissions_check() |
Checks if a given request has access to read a menu location. |
wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php: WP_REST_Menu_Locations_Controller::get_item() |
Retrieves a specific menu location. |
wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php: WP_REST_Sidebars_Controller::get_item() |
Retrieves one sidebar from the collection. |
wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php: WP_REST_Sidebars_Controller::do_permissions_check() |
Checks if the user has permissions to make the request. |
wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php: WP_REST_Site_Health_Controller::get_directory_sizes() |
Gets the current directory sizes for this install. |
wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php: WP_REST_Attachments_Controller::edit_media_item_permissions_check() |
Checks if a given request has access to editing media. |
wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php: WP_REST_Attachments_Controller::edit_media_item() |
Applies edits to a media item and creates a new attachment record. |
wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php: WP_REST_Menus_Controller::check_has_read_only_access() |
Checks whether the current user has read permission for the endpoint. |
wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php: WP_REST_Menus_Controller::create_item() |
Creates a single term in a taxonomy. |
wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php: WP_REST_Menus_Controller::update_item() |
Updates a single term from a taxonomy. |
wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php: WP_REST_Menus_Controller::delete_item() |
Deletes a single term from a taxonomy. |
wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php: WP_REST_Menus_Controller::handle_locations() |
Updates the menu’s locations from a REST request. |
wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php: WP_REST_Menus_Controller::get_item_schema() |
Retrieves the term’s schema, conforming to JSON Schema. |
wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php: WP_REST_Autosaves_Controller::get_items_permissions_check() |
Checks if a given request has access to get autosaves. |
wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php: WP_REST_Autosaves_Controller::create_item_permissions_check() |
Checks if a given request has access to create an autosave revision. |
wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php: WP_REST_Autosaves_Controller::get_item() |
Get the autosave, if the ID is valid. |
wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php: WP_REST_Autosaves_Controller::create_post_autosave() |
Creates autosave for the specified post. |
wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php: WP_REST_Plugins_Controller::is_filesystem_available() |
Determine if the endpoints are available. |
wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php: WP_REST_Application_Passwords_Controller::get_items_permissions_check() |
Checks if a given request has access to get application passwords. |
wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php: WP_REST_Application_Passwords_Controller::get_item_permissions_check() |
Checks if a given request has access to get a specific application password. |
wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php: WP_REST_Application_Passwords_Controller::create_item_permissions_check() |
Checks if a given request has access to create application passwords. |
wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php: WP_REST_Application_Passwords_Controller::update_item_permissions_check() |
Checks if a given request has access to update application passwords. |
wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php: WP_REST_Application_Passwords_Controller::delete_items_permissions_check() |
Checks if a given request has access to delete all application passwords for a user. |
wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php: WP_REST_Application_Passwords_Controller::delete_item_permissions_check() |
Checks if a given request has access to delete a specific application password for a user. |
wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php: WP_REST_Application_Passwords_Controller::get_current_item_permissions_check() |
Checks if a given request has access to get the currently used application password for a user. |
wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php: WP_REST_Application_Passwords_Controller::get_current_item() |
Retrieves the application password being currently used for authentication of a user. |
wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php: WP_REST_Application_Passwords_Controller::do_permissions_check() |
Performs a permissions check for the request. |
wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php: WP_REST_Application_Passwords_Controller::get_user() |
Gets the requested user. |
wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php: WP_REST_Application_Passwords_Controller::get_application_password() |
Gets the requested application password for a user. |
wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php: WP_REST_Menu_Items_Controller::delete_item() |
Deletes a single menu item. |
wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php: WP_REST_Menu_Items_Controller::prepare_item_for_database() |
Prepares a single post for create or update. |
wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php: WP_REST_Menu_Items_Controller::get_item_schema() |
Retrieves the term’s schema, conforming to JSON Schema. |
wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php: WP_REST_Plugins_Controller::get_items_permissions_check() |
Checks if a given request has access to get plugins. |
wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php: WP_REST_Plugins_Controller::get_item_permissions_check() |
Checks if a given request has access to get a specific plugin. |
wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php: WP_REST_Plugins_Controller::check_read_permission() |
Checks if the given plugin can be viewed by the current user. |
wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php: WP_REST_Plugins_Controller::create_item_permissions_check() |
Checks if a given request has access to upload plugins. |
wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php: WP_REST_Plugins_Controller::create_item() |
Uploads a plugin and optionally activates it. |
wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php: WP_REST_Plugins_Controller::update_item_permissions_check() |
Checks if a given request has access to update a specific plugin. |
wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php: WP_REST_Plugins_Controller::delete_item_permissions_check() |
Checks if a given request has access to delete a specific plugin. |
wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php: WP_REST_Plugins_Controller::delete_item() |
Deletes one plugin from the site. |
wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php: WP_REST_Plugins_Controller::get_plugin_data() |
Gets the plugin header data for a plugin. |
wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php: WP_REST_Plugins_Controller::plugin_status_permission_check() |
Handle updating a plugin’s status. |
wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php: WP_REST_Plugins_Controller::handle_plugin_status() |
Handle updating a plugin’s status. |
wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php: WP_REST_Themes_Controller::get_items_permissions_check() |
Checks if a given request has access to read the theme. |
wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php: WP_REST_Themes_Controller::get_item_permissions_check() |
Checks if a given request has access to read the theme. |
wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php: WP_REST_Themes_Controller::check_read_active_theme_permission() |
Checks if a theme can be read. |
wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php: WP_REST_Themes_Controller::get_item() |
Retrieves a single theme. |
wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php: WP_REST_Menu_Items_Controller::check_has_read_only_access() |
Checks whether the current user has read permission for the endpoint. |
wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php: WP_REST_Menu_Items_Controller::create_item() |
Creates a single post. |
wp-includes/rest-api.php: rest_validate_null_value_from_schema() |
Validates a null value based on a schema. |
wp-includes/rest-api.php: rest_validate_boolean_value_from_schema() |
Validates a boolean value based on a schema. |
wp-includes/rest-api.php: rest_validate_object_value_from_schema() |
Validates an object value based on a schema. |
wp-includes/rest-api.php: rest_validate_array_value_from_schema() |
Validates an array value based on a schema. |
wp-includes/rest-api.php: rest_validate_number_value_from_schema() |
Validates a number value based on a schema. |
wp-includes/rest-api.php: rest_validate_string_value_from_schema() |
Validates a string value based on a schema. |
wp-includes/rest-api.php: rest_validate_integer_value_from_schema() |
Validates an integer value based on a schema. |
wp-includes/rest-api.php: rest_validate_enum() |
Validates that the given value is a member of the JSON Schema “enum”. |
wp-includes/rest-api.php: rest_format_combining_operation_error() |
Formats a combining operation error into a WP_Error object. |
wp-includes/rest-api.php: rest_get_combining_operation_error() |
Gets the error of combining operation. |
wp-includes/rest-api.php: rest_find_one_matching_schema() |
Finds the matching schema among the “oneOf” schemas. |
wp-includes/revision.php: wp_get_latest_revision_id_and_total_count() |
Returns the latest revision ID and count of revisions for a post. |
wp-includes/object-relationships.php: cp_object_relationship_exists() |
Check if a relationship exists between two recognized objects. |
wp-includes/object-relationships.php: cp_get_object_relationship_ids() |
Get IDs of all the recognized objects related to the known object. |
wp-includes/object-relationships.php: cp_delete_object_relationship() |
Delete a relationship between two recognized objects. |
wp-includes/class-wp-image-editor-gd.php: WP_Image_Editor_GD::make_subsize() |
Create an image sub-size and return the image meta data value for it. |
wp-includes/theme.php: register_theme_feature() |
Registers a theme feature for use in add_theme_support(). |
wp-includes/theme.php: validate_theme_requirements() |
Validates the theme requirements for WordPress version and PHP version. |
wp-includes/ms-site.php: wp_initialize_site() |
Runs the initialization routine for a given site. |
wp-includes/ms-site.php: wp_uninitialize_site() |
Runs the uninitialization routine for a given site. |
wp-includes/ms-site.php: wp_prepare_site_data() |
Prepares site data for insertion or update in the database. |
wp-includes/ms-site.php: wp_insert_site() |
Inserts a new site into the database. |
wp-includes/ms-site.php: wp_update_site() |
Updates a site in the database. |
wp-includes/ms-site.php: wp_delete_site() |
Deletes a site from the database. |
wp-signup.php: signup_blog() |
Shows a form for a user or visitor to sign up for a new site. |
wp-signup.php: show_blog_form() |
Generates and displays the Sign-up and Create Site forms. |
wp-signup.php: show_user_form() |
Displays the fields for the new user account registration form. |
wp-signup.php: signup_another_blog() |
Shows a form for returning users to sign up for another site. |
wp-signup.php: signup_user() |
Shows a form for a visitor to sign up for a new user account. |
wp-includes/user.php: retrieve_password() |
Handles sending a password retrieval email to a user. |
wp-login.php: login_header() |
Output the login page header. |
wp-includes/customize/class-wp-customize-custom-css-setting.php: WP_Customize_Custom_CSS_Setting::validate() |
Validate a received value for being valid CSS. |
wp-includes/customize/class-wp-customize-nav-menu-item-setting.php: WP_Customize_Nav_Menu_Item_Setting::sanitize() |
Sanitize an input. |
wp-includes/customize/class-wp-customize-nav-menu-item-setting.php: WP_Customize_Nav_Menu_Item_Setting::update() |
Creates/updates the nav_menu_item post for this setting. |
wp-includes/class-wp-image-editor-gd.php: WP_Image_Editor_GD::load() |
Loads image from $this->file into new GD Resource. |
wp-includes/class-wp-image-editor-gd.php: WP_Image_Editor_GD::resize() |
Resizes current image. |
wp-includes/class-wp-image-editor-gd.php: WP_Image_Editor_GD::_resize() | |
wp-includes/class-wp-image-editor-gd.php: WP_Image_Editor_GD::crop() |
Crops Image. |
wp-includes/class-wp-image-editor-gd.php: WP_Image_Editor_GD::rotate() |
Rotates current image counter-clockwise by $angle. |
wp-includes/class-wp-image-editor-gd.php: WP_Image_Editor_GD::flip() |
Flips current image. |
wp-includes/class-wp-image-editor-gd.php: WP_Image_Editor_GD::_save() | |
wp-includes/rest-api/fields/class-wp-rest-meta-fields.php: WP_REST_Meta_Fields::update_value() |
Updates meta values. |
wp-includes/rest-api/fields/class-wp-rest-meta-fields.php: WP_REST_Meta_Fields::delete_meta_value() |
Deletes a meta value for an object. |
wp-includes/rest-api/fields/class-wp-rest-meta-fields.php: WP_REST_Meta_Fields::update_multi_meta_value() |
Updates multiple meta values for an object. |
wp-includes/rest-api/fields/class-wp-rest-meta-fields.php: WP_REST_Meta_Fields::update_meta_value() |
Updates a meta value for an object. |
wp-includes/rest-api/class-wp-rest-request.php: WP_REST_Request::parse_json_params() |
Parses the JSON parameters. |
wp-includes/rest-api/class-wp-rest-request.php: WP_REST_Request::sanitize_params() |
Sanitizes (where possible) the params on the request. |
wp-includes/rest-api/class-wp-rest-request.php: WP_REST_Request::has_valid_params() |
Checks whether this request is valid according to its attributes. |
wp-includes/rest-api/class-wp-rest-response.php: WP_REST_Response::as_error() |
Retrieves a WP_Error object from the response. |
wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php: WP_REST_Comments_Controller::get_items_permissions_check() |
Checks if a given request has access to read comments. |
wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php: WP_REST_Comments_Controller::get_comment() |
Get the comment, if the ID is valid. |
wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php: WP_REST_Comments_Controller::get_item_permissions_check() |
Checks if a given request has access to read the comment. |
wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php: WP_REST_Comments_Controller::create_item_permissions_check() |
Checks if a given request has access to create a comment. |
wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php: WP_REST_Comments_Controller::create_item() |
Creates a comment. |
wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php: WP_REST_Comments_Controller::update_item_permissions_check() |
Checks if a given REST request has access to update a comment. |
wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php: WP_REST_Comments_Controller::update_item() |
Updates a comment. |
wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php: WP_REST_Comments_Controller::delete_item_permissions_check() |
Checks if a given request has access to delete a comment. |
wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php: WP_REST_Comments_Controller::delete_item() |
Deletes a comment. |
wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php: WP_REST_Comments_Controller::prepare_item_for_database() |
Prepares a single comment to be inserted into the database. |
wp-includes/rest-api/class-wp-rest-server.php: WP_REST_Server::serve_request() |
Handles serving a REST API request. |
wp-includes/rest-api/class-wp-rest-server.php: WP_REST_Server::dispatch() |
Matches the request to a callback and call it. |
wp-includes/rest-api/class-wp-rest-server.php: WP_REST_Server::get_namespace_index() |
Retrieves the index for a namespace. |
wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php: WP_REST_Users_Controller::check_reassign() |
Checks for a valid value for the reassign parameter when deleting users. |
wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php: WP_REST_Users_Controller::get_items_permissions_check() |
Permissions check for getting all users. |
wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php: WP_REST_Users_Controller::get_user() |
Get the user, if the ID is valid. |
wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php: WP_REST_Users_Controller::get_item_permissions_check() |
Checks if a given request has access to read a user. |
wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php: WP_REST_Users_Controller::get_current_item() |
Retrieves the current user. |
wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php: WP_REST_Users_Controller::create_item_permissions_check() |
Checks if a given request has access create users. |
wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php: WP_REST_Users_Controller::create_item() |
Creates a single user. |
wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php: WP_REST_Users_Controller::update_item_permissions_check() |
Checks if a given request has access to update a user. |
wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php: WP_REST_Users_Controller::update_item() |
Updates a single user. |
wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php: WP_REST_Users_Controller::delete_item_permissions_check() |
Checks if a given request has access delete a user. |
wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php: WP_REST_Users_Controller::delete_item() |
Deletes a single user. |
wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php: WP_REST_Users_Controller::check_role_update() |
Determines if the current user is allowed to make the desired roles change. |
wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php: WP_REST_Users_Controller::check_username() |
Check a username for the REST API. |
wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php: WP_REST_Users_Controller::check_user_password() |
Check a user password for the REST API. |
wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php: WP_REST_Terms_Controller::get_items_permissions_check() |
Checks if a request has access to read terms in the specified taxonomy. |
wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php: WP_REST_Terms_Controller::get_term() |
Get the term, if the ID is valid. |
wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php: WP_REST_Terms_Controller::get_item_permissions_check() |
Checks if a request has access to read or edit the specified term. |
wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php: WP_REST_Terms_Controller::create_item_permissions_check() |
Checks if a request has access to create a term. |
wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php: WP_REST_Terms_Controller::create_item() |
Creates a single term in a taxonomy. |
wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php: WP_REST_Terms_Controller::update_item_permissions_check() |
Checks if a request has access to update the specified term. |
wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php: WP_REST_Terms_Controller::update_item() |
Updates a single term from a taxonomy. |
wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php: WP_REST_Terms_Controller::delete_item_permissions_check() |
Checks if a request has access to delete the specified term. |
wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php: WP_REST_Terms_Controller::delete_item() |
Deletes a single term from a taxonomy. |
wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php: WP_REST_Settings_Controller::update_item() |
Updates settings for the settings object. |
wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php: WP_REST_Attachments_Controller::create_item_permissions_check() |
Checks if a given request has access to create an attachment. |
wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php: WP_REST_Attachments_Controller::create_item() |
Creates a single attachment. |
wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php: WP_REST_Attachments_Controller::update_item() |
Updates a single attachment. |
wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php: WP_REST_Attachments_Controller::upload_from_data() |
Handles an upload via raw POST data. |
wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php: WP_REST_Attachments_Controller::upload_from_file() |
Handles an upload via multipart/form-data ($_FILES). |
wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php: WP_REST_Attachments_Controller::check_upload_size() |
Determine if uploaded file exceeds space quota on multisite. |
wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php: WP_REST_Taxonomies_Controller::get_items_permissions_check() |
Checks whether a given request has permission to read taxonomies. |
wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php: WP_REST_Taxonomies_Controller::get_item_permissions_check() |
Checks if a given request has access to a taxonomy. |
wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php: WP_REST_Taxonomies_Controller::get_item() |
Retrieves a specific taxonomy. |
wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php: WP_REST_Revisions_Controller::get_parent() |
Get the parent post, if the ID is valid. |
wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php: WP_REST_Revisions_Controller::get_items_permissions_check() |
Checks if a given request has access to get revisions. |
wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php: WP_REST_Revisions_Controller::get_revision() |
Get the revision, if the ID is valid. |
wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php: WP_REST_Revisions_Controller::get_items() |
Gets a collection of revisions. |
wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php: WP_REST_Revisions_Controller::delete_item_permissions_check() |
Checks if a given request has access to delete a revision. |
wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php: WP_REST_Revisions_Controller::delete_item() |
Deletes a single revision. |
wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php: WP_REST_Post_Types_Controller::get_items_permissions_check() |
Checks whether a given request has permission to read types. |
wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php: WP_REST_Post_Types_Controller::get_item() |
Retrieves a specific post type. |
wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php: WP_REST_Post_Statuses_Controller::get_items_permissions_check() |
Checks whether a given request has permission to read post statuses. |
wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php: WP_REST_Post_Statuses_Controller::get_item_permissions_check() |
Checks if a given request has access to read a post status. |
wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php: WP_REST_Post_Statuses_Controller::get_item() |
Retrieves a specific post status. |
wp-includes/rest-api/endpoints/class-wp-rest-controller.php: WP_REST_Controller::get_items_permissions_check() |
Checks if a given request has access to get items. |
wp-includes/rest-api/endpoints/class-wp-rest-controller.php: WP_REST_Controller::get_items() |
Retrieves a collection of items. |
wp-includes/rest-api/endpoints/class-wp-rest-controller.php: WP_REST_Controller::get_item_permissions_check() |
Checks if a given request has access to get a specific item. |
wp-includes/rest-api/endpoints/class-wp-rest-controller.php: WP_REST_Controller::get_item() |
Retrieves one item from the collection. |
wp-includes/rest-api/endpoints/class-wp-rest-controller.php: WP_REST_Controller::create_item_permissions_check() |
Checks if a given request has access to create items. |
wp-includes/rest-api/endpoints/class-wp-rest-controller.php: WP_REST_Controller::create_item() |
Creates one item from the collection. |
wp-includes/rest-api/endpoints/class-wp-rest-controller.php: WP_REST_Controller::update_item_permissions_check() |
Checks if a given request has access to update a specific item. |
wp-includes/rest-api/endpoints/class-wp-rest-controller.php: WP_REST_Controller::update_item() |
Updates one item from the collection. |
wp-includes/rest-api/endpoints/class-wp-rest-controller.php: WP_REST_Controller::delete_item_permissions_check() |
Checks if a given request has access to delete a specific item. |
wp-includes/rest-api/endpoints/class-wp-rest-controller.php: WP_REST_Controller::delete_item() |
Deletes one item from the collection. |
wp-includes/rest-api/endpoints/class-wp-rest-controller.php: WP_REST_Controller::prepare_item_for_database() |
Prepares one item for create or update operation. |
wp-includes/rest-api/endpoints/class-wp-rest-controller.php: WP_REST_Controller::prepare_item_for_response() |
Prepares the item for the REST response. |
wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php: WP_REST_Posts_Controller::sanitize_post_statuses() |
Sanitizes and validates the list of post statuses, including whether the user can query private statuses. |
wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php: WP_REST_Posts_Controller::get_items_permissions_check() |
Checks if a given request has access to read posts. |
wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php: WP_REST_Posts_Controller::get_items() |
Retrieves a collection of posts. |
wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php: WP_REST_Posts_Controller::get_post() |
Gets the post, if the ID is valid. |
wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php: WP_REST_Posts_Controller::get_item_permissions_check() |
Checks if a given request has access to read a post. |
wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php: WP_REST_Posts_Controller::create_item_permissions_check() |
Checks if a given request has access to create a post. |
wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php: WP_REST_Posts_Controller::create_item() |
Creates a single post. |
wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php: WP_REST_Posts_Controller::update_item_permissions_check() |
Checks if a given request has access to update a post. |
wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php: WP_REST_Posts_Controller::delete_item_permissions_check() |
Checks if a given request has access to delete a post. |
wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php: WP_REST_Posts_Controller::delete_item() |
Deletes a single post. |
wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php: WP_REST_Posts_Controller::prepare_item_for_database() |
Prepares a single post for create or update. |
wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php: WP_REST_Posts_Controller::handle_status_param() |
Determines validity and normalizes the given status parameter. |
wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php: WP_REST_Posts_Controller::handle_featured_media() |
Determines the featured media based on a request param. |
wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php: WP_REST_Posts_Controller::check_template() |
Checks whether the template is valid for the given post. |
wp-includes/class-wp-image-editor-imagick.php: WP_Image_Editor_Imagick::load() |
Loads image from $this->file into new Imagick Object. |
wp-includes/class-wp-image-editor-imagick.php: WP_Image_Editor_Imagick::set_quality() |
Sets Image Compression quality on a 1-100% scale. |
wp-includes/class-wp-image-editor-imagick.php: WP_Image_Editor_Imagick::update_size() |
Sets or updates current image size. |
wp-includes/class-wp-image-editor-imagick.php: WP_Image_Editor_Imagick::resize() |
Resizes current image. |
wp-includes/class-wp-image-editor-imagick.php: WP_Image_Editor_Imagick::thumbnail_image() |
Efficiently resize the current image |
wp-includes/class-wp-image-editor-imagick.php: WP_Image_Editor_Imagick::crop() |
Crops Image. |
wp-includes/class-wp-image-editor-imagick.php: WP_Image_Editor_Imagick::rotate() |
Rotates current image counter-clockwise by $angle. |
wp-includes/class-wp-image-editor-imagick.php: WP_Image_Editor_Imagick::flip() |
Flips current image. |
wp-includes/class-wp-image-editor-imagick.php: WP_Image_Editor_Imagick::save() |
Saves current image to file. |
wp-includes/class-wp-image-editor-imagick.php: WP_Image_Editor_Imagick::_save() | |
wp-includes/class-wp-image-editor-imagick.php: WP_Image_Editor_Imagick::stream() |
Streams current image to browser. |
wp-includes/class-wp-image-editor-imagick.php: WP_Image_Editor_Imagick::strip_meta() |
Strips all image meta except color profiles from an image. |
wp-includes/class-wp-image-editor-imagick.php: WP_Image_Editor_Imagick::pdf_setup() |
Sets up Imagick for PDF processing. |
wp-includes/class-wp-customize-widgets.php: WP_Customize_Widgets::call_widget_update() |
Finds and invokes the widget update and control callbacks. |
wp-includes/class-wp-http-streams.php: WP_Http_Streams::request() |
Send a HTTP request to a URI using PHP Streams. |
wp-includes/class-wp-customize-widgets.php: WP_Customize_Widgets::parse_widget_setting_id() |
Converts a widget setting ID (option path) to its id_base and number components. |
wp-includes/class-wp-term.php: WP_Term::get_instance() |
Retrieve WP_Term instance. |
wp-includes/class-wp-http-curl.php: WP_Http_Curl::request() |
Send a HTTP request to a URI using cURL extension. |
wp-includes/class-wp-tax-query.php: WP_Tax_Query::clean_query() |
Validates a single query. |
wp-includes/class-wp-tax-query.php: WP_Tax_Query::transform_query() |
Transforms a single query, from one field to another. |
wp-includes/class-wp-metadata-lazyloader.php: WP_Metadata_Lazyloader::queue_objects() |
Adds objects to the metadata lazy-load queue. |
wp-includes/class-wp-metadata-lazyloader.php: WP_Metadata_Lazyloader::reset_queue() |
Resets lazy-load queue for a given object type. |
wp-includes/pluggable.php: wp_mail() |
Sends an email, similar to PHP’s mail function. |
wp-includes/pluggable.php: wp_authenticate() |
Authenticates a user, confirming the login credentials are valid. |
wp-includes/class-wp-image-editor.php: WP_Image_Editor::set_quality() |
Sets Image Compression quality on a 1-100% scale. |
wp-includes/nav-menu.php: wp_update_nav_menu_object() |
Saves the properties of a menu or create a new menu with those properties. |
wp-includes/nav-menu.php: wp_update_nav_menu_item() |
Saves the properties of a menu item or create a new one. |
wp-includes/comment.php: wp_handle_comment_submission() |
Handles the submission of a comment, usually posted to wp-comments-post.php via a comment form. |
wp-includes/comment.php: wp_set_comment_status() |
Sets the status of a comment. |
wp-includes/comment.php: wp_update_comment() |
Updates an existing comment in the database. |
wp-includes/comment.php: wp_check_comment_data_max_lengths() |
Compares the lengths of comment data against the maximum character limits. |
wp-includes/comment.php: wp_allow_comment() |
Validates whether this comment is allowed to be made. |
wp-includes/cron.php: _set_cron_array() |
Updates the cron option with the new cron array. |
wp-includes/cron.php: wp_schedule_single_event() |
Schedules an event to run only once. |
wp-includes/cron.php: wp_schedule_event() |
Schedules a recurring event. |
wp-includes/cron.php: wp_reschedule_event() |
Reschedules a recurring event. |
wp-includes/cron.php: wp_unschedule_event() |
Unschedules a previously scheduled event. |
wp-includes/cron.php: wp_clear_scheduled_hook() |
Unschedules all events attached to the hook with the specified arguments. |
wp-includes/cron.php: wp_unschedule_hook() |
Unschedules all events attached to the hook. |
wp-includes/post-formats.php: set_post_format() |
Assign a format to a post |
wp-includes/class-wp-http.php: WP_Http::request() |
Send an HTTP request to a URI. |
wp-includes/class-wp-http.php: WP_Http::_dispatch_request() |
Dispatches a HTTP request to a supporting transport. |
wp-includes/class-wp-http.php: WP_Http::handle_redirects() |
Handles an HTTP redirect and follows it if appropriate. |
wp-includes/user.php: wp_validate_user_request_key() |
Validates a user request by comparing the key with the request’s key. |
wp-includes/user.php: wp_create_user_request() |
Creates and logs a user request to perform a specific action. |
wp-includes/user.php: wp_send_user_request() |
Send a confirmation request email to confirm an action. |
wp-includes/user.php: send_confirmation_on_profile_email() |
Sends a confirmation request email when a change of user email address is attempted. |
wp-includes/user.php: get_password_reset_key() |
Creates, stores, then returns a password reset key for user. |
wp-includes/user.php: check_password_reset_key() |
Retrieves a user row based on password reset key and login. |
wp-includes/user.php: register_new_user() |
Handles registering a new user. |
wp-includes/user.php: wp_insert_user() |
Inserts a user into the database. |
wp-includes/user.php: wp_update_user() |
Updates a user in the database. |
wp-includes/user.php: wp_authenticate_username_password() |
Authenticates a user, confirming the username and password are valid. |
wp-includes/user.php: wp_authenticate_email_password() |
Authenticates a user using the email and password. |
wp-includes/user.php: wp_authenticate_cookie() |
Authenticates the user using the WordPress auth cookie. |
wp-includes/user.php: wp_authenticate_spam_check() |
For Multisite blogs, checks if the authenticated user has been marked as a spammer, or if the user’s primary blog has been marked as spam. |
wp-includes/class-wpdb.php: wpdb::set_prefix() |
Sets the table prefix for the WordPress tables. |
wp-includes/class-wpdb.php: wpdb::get_table_charset() |
Retrieves the character set for the given table. |
wp-includes/class-wpdb.php: wpdb::strip_invalid_text() |
Strips any invalid characters based on value/charset pairs. |
wp-includes/class-wpdb.php: wpdb::bail() |
Wraps errors in a nice header and footer and dies. |
wp-includes/class-wpdb.php: wpdb::check_database_version() |
Determines whether MySQL database is at least the required minimum version. |
wp-includes/class-wp-theme.php: WP_Theme::__construct() |
Constructor for WP_Theme. |
wp-includes/class-wp-xmlrpc-server.php: wp_xmlrpc_server::login() |
Logs user in. |
wp-includes/class-wp-customize-manager.php: WP_Customize_Manager::_sanitize_background_setting() |
Callback for validating a background setting value. |
wp-includes/class-wp-customize-manager.php: WP_Customize_Manager::get_changeset_post_data() |
Gets the data stored in a changeset post. |
wp-includes/class-wp-customize-manager.php: WP_Customize_Manager::validate_setting_values() |
Validates setting values. |
wp-includes/class-wp-customize-manager.php: WP_Customize_Manager::save() |
Handles customize_save WP Ajax request to save/update a changeset. |
wp-includes/class-wp-customize-manager.php: WP_Customize_Manager::save_changeset_post() |
Saves the post for the loaded changeset. |
wp-includes/rest-api.php: rest_validate_value_from_schema() |
Validate a value based on a schema. |
wp-includes/rest-api.php: rest_sanitize_value_from_schema() |
Sanitize a value based on a schema. |
wp-includes/rest-api.php: rest_cookie_check_errors() |
Checks for errors when using cookie-based authentication. |
wp-includes/post.php: wp_insert_post() |
Inserts or update a post. |
wp-includes/post.php: wp_update_post() |
Updates a post with new post data. |
wp-includes/post.php: register_post_type() |
Registers a post type. |
wp-includes/post.php: unregister_post_type() |
Unregisters a post type. |
wp-includes/class-wp-customize-nav-menus.php: WP_Customize_Nav_Menus::insert_auto_draft_post() |
Adds a new |
wp-includes/class-wp-customize-nav-menus.php: WP_Customize_Nav_Menus::load_available_items_query() |
Performs the post_type and taxonomy queries for loading available menu items. |
wp-includes/ms-functions.php: wpmu_activate_signup() |
Activates a signup. |
wp-includes/ms-functions.php: wpmu_create_blog() |
Creates a site. |
wp-includes/ms-functions.php: wpmu_validate_user_signup() |
Sanitizes and validates data required for a user sign-up. |
wp-includes/ms-functions.php: wpmu_validate_blog_signup() |
Processes new site registrations. |
wp-includes/ms-functions.php: add_user_to_blog() |
Adds a user to a blog, along with specifying the user’s role. |
wp-includes/ms-functions.php: remove_user_from_blog() |
Removes a user from a blog. |
wp-includes/class-wp-oembed-controller.php: WP_oEmbed_Controller::get_proxy_item() |
Callback for the proxy API endpoint. |
wp-includes/class-wp-oembed-controller.php: WP_oEmbed_Controller::get_item() |
Callback for the embed API endpoint. |
wp-includes/class-wp-oembed-controller.php: WP_oEmbed_Controller::get_proxy_item_permissions_check() |
Checks if current user can make a proxy oEmbed request. |
wp-includes/feed.php: fetch_feed() |
Builds SimplePie object based on RSS or Atom feed from URL. |
wp-includes/taxonomy.php: is_object_in_term() |
Determines if the given object is associated with any of the given terms. |
wp-includes/taxonomy.php: get_term_link() |
Generates a permalink for a taxonomy term archive. |
wp-includes/taxonomy.php: wp_update_term() |
Updates term based on arguments provided. |
wp-includes/taxonomy.php: wp_get_object_terms() |
Retrieves the terms associated with the given object(s), in the supplied taxonomies. |
wp-includes/taxonomy.php: wp_set_object_terms() |
Creates term and taxonomy relationships. |
wp-includes/taxonomy.php: wp_remove_object_terms() |
Removes term(s) associated with a given object. |
wp-includes/taxonomy.php: wp_insert_term() |
Adds a new term to the database. |
wp-includes/taxonomy.php: update_term_meta() |
Updates term metadata. |
wp-includes/taxonomy.php: get_objects_in_term() |
Retrieves object IDs of valid taxonomy and term. |
wp-includes/taxonomy.php: get_term() |
Gets all term data from database by term ID. |
wp-includes/taxonomy.php: get_term_children() |
Merges all term children into a single array of their IDs. |
wp-includes/taxonomy.php: get_terms() |
Retrieves the terms in a given taxonomy or list of taxonomies. |
wp-includes/taxonomy.php: add_term_meta() |
Adds metadata to a term. |
wp-includes/taxonomy.php: register_taxonomy() |
Creates or modifies a taxonomy object. |
wp-includes/taxonomy.php: unregister_taxonomy() |
Unregisters a taxonomy. |
wp-includes/revision.php: _wp_put_post_revision() |
Inserts post data into the posts table as a post revision. |
wp-includes/class-wp-oembed.php: WP_oEmbed::_fetch_with_format() |
Fetches result from an oEmbed provider for a specific format and complete provider URL |
wp-includes/class-wp-customize-setting.php: WP_Customize_Setting::validate() |
Validates an input. |
wp-admin/includes/deprecated.php: WP_User_Search::query() |
Executes the user search query. |
wp-admin/includes/class-wp-filesystem-ftpext.php: WP_Filesystem_FTPext::__construct() |
Constructor. |
wp-admin/includes/media.php: media_sideload_image() |
Downloads an image from the specified URL, saves it as an attachment, and optionally attaches it to a post. |
wp-admin/includes/media.php: media_handle_upload() |
Saves a file submitted from a POST request and create an attachment post for it. |
wp-admin/includes/media.php: media_handle_sideload() |
Handles a side-loaded file in the same way as an uploaded file is handled by media_handle_upload(). |
wp-admin/includes/schema.php: populate_network() |
Populate network settings. |
wp-admin/includes/translation-install.php: translations_api() |
Retrieve translations from WordPress Translation API. |
wp-admin/includes/nav-menu.php: wp_get_nav_menu_to_edit() |
Returns the menu formatted to edit. |
wp-admin/includes/plugin-install.php: plugins_api() |
Retrieves plugin installer pages from the ClassicPress.net Plugins API. |
wp-admin/includes/class-theme-upgrader.php: Theme_Upgrader::check_package() |
Checks that the package source contains a valid theme. |
wp-admin/includes/class-wp-filesystem-ftpsockets.php: WP_Filesystem_ftpsockets::__construct() |
Constructor. |
wp-admin/includes/class-core-upgrader.php: Core_Upgrader::upgrade() |
Upgrade ClassicPress core. |
wp-admin/includes/class-wp-filesystem-direct.php: WP_Filesystem_Direct::__construct() |
Constructor. |
wp-admin/includes/bookmark.php: wp_insert_link() |
Inserts a link into the database, or updates an existing link. |
wp-admin/includes/ajax-actions.php: wp_ajax_add_tag() |
Ajax handler to add a tag. |
wp-admin/includes/ajax-actions.php: wp_ajax_dim_comment() |
Ajax handler to dim a comment. |
wp-admin/includes/class-wp-upgrader.php: WP_Upgrader::fs_connect() |
Connect to the filesystem. |
wp-admin/includes/class-wp-upgrader.php: WP_Upgrader::download_package() |
Download a package. |
wp-admin/includes/class-wp-upgrader.php: WP_Upgrader::unpack_package() |
Unpack a compressed package file. |
wp-admin/includes/class-wp-upgrader.php: WP_Upgrader::clear_destination() |
Clears the directory where this item is going to be installed into. |
wp-admin/includes/class-wp-upgrader.php: WP_Upgrader::install_package() |
Install a package. |
wp-admin/includes/update-core.php: update_core() |
Upgrades the core of ClassicPress. |
wp-admin/includes/class-wp-automatic-updater.php: WP_Automatic_Updater::update() |
Updates an item, if appropriate. |
wp-admin/includes/privacy-tools.php: _wp_privacy_resend_request() |
Resend an existing request and return the result. |
wp-admin/includes/privacy-tools.php: _wp_privacy_completed_request() |
Marks a request as completed by the admin and logs the current timestamp. |
wp-admin/includes/theme.php: delete_theme() |
Removes a theme. |
wp-admin/includes/theme.php: themes_api() |
Retrieves theme installer pages from the WordPress.org Themes API. |
wp-admin/includes/user.php: edit_user() |
Edit user settings based on contents of $_POST |
wp-admin/includes/plugin.php: activate_plugins() |
Activates multiple plugins. |
wp-admin/includes/plugin.php: delete_plugins() |
Removes directory and files of a plugin for a list of plugins. |
wp-admin/includes/plugin.php: validate_plugin() |
Validates the plugin path. |
wp-admin/includes/plugin.php: activate_plugin() |
Attempts activation of plugin in a “sandbox” and redirects on success. |
wp-admin/includes/privacy-tools.php: wp_privacy_send_personal_data_export_email() |
Send an email to the user with a link to the personal data export file |
wp-admin/includes/file.php: download_url() |
Downloads a URL to a local temporary file using the ClassicPress HTTP API. |
wp-admin/includes/file.php: verify_file_md5() |
Calculates and compares the MD5 of a file to its expected value. |
wp-admin/includes/file.php: unzip_file() |
Unzips a specified ZIP file to a location on the filesystem via the WordPress Filesystem Abstraction. |
wp-admin/includes/file.php: _unzip_file_ziparchive() |
Attempts to unzip an archive using the ZipArchive class. |
wp-admin/includes/file.php: _unzip_file_pclzip() |
Attempts to unzip an archive using the PclZip library. |
wp-admin/includes/file.php: copy_dir() |
Copies a directory from one location to another via the WordPress Filesystem Abstraction. |
wp-admin/includes/file.php: wp_edit_theme_plugin_file() |
Attempts to edit a file for a theme or plugin. |
wp-admin/includes/class-wp-ajax-upgrader-skin.php: WP_Ajax_Upgrader_Skin::__construct() |
Constructor. |
wp-admin/includes/class-language-pack-upgrader.php: Language_Pack_Upgrader::bulk_upgrade() |
Bulk upgrade language packs. |
wp-admin/includes/class-language-pack-upgrader.php: Language_Pack_Upgrader::check_package() |
Checks that the package source contains .mo and .po files. |
wp-admin/includes/post.php: wp_autosave() |
Saves a post submitted with XHR. |
wp-admin/includes/post.php: _wp_translate_postdata() |
Renames |
wp-admin/includes/post.php: wp_write_post() |
Creates a new post from the “Write Post” form using |
wp-admin/includes/class-wp-filesystem-ssh2.php: WP_Filesystem_SSH2::__construct() |
Constructor. |
wp-admin/includes/class-plugin-upgrader.php: Plugin_Upgrader::check_package() |
Checks that the source package contains a valid plugin. |
wp-admin/includes/class-plugin-upgrader.php: Plugin_Upgrader::deactivate_plugin_before_upgrade() |
Deactivates a plugin before it is upgraded. |
wp-admin/includes/class-plugin-upgrader.php: Plugin_Upgrader::delete_old_plugin() |
Deletes the old plugin during an upgrade. |
wp-admin/includes/taxonomy.php: wp_insert_category() |
Updates an existing Category or creates a new Category. |
Changelog
Version | Description |
---|---|
2.1.0 | Introduced. |