On this page
__( string $text, string $domain = 'default' ): string
Retrieves the translation of $text.
Description
If there is no translation, or the text domain isn’t loaded, the original text is returned.
Parameters
$textstring Required-
Text to translate.
$domainstring Optional-
Text domain. Unique identifier for retrieving translated strings.
Default'default'.Default:
'default'
Return
string Translated text.
Source
File: wp-includes/l10n.php. View all references
function __( $text, $domain = 'default' ) {
return translate( $text, $domain );
}
Related
Uses
| Uses | Description |
|---|---|
| translate() wp-includes/l10n.php | Retrieves the translation of $text. |
Used By
| Used By | Description |
|---|---|
| wp_register_persisted_preferences_meta() wp-includes/user.php | Registers the user meta property for persisted preferences. |
| WP_Block_Type::__set() wp-includes/class-wp-block-type.php | Proxies setting values for deprecated properties for script and style handles for backward compatibility. |
| wp_cache_flush_group() wp-includes/cache-compat.php | Removes all cache items in a group, if the object cache implementation supports it. |
| WP_Theme_JSON::set_spacing_sizes() wp-includes/class-wp-theme-json.php | Sets the spacingSizes array based on the spacingScale values from theme.json. |
| _wp_build_title_and_description_for_single_post_type_block_template() wp-includes/block-template-utils.php | Builds the title and description of a post-specific template based on the underlying referenced post. |
| _wp_build_title_and_description_for_taxonomy_block_template() wp-includes/block-template-utils.php | Builds the title and description of a taxonomy-specific template based on the underlying entity referenced. |
| WP_Style_Engine_Processor::add_store() wp-includes/style-engine/class-wp-style-engine-processor.php | Adds a store to the processor. |
| wp_required_field_message() wp-includes/general-template.php | Creates a message to explain required form fields. |
| wp_required_field_indicator() wp-includes/general-template.php | Assigns a visual indicator for required form fields. |
| WP_Object_Cache::is_valid_key() wp-includes/class-wp-object-cache.php | Serves as a utility function to determine whether a key is valid. |
| wp_get_latest_revision_id_and_total_count() wp-includes/revision.php | Returns the latest revision ID and count of revisions for a post. |
| WP_Site_Health::get_test_page_cache() wp-admin/includes/class-wp-site-health.php | Tests if a full page cache is available. |
| WP_Site_Health::get_test_persistent_object_cache() wp-admin/includes/class-wp-site-health.php | Tests if the site uses persistent object cache and recommends to use it if not. |
| WP_List_Table::get_views_links() wp-admin/includes/class-wp-list-table.php | Generates views links. |
| IXR_Message::parse() wp-includes/IXR/class-IXR-message.php | |
| WP_Widget_Media::get_default_description() wp-includes/widgets/class-wp-widget-media.php | Returns the default description of the widget. |
| WP_Widget_Media::get_l10n_defaults() wp-includes/widgets/class-wp-widget-media.php | Returns the default localized strings used by the widget. |
| WP_Taxonomy::get_default_labels() wp-includes/class-wp-taxonomy.php | Returns the default labels for taxonomies. |
| WP_Post_Type::get_default_labels() wp-includes/class-wp-post-type.php | Returns the default labels for post types. |
| _register_theme_block_patterns() wp-includes/block-patterns.php | Register any patterns that the active theme may provide under its |
| WP_REST_Block_Patterns_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php | Retrieves the block pattern schema, conforming to JSON Schema. |
| WP_REST_Block_Patterns_Controller::get_items_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php | Checks whether a given request has permission to read block patterns. |
| WP_REST_Global_Styles_Controller::get_theme_items_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php | Checks if a given request has access to read a single theme global styles config. |
| WP_REST_Global_Styles_Controller::get_theme_items() wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php | Returns the given theme global styles variations. |
| WP_REST_Block_Pattern_Categories_Controller::get_items_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php | Checks whether a given request has permission to read block patterns. |
| WP_REST_Block_Pattern_Categories_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php | Retrieves the block pattern category schema, conforming to JSON Schema. |
| _wp_theme_json_webfonts_handler() wp-includes/script-loader.php | Runs the theme.json webfonts handler. |
| wp_maybe_update_user_counts() wp-includes/user.php | Updates the total count of users on the site if live user counting is enabled. |
| wp_update_user_counts() wp-includes/user.php | Updates the total count of users on the site. |
| wp_is_large_user_count() wp-includes/user.php | Determines whether the site has a large number of users. |
| WP_REST_Menu_Items_Controller::get_schema_links() wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php | Retrieves Link Description Objects that should be added to the Schema for the posts collection. |
| WP_REST_Menu_Items_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php | Retrieves the term’s schema, conforming to JSON Schema. |
| WP_REST_Menu_Items_Controller::get_collection_params() wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php | Retrieves the query params for the posts collection. |
| WP_REST_Menu_Items_Controller::check_has_read_only_access() wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php | Checks whether the current user has read permission for the endpoint. |
| WP_REST_Menu_Items_Controller::create_item() wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php | Creates a single post. |
| WP_REST_Menu_Items_Controller::delete_item() wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php | Deletes a single menu item. |
| WP_REST_Menu_Items_Controller::prepare_item_for_database() wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php | Prepares a single post for create or update. |
| WP_REST_Global_Styles_Controller::get_theme_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php | Checks if a given request has access to read a single theme global styles config. |
| WP_REST_Global_Styles_Controller::get_theme_item() wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php | Returns the given theme global styles config. |
| WP_REST_Global_Styles_Controller::register_routes() wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php | Registers the controllers routes. |
| WP_REST_Global_Styles_Controller::get_post() wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php | Get the post, if the ID is valid. |
| WP_REST_Global_Styles_Controller::get_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php | Checks if a given request has access to read a single global style. |
| WP_REST_Global_Styles_Controller::update_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php | Checks if a given request has access to write a single global styles config. |
| WP_REST_Global_Styles_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php | Retrieves the global styles type’ schema, conforming to JSON Schema. |
| WP_REST_URL_Details_Controller::register_routes() wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php | Registers the necessary REST API routes. |
| WP_REST_URL_Details_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php | Retrieves the item’s schema, conforming to JSON Schema. |
| WP_REST_URL_Details_Controller::parse_url_details() wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php | Retrieves the contents of the title tag from the HTML response. |
| WP_REST_URL_Details_Controller::permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php | Checks whether a given request has permission to read remote URLs. |
| WP_REST_URL_Details_Controller::get_remote_url() wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php | Retrieves the document title from a remote URL. |
| WP_REST_Menus_Controller::check_has_read_only_access() wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php | Checks whether the current user has read permission for the endpoint. |
| WP_REST_Menus_Controller::create_item() wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php | Creates a single term in a taxonomy. |
| WP_REST_Menus_Controller::update_item() wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php | Updates a single term from a taxonomy. |
| WP_REST_Menus_Controller::delete_item() wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php | Deletes a single term from a taxonomy. |
| WP_REST_Menus_Controller::handle_locations() wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php | Updates the menu’s locations from a REST request. |
| WP_REST_Menus_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php | Retrieves the term’s schema, conforming to JSON Schema. |
| WP_REST_Menu_Locations_Controller::register_routes() wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php | Registers the routes for the objects of the controller. |
| WP_REST_Menu_Locations_Controller::get_items_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php | Checks whether a given request has permission to read menu locations. |
| WP_REST_Menu_Locations_Controller::get_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php | Checks if a given request has access to read a menu location. |
| WP_REST_Menu_Locations_Controller::get_item() wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php | Retrieves a specific menu location. |
| WP_REST_Menu_Locations_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php | Retrieves the menu location’s schema, conforming to JSON Schema. |
| WP_REST_Edit_Site_Export_Controller::permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php | Checks whether a given request has permission to export. |
| wp_get_sidebar() wp-includes/widgets.php | Retrieves the registered sidebar with the given ID. |
| wp_json_file_decode() wp-includes/functions.php | Reads and decodes a JSON file. |
| wp_generate_block_templates_export_file() wp-includes/block-template-utils.php | Creates an export of the current templates and template parts from the site editor at the specified path in a ZIP file. |
| _build_block_template_result_from_post() wp-includes/block-template-utils.php | Builds a unified template object based a post Object. |
| get_allowed_block_template_part_areas() wp-includes/block-template-utils.php | Returns a filtered list of allowed area values for template parts. |
| get_default_block_template_types() wp-includes/block-template-utils.php | Returns a filtered list of default template types, containing their localized titles and descriptions. |
| _filter_block_template_part_area() wp-includes/block-template-utils.php | Checks whether the input ‘area’ is a supported value. |
| wp_admin_bar_edit_site_menu() wp-includes/admin-bar.php | Adds the “Edit site” link to the Toolbar. |
| _add_plugin_file_editor_to_tools() wp-admin/menu.php | Adds the ‘Plugin File Editor’ menu item after the ‘Themes File Editor’ in Tools for block themes. |
| WP_Widget_Block::__construct() wp-includes/widgets/class-wp-widget-block.php | Sets up a new Block widget instance. |
| WP_REST_Widgets_Controller::prepare_item_for_response() wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php | Prepares the widget for the REST response. |
| WP_REST_Widgets_Controller::get_collection_params() wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php | Gets the list of collection params. |
| WP_REST_Widgets_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php | Retrieves the widget’s schema, conforming to JSON Schema. |
| WP_REST_Widgets_Controller::register_routes() wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php | Registers the widget routes for the controller. |
| WP_REST_Widgets_Controller::get_item() wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php | Gets an individual widget. |
| WP_REST_Widgets_Controller::update_item() wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php | Updates an existing widget. |
| WP_REST_Widgets_Controller::delete_item() wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php | Deletes a widget. |
| WP_REST_Widgets_Controller::permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php | Performs a permissions check for managing widgets. |
| WP_REST_Widgets_Controller::save_widget() wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php | Saves the widget in the request object. |
| WP_REST_Sidebars_Controller::register_routes() wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php | Registers the controllers routes. |
| WP_REST_Sidebars_Controller::get_item() wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php | Retrieves one sidebar from the collection. |
| WP_REST_Sidebars_Controller::do_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php | Checks if the user has permissions to make the request. |
| WP_REST_Sidebars_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php | Retrieves the block type’ schema, conforming to JSON Schema. |
| WP_REST_Templates_Controller::get_collection_params() wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php | Retrieves the query params for the posts collection. |
| WP_REST_Templates_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php | Retrieves the block type’ schema, conforming to JSON Schema. |
| WP_REST_Templates_Controller::register_routes() wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php | Registers the controllers routes. |
| WP_REST_Templates_Controller::permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php | Checks if the user has permissions to make the request. |
| WP_REST_Templates_Controller::get_item() wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php | Returns the given template |
| WP_REST_Templates_Controller::update_item() wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php | Updates a single template. |
| WP_REST_Templates_Controller::create_item() wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php | Creates a single template. |
| WP_REST_Templates_Controller::delete_item() wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php | Deletes a single template. |
| WP_REST_Templates_Controller::prepare_item_for_database() wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php | Prepares a single template for create or update. |
| WP_REST_Pattern_Directory_Controller::get_items_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php | Checks whether a given request has permission to view the local block pattern directory. |
| WP_REST_Pattern_Directory_Controller::get_items() wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php | Search and retrieve block patterns metadata |
| WP_REST_Pattern_Directory_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php | Retrieves the block pattern’s schema, conforming to JSON Schema. |
| WP_REST_Pattern_Directory_Controller::get_collection_params() wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php | Retrieves the search parameters for the block pattern’s collection. |
| WP_REST_Widget_Types_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php | Retrieves the widget type’s schema, conforming to JSON Schema. |
| WP_REST_Widget_Types_Controller::encode_form_data() wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php | An RPC-style endpoint which can be used by clients to turn user input in a widget admin form into an encoded instance object. |
| WP_REST_Widget_Types_Controller::register_routes() wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php | Registers the widget type routes. |
| WP_REST_Widget_Types_Controller::check_read_permission() wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php | Checks whether the user can read widget types. |
| WP_REST_Widget_Types_Controller::get_widget() wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php | Gets the details about the requested widget. |
| get_default_block_editor_settings() wp-includes/block-editor.php | Returns the default block editor settings. |
| wp_check_widget_editor_deps() wp-includes/widgets.php | Displays a _doing_it_wrong() message for conflicting widget editor scripts. |
| locate_block_template() wp-includes/block-template.php | Finds a block template with equal or higher specificity than a given PHP template file. |
| WP_Theme_JSON::get_property_value() wp-includes/class-wp-theme-json.php | Returns the style property for the given path. |
| wp_migrate_old_typography_shape() wp-includes/blocks.php | Converts typography keys declared under |
| deactivated_plugins_notice() wp-admin/includes/plugin.php | Renders an admin notice when a plugin was deactivated during an update. |
| WP_REST_Application_Passwords_Controller::get_current_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php | Checks if a given request has access to get the currently used application password for a user. |
| WP_REST_Application_Passwords_Controller::get_current_item() wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php | Retrieves the application password being currently used for authentication of a user. |
| WP_REST_Themes_Controller::get_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php | Checks if a given request has access to read the theme. |
| WP_REST_Themes_Controller::check_read_active_theme_permission() wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php | Checks if a theme can be read. |
| WP_REST_Themes_Controller::get_item() wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php | Retrieves a single theme. |
| WP_REST_Posts_Controller::prepare_taxonomy_limit_schema() wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php | Prepares the collection schema for including and excluding items by terms. |
| wp_get_default_update_https_url() wp-includes/functions.php | Gets the default URL to learn more about updating the site to use HTTPS. |
| wp_update_https_detection_errors() wp-includes/https-detection.php | Runs a remote HTTPS request to detect whether HTTPS supported, and stores potential errors. |
| rest_validate_integer_value_from_schema() wp-includes/rest-api.php | Validates an integer value based on a schema. |
| rest_validate_enum() wp-includes/rest-api.php | Validates that the given value is a member of the JSON Schema “enum”. |
| rest_validate_null_value_from_schema() wp-includes/rest-api.php | Validates a null value based on a schema. |
| rest_validate_boolean_value_from_schema() wp-includes/rest-api.php | Validates a boolean value based on a schema. |
| rest_validate_object_value_from_schema() wp-includes/rest-api.php | Validates an object value based on a schema. |
| rest_validate_array_value_from_schema() wp-includes/rest-api.php | Validates an array value based on a schema. |
| rest_validate_number_value_from_schema() wp-includes/rest-api.php | Validates a number value based on a schema. |
| rest_validate_string_value_from_schema() wp-includes/rest-api.php | Validates a string value based on a schema. |
| wp_ajax_send_password_reset() wp-admin/includes/ajax-actions.php | Ajax handler sends a password reset link. |
| wpmu_new_site_admin_notification() wp-includes/ms-functions.php | Notifies the Multisite network administrator that a new site was created. |
| WP_REST_Server::serve_batch_request_v1() wp-includes/rest-api/class-wp-rest-server.php | Serves the batch/v1 request. |
| WP_REST_Server::match_request_to_handler() wp-includes/rest-api/class-wp-rest-server.php | Matches a request object to its handler. |
| WP_REST_Server::respond_to_request() wp-includes/rest-api/class-wp-rest-server.php | Dispatches the request to the callback handler. |
| WP_REST_Site_Health_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php | Gets the schema for each site health test. |
| WP_REST_Site_Health_Controller::get_directory_sizes() wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php | Gets the current directory sizes for this install. |
| WP_REST_Application_Passwords_Controller::do_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php | Performs a permissions check for the request. |
| WP_REST_Application_Passwords_Controller::get_user() wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php | Gets the requested user. |
| WP_REST_Application_Passwords_Controller::get_application_password() wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php | Gets the requested application password for a user. |
| WP_REST_Application_Passwords_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php | Retrieves the application password’s schema, conforming to JSON Schema. |
| WP_REST_Application_Passwords_Controller::get_items_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php | Checks if a given request has access to get application passwords. |
| WP_REST_Application_Passwords_Controller::get_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php | Checks if a given request has access to get a specific application password. |
| WP_REST_Application_Passwords_Controller::create_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php | Checks if a given request has access to create application passwords. |
| WP_REST_Application_Passwords_Controller::update_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php | Checks if a given request has access to update application passwords. |
| WP_REST_Application_Passwords_Controller::delete_items_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php | Checks if a given request has access to delete all application passwords for a user. |
| WP_REST_Application_Passwords_Controller::delete_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php | Checks if a given request has access to delete a specific application password for a user. |
| WP_Image_Editor_Imagick::write_image() wp-includes/class-wp-image-editor-imagick.php | Writes an image to a file or stream. |
| WP_Application_Passwords::delete_application_password() wp-includes/class-wp-application-passwords.php | Deletes an application password. |
| WP_Application_Passwords::delete_all_application_passwords() wp-includes/class-wp-application-passwords.php | Deletes all application passwords for the given user. |
| WP_Application_Passwords::create_new_application_password() wp-includes/class-wp-application-passwords.php | Creates a new application password. |
| WP_Application_Passwords::update_application_password() wp-includes/class-wp-application-passwords.php | Updates an application password. |
| WP_Application_Passwords::record_application_password_usage() wp-includes/class-wp-application-passwords.php | Records that an application password has been used. |
| clean_dirsize_cache() wp-includes/functions.php | Cleans directory size cache used by recurse_dirsize() . |
| wp_authenticate_application_password() wp-includes/user.php | Authenticates the user using an application password. |
| rest_format_combining_operation_error() wp-includes/rest-api.php | Formats a combining operation error into a WP_Error object. |
| rest_get_combining_operation_error() wp-includes/rest-api.php | Gets the error of combining operation. |
| rest_find_one_matching_schema() wp-includes/rest-api.php | Finds the matching schema among the “oneOf” schemas. |
| WP_Application_Passwords_List_Table::column_created() wp-admin/includes/class-wp-application-passwords-list-table.php | Handles the created column output. |
| WP_Application_Passwords_List_Table::column_last_used() wp-admin/includes/class-wp-application-passwords-list-table.php | Handles the last used column output. |
| WP_Application_Passwords_List_Table::column_revoke() wp-admin/includes/class-wp-application-passwords-list-table.php | Handles the revoke column output. |
| WP_Application_Passwords_List_Table::print_js_template_row() wp-admin/includes/class-wp-application-passwords-list-table.php | Prints the JavaScript template for the new row item. |
| WP_Application_Passwords_List_Table::get_columns() wp-admin/includes/class-wp-application-passwords-list-table.php | Gets the list of columns. |
| get_media_states() wp-admin/includes/template.php | Retrieves an array of media states from an attachment. |
| WP_Site_Health::get_test_authorization_header() wp-admin/includes/class-wp-site-health.php | Tests if the Authorization header has the expected values. |
| wp_is_authorize_application_password_request_valid() wp-admin/includes/user.php | Checks if the Authorize Application Password request is valid. |
| WP_Comments_List_Table::comment_type_dropdown() wp-admin/includes/class-wp-comments-list-table.php | Displays a comment type drop-down for filtering on the Comments list table. |
| core_auto_updates_settings() wp-admin/update-core.php | Display WordPress auto-updates settings. |
| WP_Block_Patterns_Registry::unregister() wp-includes/class-wp-block-patterns-registry.php | Unregisters a block pattern. |
| WP_Block_Patterns_Registry::register() wp-includes/class-wp-block-patterns-registry.php | Registers a block pattern. |
| WP_Block_Pattern_Categories_Registry::register() wp-includes/class-wp-block-pattern-categories-registry.php | Registers a pattern category. |
| WP_Block_Pattern_Categories_Registry::unregister() wp-includes/class-wp-block-pattern-categories-registry.php | Unregisters a pattern category. |
| wp_get_environment_type() wp-includes/load.php | Retrieves the current environment type. |
| WP_REST_Block_Directory_Controller::get_items_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php | Checks whether a given request has permission to install and activate plugins. |
| WP_REST_Block_Directory_Controller::prepare_item_for_response() wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php | Parse block metadata for a block, and prepare it for an API response. |
| WP_REST_Block_Directory_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php | Retrieves the theme’s schema, conforming to JSON Schema. |
| WP_REST_Block_Directory_Controller::get_collection_params() wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php | Retrieves the search params for the blocks collection. |
| WP_REST_Plugins_Controller::get_plugin_data() wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php | Gets the plugin header data for a plugin. |
| WP_REST_Plugins_Controller::plugin_status_permission_check() wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php | Handle updating a plugin’s status. |
| WP_REST_Plugins_Controller::handle_plugin_status() wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php | Handle updating a plugin’s status. |
| WP_REST_Plugins_Controller::is_filesystem_available() wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php | Determine if the endpoints are available. |
| WP_REST_Plugins_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php | Retrieves the plugin’s schema, conforming to JSON Schema. |
| WP_REST_Plugins_Controller::get_collection_params() wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php | Retrieves the query params for the collections. |
| WP_REST_Plugins_Controller::get_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php | Checks if a given request has access to get a specific plugin. |
| WP_REST_Plugins_Controller::check_read_permission() wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php | Checks if the given plugin can be viewed by the current user. |
| WP_REST_Plugins_Controller::create_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php | Checks if a given request has access to upload plugins. |
| WP_REST_Plugins_Controller::create_item() wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php | Uploads a plugin and optionally activates it. |
| WP_REST_Plugins_Controller::update_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php | Checks if a given request has access to update a specific plugin. |
| WP_REST_Plugins_Controller::delete_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php | Checks if a given request has access to delete a specific plugin. |
| WP_REST_Plugins_Controller::delete_item() wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php | Deletes one plugin from the site. |
| WP_REST_Plugins_Controller::register_routes() wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php | Registers the routes for the plugins controller. |
| WP_REST_Plugins_Controller::get_items_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php | Checks if a given request has access to get plugins. |
| WP_REST_Block_Types_Controller::get_block() wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php | Get the block, if the name is valid. |
| WP_REST_Block_Types_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php | Retrieves the block type’ schema, conforming to JSON Schema. |
| WP_REST_Block_Types_Controller::get_collection_params() wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php | Retrieves the query params for collections. |
| WP_REST_Block_Types_Controller::register_routes() wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php | Registers the routes for block types. |
| WP_REST_Block_Types_Controller::check_read_permission() wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php | Checks whether a given block type should be visible. |
| WP_REST_Attachments_Controller::get_edit_media_item_args() wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php | Gets the request args for the edit item route. |
| WP_REST_Attachments_Controller::edit_media_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php | Checks if a given request has access to editing media. |
| WP_REST_Attachments_Controller::edit_media_item() wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php | Applies edits to a media item and creates a new attachment record. |
| create_initial_theme_features() wp-includes/theme.php | Creates the initial theme features when the ‘setup_theme’ action is fired. |
| register_theme_feature() wp-includes/theme.php | Registers a theme feature for use in add_theme_support() . |
| wp_check_comment_disallowed_list() wp-includes/comment.php | Checks if a comment contains disallowed characters or words. |
| rest_handle_multi_type_schema() wp-includes/rest-api.php | Handles getting the best type for a multi-type schema. |
| rest_stabilize_value() wp-includes/rest-api.php | Stabilizes a value following JSON Schema semantics. |
| rest_handle_doing_it_wrong() wp-includes/rest-api.php | Handles _doing_it_wrong errors. |
| register_block_script_handle() wp-includes/blocks.php | Finds a script handle for the selected block metadata field. It detects when a path to file was provided and finds a corresponding asset file with details necessary to register the script under automatically generated handle name. It returns unprocessed script handle otherwise. |
| WP_Sitemaps_Renderer::get_sitemap_index_xml() wp-includes/sitemaps/class-wp-sitemaps-renderer.php | Gets XML for a sitemap index. |
| WP_Sitemaps_Renderer::get_sitemap_xml() wp-includes/sitemaps/class-wp-sitemaps-renderer.php | Gets XML for a sitemap. |
| WP_Sitemaps_Renderer::check_for_simple_xml_availability() wp-includes/sitemaps/class-wp-sitemaps-renderer.php | Checks for the availability of the SimpleXML extension and errors if missing. |
| WP_Sitemaps_Stylesheet::get_sitemap_stylesheet() wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php | Returns the escaped XSL for all sitemaps, except index. |
| WP_Sitemaps_Stylesheet::get_sitemap_index_stylesheet() wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php | Returns the escaped XSL for the index sitemaps. |
| WP_Automatic_Updater::send_plugin_theme_email() wp-admin/includes/class-wp-automatic-updater.php | Sends an email upon the completion or failure of a plugin or theme background update. |
| wp_get_auto_update_message() wp-admin/includes/update.php | Determines the appropriate auto-update message to be displayed. |
| WP_Site_Health::get_test_plugin_theme_auto_updates() wp-admin/includes/class-wp-site-health.php | Tests if plugin and theme auto-updates appear to be configured correctly. |
| WP_Site_Health::get_test_file_uploads() wp-admin/includes/class-wp-site-health.php | Tests if ‘file_uploads’ directive in PHP.ini is turned off. |
| WP_Site_Health::detect_plugin_theme_auto_update_issues() wp-admin/includes/class-wp-site-health.php | Checks for potential issues with plugin and theme auto-updates. |
| WP_Site_Health::get_test_php_sessions() wp-admin/includes/class-wp-site-health.php | Tests if there’s an active PHP session that can affect loopback requests. |
| Plugin_Installer_Skin::do_overwrite() wp-admin/includes/class-plugin-installer-skin.php | Check if the plugin can be overwritten and output the HTML for overwriting a plugin on upload. |
| Theme_Installer_Skin::do_overwrite() wp-admin/includes/class-theme-installer-skin.php | Check if the theme can be overwritten and output the HTML for overwriting a theme on upload. |
| WP_MS_Themes_List_Table::column_autoupdates() wp-admin/includes/class-wp-ms-themes-list-table.php | Handles the auto-updates column output. |
| wp_ajax_toggle_auto_updates() wp-admin/includes/ajax-actions.php | Ajax handler to enable or disable plugin and theme auto-updates. |
| wp_theme_auto_update_setting_template() wp-admin/themes.php | Returns the JavaScript template used to display the auto-update setting for a theme. |
| is_favicon() wp-includes/query.php | Is the query for the favicon.ico file? |
| wp_dashboard_site_health() wp-admin/includes/dashboard.php | Displays the Site Health Status widget. |
| WP_Site_Health::wp_cron_scheduled_check() wp-admin/includes/class-wp-site-health.php | Runs the scheduled event to check and update the latest site health status for the website. |
| WP_Site_Health::get_test_php_default_timezone() wp-admin/includes/class-wp-site-health.php | Tests if the PHP default timezone is set to UTC. |
| WP_REST_Attachments_Controller::register_routes() wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php | Registers the routes for attachments. |
| WP_Block_Styles_Registry::register() wp-includes/class-wp-block-styles-registry.php | Registers a block style for the given block type. |
| WP_Block_Styles_Registry::unregister() wp-includes/class-wp-block-styles-registry.php | Unregisters a block style of the given block type. |
| WP_Image_Editor_Imagick::make_subsize() wp-includes/class-wp-image-editor-imagick.php | Create an image sub-size and return the image meta data value for it. |
| WP_Image_Editor_Imagick::maybe_exif_rotate() wp-includes/class-wp-image-editor-imagick.php | Check if a JPEG image has EXIF Orientation tag and rotate it if needed. |
| WP_Recovery_Mode_Email_Service::get_debug() wp-includes/class-wp-recovery-mode-email-service.php | Return debug information in an easy to manipulate format. |
| WP_Image_Editor_GD::make_subsize() wp-includes/class-wp-image-editor-gd.php | Create an image sub-size and return the image meta data value for it. |
| get_post_states() wp-admin/includes/template.php | Retrieves an array of post states from a post. |
| wp_update_image_subsizes() wp-admin/includes/image.php | If any of the currently registered image sub-sizes are missing, create them and update the image meta data. |
| WP_Site_Health_Auto_Updates::test_wp_automatic_updates_disabled() wp-admin/includes/class-wp-site-health-auto-updates.php | Checks if automatic updates are disabled. |
| WP_Privacy_Data_Removal_Requests_List_Table::column_email() wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php | Actions column. |
| WP_Privacy_Data_Removal_Requests_List_Table::column_next_steps() wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php | Next steps column. |
| wp_ajax_media_create_image_subsizes() wp-admin/includes/ajax-actions.php | Ajax handler for creating missing image sub-sizes for just uploaded images. |
| WP_MS_Sites_List_Table::site_states() wp-admin/includes/class-wp-ms-sites-list-table.php | Maybe output comma-separated site states. |
| WP_MS_Sites_List_Table::extra_tablenav() wp-admin/includes/class-wp-ms-sites-list-table.php | Extra controls to be displayed between bulk actions and pagination. |
| WP_Privacy_Data_Export_Requests_List_Table::column_email() wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php | Actions column. |
| WP_Privacy_Data_Export_Requests_List_Table::column_next_steps() wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php | Displays the next steps column. |
| WP_Recovery_Mode::handle_error() wp-includes/class-wp-recovery-mode.php | Handles a fatal error occurring. |
| WP_Recovery_Mode::handle_exit_recovery_mode() wp-includes/class-wp-recovery-mode.php | Handles a request to exit Recovery Mode. |
| is_privacy_policy() wp-includes/query.php | Determines whether the query is for the Privacy Policy page. |
| WP_Recovery_Mode_Key_Service::validate_recovery_mode_key() wp-includes/class-wp-recovery-mode-key-service.php | Verifies if the recovery mode key is correct. |
| WP_Recovery_Mode_Email_Service::maybe_send_recovery_mode_email() wp-includes/class-wp-recovery-mode-email-service.php | Sends the recovery mode email if the rate limit has not been sent. |
| WP_Recovery_Mode_Email_Service::send_recovery_mode_email() wp-includes/class-wp-recovery-mode-email-service.php | Sends the Recovery Mode email to the site admin email address. |
| WP_Recovery_Mode_Email_Service::get_cause() wp-includes/class-wp-recovery-mode-email-service.php | Gets the description indicating the possible cause for the error. |
| WP_Recovery_Mode_Cookie_Service::validate_cookie() wp-includes/class-wp-recovery-mode-cookie-service.php | Validates the recovery mode cookie. |
| WP_Recovery_Mode_Cookie_Service::get_session_id_from_cookie() wp-includes/class-wp-recovery-mode-cookie-service.php | Gets the session identifier from the cookie. |
| WP_Recovery_Mode_Cookie_Service::parse_cookie() wp-includes/class-wp-recovery-mode-cookie-service.php | Parses the cookie into its four parts. |
| WP_Recovery_Mode_Cookie_Service::recovery_mode_hash() wp-includes/class-wp-recovery-mode-cookie-service.php | Gets a form of |
| wp_get_extension_error_description() wp-includes/error-protection.php | Get a human readable description of an extension’s error. |
| WP_Fatal_Error_Handler::display_default_error_template() wp-includes/class-wp-fatal-error-handler.php | Displays the default PHP error template. |
| wp_get_update_php_annotation() wp-includes/functions.php | Returns the default annotation for the web hosting altering the “Update PHP” page URL. |
| wp_admin_bar_recovery_mode_menu() wp-includes/admin-bar.php | Adds a link to exit recovery mode when Recovery Mode is active. |
| WP_Debug_Data::get_sizes() wp-admin/includes/class-wp-debug-data.php | Fetches the sizes of the WordPress directories: |
| WP_Debug_Data::debug_data() wp-admin/includes/class-wp-debug-data.php | Static function for generating site debug data when required. |
| verify_file_signature() wp-admin/includes/file.php | Verifies the contents of a file against its ED25519 signature. |
| resume_theme() wp-admin/includes/theme.php | Tries to resume a single theme. |
| paused_themes_notice() wp-admin/includes/theme.php | Renders an admin notice in case some themes have been paused due to errors. |
| wp_recovery_mode_nag() wp-admin/includes/update.php | Displays a notice when the user is in recovery mode. |
| WP_Site_Health::get_test_ssl_support() wp-admin/includes/class-wp-site-health.php | Checks if the HTTP API can handle SSL/TLS requests. |
| WP_Site_Health::get_test_scheduled_events() wp-admin/includes/class-wp-site-health.php | Tests if scheduled events run as intended. |
| WP_Site_Health::get_test_background_updates() wp-admin/includes/class-wp-site-health.php | Tests if WordPress can run automated background updates. |
| WP_Site_Health::get_test_loopback_requests() wp-admin/includes/class-wp-site-health.php | Tests if loopbacks work as expected. |
| WP_Site_Health::get_test_http_requests() wp-admin/includes/class-wp-site-health.php | Tests if HTTP requests are blocked. |
| WP_Site_Health::get_test_rest_availability() wp-admin/includes/class-wp-site-health.php | Tests if the REST API is accessible. |
| WP_Site_Health::get_tests() wp-admin/includes/class-wp-site-health.php | Returns a set of tests that belong to the site status page. |
| WP_Site_Health::get_cron_tasks() wp-admin/includes/class-wp-site-health.php | Populates the list of cron events and store them to a class-wide variable. |
| WP_Site_Health::can_perform_loopback() wp-admin/includes/class-wp-site-health.php | Runs a loopback test on the site. |
| WP_Site_Health::get_test_wordpress_version() wp-admin/includes/class-wp-site-health.php | Tests for WordPress version and outputs it. |
| WP_Site_Health::get_test_plugin_version() wp-admin/includes/class-wp-site-health.php | Tests if plugins are outdated, or unnecessary. |
| WP_Site_Health::get_test_theme_version() wp-admin/includes/class-wp-site-health.php | Tests if themes are outdated, or unnecessary. |
| WP_Site_Health::get_test_php_version() wp-admin/includes/class-wp-site-health.php | Tests if the supplied PHP version is supported. |
| WP_Site_Health::get_test_php_extensions() wp-admin/includes/class-wp-site-health.php | Tests if required PHP modules are installed on the host. |
| WP_Site_Health::get_test_sql_server() wp-admin/includes/class-wp-site-health.php | Tests if the SQL server is up to date. |
| WP_Site_Health::get_test_utf8mb4_support() wp-admin/includes/class-wp-site-health.php | Tests if the database server is capable of using utf8mb4. |
| WP_Site_Health::get_test_dotorg_communication() wp-admin/includes/class-wp-site-health.php | Tests if the site can communicate with WordPress.org. |
| WP_Site_Health::get_test_is_in_debug_mode() wp-admin/includes/class-wp-site-health.php | Tests if debug information is enabled. |
| WP_Site_Health::get_test_https_status() wp-admin/includes/class-wp-site-health.php | Tests if the site is serving content over HTTPS. |
| resume_plugin() wp-admin/includes/plugin.php | Tries to resume a single plugin. |
| paused_plugins_notice() wp-admin/includes/plugin.php | Renders an admin notice in case some plugins have been paused due to errors. |
| validate_plugin_requirements() wp-admin/includes/plugin.php | Validates the plugin requirements for WordPress version and PHP version. |
| WP_Site_Health_Auto_Updates::test_check_wp_filesystem_method() wp-admin/includes/class-wp-site-health-auto-updates.php | Checks if we can access files without providing credentials. |
| WP_Site_Health_Auto_Updates::test_all_files_writable() wp-admin/includes/class-wp-site-health-auto-updates.php | Checks if core files are writable by the web user/group. |
| WP_Site_Health_Auto_Updates::test_accepts_dev_updates() wp-admin/includes/class-wp-site-health-auto-updates.php | Checks if the install is using a development branch and can use nightly packages. |
| WP_Site_Health_Auto_Updates::test_accepts_minor_updates() wp-admin/includes/class-wp-site-health-auto-updates.php | Checks if the site supports automatic minor updates. |
| WP_Site_Health_Auto_Updates::test_constants() wp-admin/includes/class-wp-site-health-auto-updates.php | Tests if auto-updates related constants are set correctly. |
| WP_Site_Health_Auto_Updates::test_wp_version_check_attached() wp-admin/includes/class-wp-site-health-auto-updates.php | Checks if updates are intercepted by a filter. |
| WP_Site_Health_Auto_Updates::test_filters_automatic_updater_disabled() wp-admin/includes/class-wp-site-health-auto-updates.php | Checks if automatic updates are disabled by a filter. |
| WP_Site_Health_Auto_Updates::test_if_failed_update() wp-admin/includes/class-wp-site-health-auto-updates.php | Checks if automatic updates have tried to run, but failed, previously. |
| WP_Site_Health_Auto_Updates::test_vcs_abspath() wp-admin/includes/class-wp-site-health-auto-updates.php | Checks if WordPress is controlled by a VCS (Git, Subversion etc). |
| wp_ajax_health_check_get_sizes() wp-admin/includes/ajax-actions.php | Ajax handler for site health check to get directories and database sizes. |
| wp_ajax_health_check_dotorg_communication() wp-admin/includes/ajax-actions.php | Ajax handler for site health checks on server communication. |
| wp_ajax_health_check_background_updates() wp-admin/includes/ajax-actions.php | Ajax handler for site health checks on background updates. |
| wp_ajax_health_check_loopback_requests() wp-admin/includes/ajax-actions.php | Ajax handler for site health checks on loopback requests. |
| wp_direct_php_update_button() wp-includes/functions.php | Displays a button directly linking to a PHP update process. |
| wp_check_site_meta_support_prefilter() wp-includes/ms-site.php | Aborts calls to site meta if it is not supported. |
| wp_validate_site_data() wp-includes/ms-site.php | Validates data for a site prior to inserting or updating in the database. |
| wp_initialize_site() wp-includes/ms-site.php | Runs the initialization routine for a given site. |
| wp_uninitialize_site() wp-includes/ms-site.php | Runs the uninitialization routine for a given site. |
| wp_insert_site() wp-includes/ms-site.php | Inserts a new site into the database. |
| wp_update_site() wp-includes/ms-site.php | Updates a site in the database. |
| wp_delete_site() wp-includes/ms-site.php | Deletes a site from the database. |
| _wp_die_process_input() wp-includes/functions.php | Processes arguments passed to wp_die() consistently for its handlers. |
| wp_dashboard_php_nag() wp-admin/includes/dashboard.php | Displays the PHP update nag. |
| populate_network_meta() wp-admin/includes/schema.php | Creates WordPress network meta and sets the default values. |
| WP_REST_Search_Controller::__construct() wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php | Constructor. |
| WP_REST_Search_Controller::get_items() wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php | Retrieves a collection of search results. |
| WP_REST_Search_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php | Retrieves the item schema, conforming to JSON Schema. |
| WP_REST_Search_Controller::get_collection_params() wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php | Retrieves the query params for the search results collection. |
| WP_REST_Search_Controller::get_search_handler() wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php | Gets the search handler to handle the current request. |
| WP_REST_Themes_Controller::register_routes() wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php | Registers the routes for themes. |
| WP_REST_Themes_Controller::get_items_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php | Checks if a given request has access to read the theme. |
| WP_REST_Themes_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php | Retrieves the theme’s schema, conforming to JSON Schema. |
| WP_REST_Themes_Controller::get_collection_params() wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php | Retrieves the search params for the themes collection. |
| WP_REST_Autosaves_Controller::register_routes() wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php | Registers the routes for autosaves. |
| WP_REST_Autosaves_Controller::get_items_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php | Checks if a given request has access to get autosaves. |
| WP_REST_Autosaves_Controller::create_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php | Checks if a given request has access to create an autosave revision. |
| WP_REST_Autosaves_Controller::get_item() wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php | Get the autosave, if the ID is valid. |
| WP_REST_Autosaves_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php | Retrieves the autosave’s schema, conforming to JSON Schema. |
| WP_REST_Autosaves_Controller::create_post_autosave() wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php | Creates autosave for the specified post. |
| WP_REST_Block_Renderer_Controller::register_routes() wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php | Registers the necessary REST API routes, one for each dynamic block. |
| WP_REST_Block_Renderer_Controller::get_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php | Checks if a given request has access to read blocks. |
| WP_REST_Block_Renderer_Controller::get_item() wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php | Returns block output from block’s registered render_callback. |
| WP_REST_Block_Renderer_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php | Retrieves block’s output schema, conforming to JSON Schema. |
| wp_default_packages_vendor() wp-includes/script-loader.php | Registers all the WordPress vendor scripts that are in the standardized |
| wp_default_packages_inline_scripts() wp-includes/script-loader.php | Adds inline scripts required for the WordPress JavaScript packages. |
| WP_Block_Type_Registry::register() wp-includes/class-wp-block-type-registry.php | Registers a block type. |
| WP_Block_Type_Registry::unregister() wp-includes/class-wp-block-type-registry.php | Unregisters a block type. |
| do_block_editor_incompatible_meta_box() wp-admin/includes/template.php | Renders a “fake” meta box with an information message, shown on the block editor, when an incompatible meta box is found. |
| register_and_do_post_meta_boxes() wp-admin/includes/meta-boxes.php | Registers the default post meta boxes, and runs the |
| WP_REST_Posts_Controller::get_schema_links() wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php | Retrieves Link Description Objects that should be added to the Schema for the posts collection. |
| WP_REST_Attachments_Controller::check_upload_size() wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php | Determine if uploaded file exceeds space quota on multisite. |
| wp_register_comment_personal_data_exporter() wp-includes/comment.php | Registers the personal data exporter for comments. |
| wp_comments_personal_data_exporter() wp-includes/comment.php | Finds and exports personal data associated with an email address from the comments table. |
| wp_register_comment_personal_data_eraser() wp-includes/comment.php | Registers the personal data eraser for comments. |
| wp_comments_personal_data_eraser() wp-includes/comment.php | Erases personal data associated with an email address from the comments table. |
| wp_privacy_anonymize_data() wp-includes/functions.php | Returns uniform “anonymous” data by type. |
| wp_validate_user_request_key() wp-includes/user.php | Validates a user request by comparing the key with the request’s key. |
| _wp_privacy_send_request_confirmation_notification() wp-includes/user.php | Notifies the site administrator via email when a request is confirmed. |
| _wp_privacy_send_erasure_fulfillment_notification() wp-includes/user.php | Notifies the user when their erasure request is fulfilled. |
| _wp_privacy_account_request_confirmed_message() wp-includes/user.php | Returns request confirmation message HTML. |
| wp_create_user_request() wp-includes/user.php | Creates and logs a user request to perform a specific action. |
| wp_user_request_action_description() wp-includes/user.php | Gets action description from the name and return a string. |
| wp_send_user_request() wp-includes/user.php | Send a confirmation request email to confirm an action. |
| wp_register_user_personal_data_exporter() wp-includes/user.php | Registers the personal data exporter for users. |
| wp_user_personal_data_exporter() wp-includes/user.php | Finds and exports personal data associated with an email address from the user and user_meta table. |
| wp_register_media_personal_data_exporter() wp-includes/media.php | Registers the personal data exporter for media. |
| wp_media_personal_data_exporter() wp-includes/media.php | Finds and exports attachments associated with an email address. |
| WP_Privacy_Policy_Content::notice() wp-admin/includes/class-wp-privacy-policy-content.php | Add a notice with a link to the guide when editing the privacy policy page. |
| WP_Privacy_Policy_Content::privacy_policy_guide() wp-admin/includes/class-wp-privacy-policy-content.php | Output the privacy policy guide together with content from the theme and plugins. |
| WP_Privacy_Policy_Content::get_default_content() wp-admin/includes/class-wp-privacy-policy-content.php | Return the default suggested privacy policy content. |
| WP_Privacy_Policy_Content::add_suggested_content() wp-admin/includes/class-wp-privacy-policy-content.php | Add the suggested privacy policy text to the policy postbox. |
| WP_Privacy_Policy_Content::policy_text_changed_notice() wp-admin/includes/class-wp-privacy-policy-content.php | Output a warning when some privacy info has changed. |
| _wp_privacy_settings_filter_draft_page_titles() wp-admin/includes/misc.php | Appends ‘(Draft)’ to draft page titles in the privacy page dropdown so that unpublished content is obvious. |
| wp_privacy_process_personal_data_export_page() wp-admin/includes/privacy-tools.php | Intercept personal data exporter page Ajax responses in order to assemble the personal data export file. |
| wp_privacy_generate_personal_data_export_file() wp-admin/includes/privacy-tools.php | Generate the personal data export file. |
| wp_privacy_send_personal_data_export_email() wp-admin/includes/privacy-tools.php | Send an email to the user with a link to the personal data export file |
| WP_Privacy_Requests_Table::get_timestamp_as_date() wp-admin/includes/class-wp-privacy-requests-table.php | Convert timestamp for display. |
| WP_Privacy_Requests_Table::get_columns() wp-admin/includes/class-wp-privacy-requests-table.php | Get columns to show in the list table. |
| WP_Privacy_Requests_Table::get_bulk_actions() wp-admin/includes/class-wp-privacy-requests-table.php | Get bulk actions. |
| wp_privacy_process_personal_data_erasure_page() wp-admin/includes/privacy-tools.php | Mark erasure requests as completed after processing is finished. |
| _wp_privacy_resend_request() wp-admin/includes/privacy-tools.php | Resend an existing request and return the result. |
| _wp_privacy_completed_request() wp-admin/includes/privacy-tools.php | Marks a request as completed by the admin and logs the current timestamp. |
| _wp_personal_data_handle_actions() wp-admin/includes/privacy-tools.php | Handle list table actions. |
| wp_add_privacy_policy_content() wp-admin/includes/plugin.php | Declares a helper function for adding content to the Privacy Policy Guide. |
| wp_ajax_wp_privacy_export_personal_data() wp-admin/includes/ajax-actions.php | Ajax handler for exporting a user’s personal data. |
| wp_ajax_wp_privacy_erase_personal_data() wp-admin/includes/ajax-actions.php | Ajax handler for erasing personal data. |
| wp_start_scraping_edited_file_errors() wp-includes/load.php | Start scraping edited file errors. |
| wp_unschedule_hook() wp-includes/cron.php | Unschedules all events attached to the hook. |
| WP_Customize_Manager::handle_override_changeset_lock_request() wp-includes/class-wp-customize-manager.php | Removes changeset lock when take over request is sent via Ajax. |
| WP_Customize_Manager::handle_changeset_trash_request() wp-includes/class-wp-customize-manager.php | Handles request to trash a changeset. |
| WP_REST_Posts_Controller::check_template() wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php | Checks whether the template is valid for the given post. |
| wp_is_uuid() wp-includes/functions.php | Validates that a UUID is valid. |
| wp_site_admin_email_change_notification() wp-includes/functions.php | Sends an email to the old site admin email address when the site admin email address changes. |
| WP_Widget_Media_Gallery::render_control_template_scripts() wp-includes/widgets/class-wp-widget-media-gallery.php | Render form template scripts. |
| WP_Widget_Media_Gallery::__construct() wp-includes/widgets/class-wp-widget-media-gallery.php | Constructor. |
| WP_Widget_Media_Gallery::get_instance_schema() wp-includes/widgets/class-wp-widget-media-gallery.php | Get schema for properties of a widget instance (item). |
| WP_Widget_Custom_HTML::add_help_text() wp-includes/widgets/class-wp-widget-custom-html.php | Add help text to widgets admin screen. |
| WP_Widget_Custom_HTML::__construct() wp-includes/widgets/class-wp-widget-custom-html.php | Sets up a new Custom HTML widget instance. |
| WP_Customize_Nav_Menu_Locations_Control::content_template() wp-includes/customize/class-wp-customize-nav-menu-locations-control.php | JS/Underscore template for the control UI. |
| WP_Customize_Themes_Panel::content_template() wp-includes/customize/class-wp-customize-themes-panel.php | An Underscore (JS) template for this panel’s content (but not its container). |
| WP_Customize_Themes_Panel::render_template() wp-includes/customize/class-wp-customize-themes-panel.php | An Underscore (JS) template for rendering this panel’s container. |
| WP_Customize_Themes_Section::render_template() wp-includes/customize/class-wp-customize-themes-section.php | Render a themes section as a JS template. |
| WP_Customize_Themes_Section::filter_bar_content_template() wp-includes/customize/class-wp-customize-themes-section.php | Render the filter bar portion of a themes section as a JS template. |
| WP_Customize_Date_Time_Control::get_month_choices() wp-includes/customize/class-wp-customize-date-time-control.php | Generate options for the month Select. |
| WP_Customize_Date_Time_Control::get_timezone_info() wp-includes/customize/class-wp-customize-date-time-control.php | Get timezone info. |
| WP_Customize_Media_Control::get_default_button_labels() wp-includes/customize/class-wp-customize-media-control.php | Get default button labels. |
| update_network_option_new_admin_email() wp-includes/ms-functions.php | Sends a confirmation request email when a change of network admin email address is attempted. |
| wp_network_admin_email_change_notification() wp-includes/ms-functions.php | Sends an email to the old network admin email address when the network admin email address changes. |
| wp_load_press_this() wp-admin/press-this.php | |
| get_site_screen_help_tab_args() wp-admin/includes/ms.php | Returns the arguments for the help tab on the Edit Site screens. |
| get_site_screen_help_sidebar_content() wp-admin/includes/ms.php | Returns the content for the help sidebar on the Edit Site screens. |
| wp_ajax_edit_theme_plugin_file() wp-admin/includes/ajax-actions.php | Ajax handler for editing a theme or plugin file. |
| wp_print_file_editor_templates() wp-admin/includes/file.php | Prints file editor templates (for plugins and themes). |
| wp_edit_theme_plugin_file() wp-admin/includes/file.php | Attempts to edit a file for a theme or plugin. |
| WP_REST_Users_Controller::get_user() wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php | Get the user, if the ID is valid. |
| WP_REST_Revisions_Controller::get_revision() wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php | Get the revision, if the ID is valid. |
| WP_REST_Revisions_Controller::get_parent() wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php | Get the parent post, if the ID is valid. |
| WP_REST_Terms_Controller::get_term() wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php | Get the term, if the ID is valid. |
| WP_REST_Posts_Controller::get_post() wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php | Gets the post, if the ID is valid. |
| WP_REST_Comments_Controller::get_comment() wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php | Get the comment, if the ID is valid. |
| WP_oEmbed_Controller::get_proxy_item_permissions_check() wp-includes/class-wp-oembed-controller.php | Checks if current user can make a proxy oEmbed request. |
| WP_oEmbed_Controller::get_proxy_item() wp-includes/class-wp-oembed-controller.php | Callback for the proxy API endpoint. |
| WP_Http::validate_redirects() wp-includes/class-wp-http.php | Validate redirected URLs. |
| WP_Widget_Media_Audio::__construct() wp-includes/widgets/class-wp-widget-media-audio.php | Constructor. |
| WP_Widget_Media_Audio::get_instance_schema() wp-includes/widgets/class-wp-widget-media-audio.php | Get schema for properties of a widget instance (item). |
| WP_Widget_Media_Video::__construct() wp-includes/widgets/class-wp-widget-media-video.php | Constructor. |
| WP_Widget_Media_Video::get_instance_schema() wp-includes/widgets/class-wp-widget-media-video.php | Get schema for properties of a widget instance (item). |
| WP_Widget_Media::get_instance_schema() wp-includes/widgets/class-wp-widget-media.php | Get schema for properties of a widget instance (item). |
| WP_Widget_Media_Image::get_instance_schema() wp-includes/widgets/class-wp-widget-media-image.php | Get schema for properties of a widget instance (item). |
| WP_Widget_Media_Image::render_control_template_scripts() wp-includes/widgets/class-wp-widget-media-image.php | Render form template scripts. |
| WP_Widget_Media_Image::__construct() wp-includes/widgets/class-wp-widget-media-image.php | Constructor. |
| wp_print_community_events_markup() wp-admin/includes/dashboard.php | Prints the markup for the Community Events section of the Events and News Dashboard widget. |
| wp_print_community_events_templates() wp-admin/includes/dashboard.php | Renders the events templates for the Event and News widget. |
| wp_dashboard_events_news() wp-admin/includes/dashboard.php | Renders the Events and News dashboard widget. |
| WP_Community_Events::format_event_data_time() wp-admin/includes/class-wp-community-events.php | Adds formatted date and time items for each event in an API response. |
| WP_Community_Events::get_events() wp-admin/includes/class-wp-community-events.php | Gets data about events near a particular location. |
| rest_sanitize_value_from_schema() wp-includes/rest-api.php | Sanitize a value based on a schema. |
| rest_validate_value_from_schema() wp-includes/rest-api.php | Validate a value based on a schema. |
| WP_Customize_Manager::_sanitize_background_setting() wp-includes/class-wp-customize-manager.php | Callback for validating a background setting value. |
| WP_Customize_Manager::_validate_header_video() wp-includes/class-wp-customize-manager.php | Callback for validating the header_video value. |
| WP_Customize_Manager::_validate_external_header_video() wp-includes/class-wp-customize-manager.php | Callback for validating the external_header_video value. |
| WP_Customize_Manager::save_changeset_post() wp-includes/class-wp-customize-manager.php | Saves the post for the loaded changeset. |
| get_header_video_settings() wp-includes/theme.php | Retrieves header video settings. |
| _WP_Editors::get_translation() wp-includes/class-wp-editor.php | |
| WP_REST_Meta_Fields::delete_meta_value() wp-includes/rest-api/fields/class-wp-rest-meta-fields.php | Deletes a meta value for an object. |
| WP_REST_Meta_Fields::update_multi_meta_value() wp-includes/rest-api/fields/class-wp-rest-meta-fields.php | Updates multiple meta values for an object. |
| WP_REST_Meta_Fields::update_meta_value() wp-includes/rest-api/fields/class-wp-rest-meta-fields.php | Updates a meta value for an object. |
| WP_REST_Meta_Fields::get_field_schema() wp-includes/rest-api/fields/class-wp-rest-meta-fields.php | Retrieves the object’s meta schema, conforming to JSON Schema. |
| WP_REST_Meta_Fields::update_value() wp-includes/rest-api/fields/class-wp-rest-meta-fields.php | Updates meta values. |
| WP_REST_Users_Controller::check_username() wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php | Check a username for the REST API. |
| WP_REST_Users_Controller::check_user_password() wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php | Check a user password for the REST API. |
| WP_REST_Users_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php | Retrieves the user’s schema, conforming to JSON Schema. |
| WP_REST_Users_Controller::get_collection_params() wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php | Retrieves the query params for collections. |
| WP_REST_Users_Controller::check_role_update() wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php | Determines if the current user is allowed to make the desired roles change. |
| WP_REST_Users_Controller::delete_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php | Checks if a given request has access delete a user. |
| WP_REST_Users_Controller::delete_item() wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php | Deletes a single user. |
| WP_REST_Users_Controller::get_current_item() wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php | Retrieves the current user. |
| WP_REST_Users_Controller::create_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php | Checks if a given request has access create users. |
| WP_REST_Users_Controller::create_item() wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php | Creates a single user. |
| WP_REST_Users_Controller::update_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php | Checks if a given request has access to update a user. |
| WP_REST_Users_Controller::update_item() wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php | Updates a single user. |
| WP_REST_Users_Controller::register_routes() wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php | Registers the routes for users. |
| WP_REST_Users_Controller::check_reassign() wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php | Checks for a valid value for the reassign parameter when deleting users. |
| WP_REST_Users_Controller::get_items_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php | Permissions check for getting all users. |
| WP_REST_Users_Controller::get_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php | Checks if a given request has access to read a user. |
| WP_REST_Revisions_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php | Retrieves the revision’s schema, conforming to JSON Schema. |
| WP_REST_Revisions_Controller::get_collection_params() wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php | Retrieves the query params for collections. |
| WP_REST_Revisions_Controller::delete_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php | Checks if a given request has access to delete a revision. |
| WP_REST_Revisions_Controller::delete_item() wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php | Deletes a single revision. |
| WP_REST_Attachments_Controller::upload_from_file() wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php | Handles an upload via multipart/form-data ($_FILES). |
| WP_REST_Revisions_Controller::register_routes() wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php | Registers the routes for revisions based on post types supporting revisions. |
| WP_REST_Revisions_Controller::get_items_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php | Checks if a given request has access to get revisions. |
| WP_REST_Revisions_Controller::get_items() wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php | Gets a collection of revisions. |
| WP_REST_Attachments_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php | Retrieves the attachment’s schema, conforming to JSON Schema. |
| WP_REST_Attachments_Controller::upload_from_data() wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php | Handles an upload via raw POST data. |
| WP_REST_Attachments_Controller::get_collection_params() wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php | Retrieves the query params for collections of attachments. |
| WP_REST_Attachments_Controller::create_item() wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php | Creates a single attachment. |
| WP_REST_Attachments_Controller::update_item() wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php | Updates a single attachment. |
| WP_REST_Attachments_Controller::create_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php | Checks if a given request has access to create an attachment. |
| WP_REST_Post_Statuses_Controller::get_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php | Checks if a given request has access to read a post status. |
| WP_REST_Post_Statuses_Controller::get_item() wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php | Retrieves a specific post status. |
| WP_REST_Post_Statuses_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php | Retrieves the post status’ schema, conforming to JSON Schema. |
| WP_REST_Post_Statuses_Controller::register_routes() wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php | Registers the routes for post statuses. |
| WP_REST_Post_Statuses_Controller::get_items_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php | Checks whether a given request has permission to read post statuses. |
| WP_REST_Settings_Controller::update_item() wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php | Updates settings for the settings object. |
| WP_REST_Terms_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php | Retrieves the term’s schema, conforming to JSON Schema. |
| WP_REST_Terms_Controller::get_collection_params() wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php | Retrieves the query params for collections. |
| WP_REST_Terms_Controller::delete_item() wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php | Deletes a single term from a taxonomy. |
| WP_REST_Terms_Controller::create_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php | Checks if a request has access to create a term. |
| WP_REST_Terms_Controller::create_item() wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php | Creates a single term in a taxonomy. |
| WP_REST_Terms_Controller::update_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php | Checks if a request has access to update the specified term. |
| WP_REST_Terms_Controller::update_item() wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php | Updates a single term from a taxonomy. |
| WP_REST_Terms_Controller::delete_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php | Checks if a request has access to delete the specified term. |
| WP_REST_Terms_Controller::register_routes() wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php | Registers the routes for terms. |
| WP_REST_Terms_Controller::get_items_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php | Checks if a request has access to read terms in the specified taxonomy. |
| WP_REST_Terms_Controller::get_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php | Checks if a request has access to read or edit the specified term. |
| WP_REST_Posts_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php | Retrieves the post’s schema, conforming to JSON Schema. |
| WP_REST_Posts_Controller::get_collection_params() wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php | Retrieves the query params for the posts collection. |
| WP_REST_Posts_Controller::sanitize_post_statuses() wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php | Sanitizes and validates the list of post statuses, including whether the user can query private statuses. |
| WP_REST_Posts_Controller::handle_status_param() wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php | Determines validity and normalizes the given status parameter. |
| WP_REST_Posts_Controller::handle_featured_media() wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php | Determines the featured media based on a request param. |
| WP_REST_Posts_Controller::prepare_item_for_database() wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php | Prepares a single post for create or update. |
| WP_REST_Posts_Controller::create_item() wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php | Creates a single post. |
| WP_REST_Posts_Controller::update_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php | Checks if a given request has access to update a post. |
| WP_REST_Posts_Controller::delete_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php | Checks if a given request has access to delete a post. |
| WP_REST_Posts_Controller::delete_item() wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php | Deletes a single post. |
| WP_REST_Posts_Controller::get_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php | Checks if a given request has access to read a post. |
| WP_REST_Posts_Controller::create_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php | Checks if a given request has access to create a post. |
| WP_REST_Posts_Controller::register_routes() wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php | Registers the routes for posts. |
| WP_REST_Posts_Controller::get_items_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php | Checks if a given request has access to read posts. |
| WP_REST_Posts_Controller::get_items() wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php | Retrieves a collection of posts. |
| WP_REST_Taxonomies_Controller::get_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php | Checks if a given request has access to a taxonomy. |
| WP_REST_Taxonomies_Controller::get_item() wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php | Retrieves a specific taxonomy. |
| WP_REST_Taxonomies_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php | Retrieves the taxonomy’s schema, conforming to JSON Schema. |
| WP_REST_Taxonomies_Controller::get_collection_params() wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php | Retrieves the query params for collections. |
| WP_REST_Taxonomies_Controller::register_routes() wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php | Registers the routes for taxonomies. |
| WP_REST_Taxonomies_Controller::get_items_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php | Checks whether a given request has permission to read taxonomies. |
| WP_REST_Post_Types_Controller::register_routes() wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php | Registers the routes for post types. |
| WP_REST_Post_Types_Controller::get_items_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php | Checks whether a given request has permission to read types. |
| WP_REST_Post_Types_Controller::get_item() wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php | Retrieves a specific post type. |
| WP_REST_Post_Types_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php | Retrieves the post type’s schema, conforming to JSON Schema. |
| WP_REST_Controller::get_collection_params() wp-includes/rest-api/endpoints/class-wp-rest-controller.php | Retrieves the query params for the collections. |
| WP_REST_Controller::get_context_param() wp-includes/rest-api/endpoints/class-wp-rest-controller.php | Retrieves the magical context param. |
| WP_REST_Controller::delete_item() wp-includes/rest-api/endpoints/class-wp-rest-controller.php | Deletes one item from the collection. |
| WP_REST_Controller::prepare_item_for_database() wp-includes/rest-api/endpoints/class-wp-rest-controller.php | Prepares one item for create or update operation. |
| WP_REST_Controller::prepare_item_for_response() wp-includes/rest-api/endpoints/class-wp-rest-controller.php | Prepares the item for the REST response. |
| WP_REST_Controller::delete_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-controller.php | Checks if a given request has access to delete a specific item. |
| WP_REST_Controller::get_item() wp-includes/rest-api/endpoints/class-wp-rest-controller.php | Retrieves one item from the collection. |
| WP_REST_Controller::create_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-controller.php | Checks if a given request has access to create items. |
| WP_REST_Controller::create_item() wp-includes/rest-api/endpoints/class-wp-rest-controller.php | Creates one item from the collection. |
| WP_REST_Controller::update_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-controller.php | Checks if a given request has access to update a specific item. |
| WP_REST_Controller::update_item() wp-includes/rest-api/endpoints/class-wp-rest-controller.php | Updates one item from the collection. |
| WP_REST_Controller::register_routes() wp-includes/rest-api/endpoints/class-wp-rest-controller.php | Registers the routes for the objects of the controller. |
| WP_REST_Controller::get_items_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-controller.php | Checks if a given request has access to get items. |
| WP_REST_Controller::get_items() wp-includes/rest-api/endpoints/class-wp-rest-controller.php | Retrieves a collection of items. |
| WP_REST_Controller::get_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-controller.php | Checks if a given request has access to get a specific item. |
| WP_REST_Comments_Controller::get_item_schema() wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php | Retrieves the comment’s schema, conforming to JSON Schema. |
| WP_REST_Comments_Controller::get_collection_params() wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php | Retrieves the query params for collections. |
| WP_REST_Comments_Controller::prepare_item_for_database() wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php | Prepares a single comment to be inserted into the database. |
| WP_REST_Comments_Controller::update_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php | Checks if a given REST request has access to update a comment. |
| WP_REST_Comments_Controller::update_item() wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php | Updates a comment. |
| WP_REST_Comments_Controller::delete_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php | Checks if a given request has access to delete a comment. |
| WP_REST_Comments_Controller::delete_item() wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php | Deletes a comment. |
| WP_REST_Comments_Controller::get_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php | Checks if a given request has access to read the comment. |
| WP_REST_Comments_Controller::create_item_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php | Checks if a given request has access to create a comment. |
| WP_REST_Comments_Controller::create_item() wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php | Creates a comment. |
| WP_REST_Comments_Controller::register_routes() wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php | Registers the routes for comments. |
| WP_REST_Comments_Controller::get_items_permissions_check() wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php | Checks if a given request has access to read comments. |
| wp_check_comment_data_max_lengths() wp-includes/comment.php | Compares the lengths of comment data against the maximum character limits. |
| wp_check_comment_flood() wp-includes/comment.php | Checks whether comment flooding is occurring. |
| WP_Customize_Nav_Menus::print_post_type_container() wp-includes/class-wp-customize-nav-menus.php | Prints the markup for new menu items. |
| WP_Customize_Nav_Menus::insert_auto_draft_post() wp-includes/class-wp-customize-nav-menus.php | Adds a new |
| WP_Customize_Nav_Menus::ajax_insert_auto_draft_post() wp-includes/class-wp-customize-nav-menus.php | Ajax handler for adding a new auto-draft post. |
| WP_Customize_Background_Position_Control::content_template() wp-includes/customize/class-wp-customize-background-position-control.php | Render a JS template for the content of the position control. |
| WP_Customize_Custom_CSS_Setting::validate() wp-includes/customize/class-wp-customize-custom-css-setting.php | Validate a received value for being valid CSS. |
| WP_Customize_Nav_Menu_Item_Setting::get_original_title() wp-includes/customize/class-wp-customize-nav-menu-item-setting.php | Get original title. |
| WP_Customize_Nav_Menu_Item_Setting::get_type_label() wp-includes/customize/class-wp-customize-nav-menu-item-setting.php | Get type label. |
| register_initial_settings() wp-includes/option.php | Registers default settings available in WordPress. |
| WP_Customize_Manager::validate_setting_values() wp-includes/class-wp-customize-manager.php | Validates setting values. |
| WP_Customize_Setting::validate() wp-includes/class-wp-customize-setting.php | Validates an input. |
| wp_localize_jquery_ui_datepicker() wp-includes/script-loader.php | Localizes the jQuery UI datepicker. |
| _deprecated_hook() wp-includes/functions.php | Marks a deprecated action or filter hook as deprecated and throws a notice. |
| wp_print_admin_notice_templates() wp-admin/includes/update.php | Prints the JavaScript templates for update admin notices. |
| network_edit_site_nav() wp-admin/includes/ms.php | Outputs the HTML for a network’s “Edit Site” tabular interface. |
| wp_ajax_search_install_plugins() wp-admin/includes/ajax-actions.php | Ajax handler for searching plugins to install. |
| wp_ajax_delete_plugin() wp-admin/includes/ajax-actions.php | Ajax handler for deleting a plugin. |
| wp_ajax_search_plugins() wp-admin/includes/ajax-actions.php | Ajax handler for searching plugins. |
| wp_ajax_install_theme() wp-admin/includes/ajax-actions.php | Ajax handler for installing a theme. |
| wp_ajax_update_theme() wp-admin/includes/ajax-actions.php | Ajax handler for updating a theme. |
| wp_ajax_delete_theme() wp-admin/includes/ajax-actions.php | Ajax handler for deleting a theme. |
| wp_ajax_install_plugin() wp-admin/includes/ajax-actions.php | Ajax handler for installing a plugin. |
| WP_Metadata_Lazyloader::reset_queue() wp-includes/class-wp-metadata-lazyloader.php | Resets lazy-load queue for a given object type. |
| WP_Metadata_Lazyloader::queue_objects() wp-includes/class-wp-metadata-lazyloader.php | Adds objects to the metadata lazy-load queue. |
| WP_Customize_Manager::get_previewable_devices() wp-includes/class-wp-customize-manager.php | Returns a list of devices to allow previewing. |
| WP_Image_Editor_Imagick::strip_meta() wp-includes/class-wp-image-editor-imagick.php | Strips all image meta except color profiles from an image. |
| unregister_taxonomy() wp-includes/taxonomy.php | Unregisters a taxonomy. |
| wp_authenticate_email_password() wp-includes/user.php | Authenticates a user using the email and password. |
| wp_add_inline_script() wp-includes/functions.wp-scripts.php | Adds extra code to a registered script. |
| unregister_post_type() wp-includes/post.php | Unregisters a post type. |
| WP_Customize_Partial::render() wp-includes/customize/class-wp-customize-partial.php | Renders the template partial involving the associated settings. |
| WP_Customize_Selective_Refresh::export_preview_data() wp-includes/customize/class-wp-customize-selective-refresh.php | Exports data in preview after it has finished rendering so that partials can be added at runtime. |
| WP_User::__unset() wp-includes/class-wp-user.php | Magic method for unsetting a certain custom field. |
| rest_cookie_check_errors() wp-includes/rest-api.php | Checks for errors when using cookie-based authentication. |
| rest_handle_deprecated_function() wp-includes/rest-api.php | Handles _deprecated_function() errors. |
| rest_handle_deprecated_argument() wp-includes/rest-api.php | Handles _deprecated_argument() errors. |
| register_rest_route() wp-includes/rest-api.php | Registers a REST API route. |
| is_embed() wp-includes/query.php | Is the query for an embedded post? |
| wp_embed_excerpt_more() wp-includes/embed.php | Filters the string in the ‘more’ link displayed after a trimmed excerpt. |
| get_post_embed_html() wp-includes/embed.php | Retrieves the embed code for a specific post. |
| WP_Customize_Manager::customize_pane_settings() wp-includes/class-wp-customize-manager.php | Prints JavaScript settings for parent window. |
| WP_Customize_Manager::get_document_title_template() wp-includes/class-wp-customize-manager.php | Gets the template string for the Customizer pane document title. |
| get_the_author_posts_link() wp-includes/author-template.php | Retrieves an HTML link to the author page of the current post’s author. |
| add_term_meta() wp-includes/taxonomy.php | Adds metadata to a term. |
| update_term_meta() wp-includes/taxonomy.php | Updates term metadata. |
| wp_get_document_title() wp-includes/general-template.php | Returns document title for the current page. |
| WP_REST_Request::sanitize_params() wp-includes/rest-api/class-wp-rest-request.php | Sanitizes (where possible) the params on the request. |
| WP_REST_Request::has_valid_params() wp-includes/rest-api/class-wp-rest-request.php | Checks whether this request is valid according to its attributes. |
| WP_REST_Request::parse_json_params() wp-includes/rest-api/class-wp-rest-request.php | Parses the JSON parameters. |
| WP_REST_Server::dispatch() wp-includes/rest-api/class-wp-rest-server.php | Matches the request to a callback and call it. |
| WP_REST_Server::get_namespace_index() wp-includes/rest-api/class-wp-rest-server.php | Retrieves the index for a namespace. |
| WP_REST_Server::serve_request() wp-includes/rest-api/class-wp-rest-server.php | Handles serving a REST API request. |
| WP_oEmbed_Controller::register_routes() wp-includes/class-wp-oembed-controller.php | Register the oEmbed REST API route. |
| get_password_reset_key() wp-includes/user.php | Creates, stores, then returns a password reset key for user. |
| WP_Term::get_instance() wp-includes/class-wp-term.php | Retrieve WP_Term instance. |
| wp_handle_comment_submission() wp-includes/comment.php | Handles the submission of a comment, usually posted to wp-comments-post.php via a comment form. |
| get_the_comments_navigation() wp-includes/link-template.php | Retrieves navigation to next/previous set of comments, when applicable. |
| get_the_comments_pagination() wp-includes/link-template.php | Retrieves a paginated navigation to next/previous set of comments, when applicable. |
| WP_Screen::render_list_table_columns_preferences() wp-admin/includes/class-wp-screen.php | Renders the list table columns preferences. |
| WP_Screen::set_screen_reader_content() wp-admin/includes/class-wp-screen.php | Adds accessible hidden headings and text for the screen. |
| wp_admin_bar_customize_menu() wp-includes/admin-bar.php | Adds the “Customize” link to the Toolbar. |
| wp_xmlrpc_server::_toggle_sticky() wp-includes/class-wp-xmlrpc-server.php | Encapsulate the logic for sticking a post and determining if the user has permission to do so |
| WP_Customize_Nav_Menu_Item_Control::content_template() wp-includes/customize/class-wp-customize-nav-menu-item-control.php | JS/Underscore template for the control UI. |
| WP_Customize_Nav_Menu_Control::content_template() wp-includes/customize/class-wp-customize-nav-menu-control.php | JS/Underscore template for the control UI. |
| WP_Customize_Nav_Menu_Setting::update() wp-includes/customize/class-wp-customize-nav-menu-setting.php | Create/update the nav_menu term for this setting. |
| WP_Customize_Nav_Menu_Item_Setting::sanitize() wp-includes/customize/class-wp-customize-nav-menu-item-setting.php | Sanitize an input. |
| WP_Customize_Nav_Menus_Panel::content_template() wp-includes/customize/class-wp-customize-nav-menus-panel.php | An Underscore (JS) template for this panel’s content (but not its container). |
| WP_Customize_Panel::content_template() wp-includes/class-wp-customize-panel.php | An Underscore (JS) template for this panel’s content (but not its container). |
| _deprecated_constructor() wp-includes/functions.php | Marks a constructor as deprecated and informs when it has been used. |
| WP_Customize_Nav_Menus::print_templates() wp-includes/class-wp-customize-nav-menus.php | Prints the JavaScript templates used to render Menu Customizer components. |
| WP_Customize_Nav_Menus::available_items_template() wp-includes/class-wp-customize-nav-menus.php | Prints the HTML template used to render the add-menu-item frame. |
| WP_Customize_Nav_Menus::search_available_items_query() wp-includes/class-wp-customize-nav-menus.php | Performs post queries for available-item searching. |
| WP_Customize_Nav_Menus::enqueue_scripts() wp-includes/class-wp-customize-nav-menus.php | Enqueues scripts and styles for Customizer pane. |
| WP_Customize_Nav_Menus::customize_register() wp-includes/class-wp-customize-nav-menus.php | Adds the customizer settings and controls. |
| WP_Customize_Nav_Menus::load_available_items_query() wp-includes/class-wp-customize-nav-menus.php | Performs the post_type and taxonomy queries for loading available menu items. |
| WP_Customize_Nav_Menus::ajax_search_available_items() wp-includes/class-wp-customize-nav-menus.php | Ajax handler for searching available menu items. |
| WP_Posts_List_Table::handle_row_actions() wp-admin/includes/class-wp-posts-list-table.php | Generates and displays row action links. |
| WP_Posts_List_Table::column_cb() wp-admin/includes/class-wp-posts-list-table.php | Handles the checkbox column output. |
| WP_Posts_List_Table::column_title() wp-admin/includes/class-wp-posts-list-table.php | Handles the title column output. |
| WP_Posts_List_Table::column_date() wp-admin/includes/class-wp-posts-list-table.php | Handles the post date column output. |
| WP_Links_List_Table::handle_row_actions() wp-admin/includes/class-wp-links-list-table.php | Generates and displays row action links. |
| WP_Links_List_Table::column_cb() wp-admin/includes/class-wp-links-list-table.php | Handles the checkbox column output. |
| WP_Links_List_Table::column_name() wp-admin/includes/class-wp-links-list-table.php | Handles the link name column output. |
| WP_MS_Themes_List_Table::column_name() wp-admin/includes/class-wp-ms-themes-list-table.php | Handles the name column output. |
| WP_MS_Themes_List_Table::column_description() wp-admin/includes/class-wp-ms-themes-list-table.php | Handles the description column output. |
| WP_MS_Themes_List_Table::single_row_columns() wp-admin/includes/class-wp-ms-themes-list-table.php | Handles the output for a single table row. |
| WP_Comments_List_Table::handle_row_actions() wp-admin/includes/class-wp-comments-list-table.php | Generates and displays row actions links. |
| wp_ajax_crop_image() wp-admin/includes/ajax-actions.php | Ajax handler for cropping an image. |
| WP_List_Table::handle_row_actions() wp-admin/includes/class-wp-list-table.php | Generates and display row actions links for the list table. |
| WP_MS_Sites_List_Table::handle_row_actions() wp-admin/includes/class-wp-ms-sites-list-table.php | Generates and displays row action links. |
| WP_MS_Sites_List_Table::column_cb() wp-admin/includes/class-wp-ms-sites-list-table.php | Handles the checkbox column output. |
| WP_MS_Sites_List_Table::column_blogname() wp-admin/includes/class-wp-ms-sites-list-table.php | Handles the site name column output. |
| WP_MS_Sites_List_Table::column_lastupdated() wp-admin/includes/class-wp-ms-sites-list-table.php | Handles the lastupdated column output. |
| WP_MS_Sites_List_Table::column_registered() wp-admin/includes/class-wp-ms-sites-list-table.php | Handles the registered column output. |
| WP_Terms_List_Table::handle_row_actions() wp-admin/includes/class-wp-terms-list-table.php | Generates and displays row action links. |
| WP_MS_Users_List_Table::handle_row_actions() wp-admin/includes/class-wp-ms-users-list-table.php | Generates and displays row action links. |
| WP_MS_Users_List_Table::column_username() wp-admin/includes/class-wp-ms-users-list-table.php | Handles the username column output. |
| WP_MS_Users_List_Table::column_registered() wp-admin/includes/class-wp-ms-users-list-table.php | Handles the registered date column output. |
| WP_MS_Users_List_Table::column_blogs() wp-admin/includes/class-wp-ms-users-list-table.php | Handles the sites column output. |
| WP_MS_Users_List_Table::column_cb() wp-admin/includes/class-wp-ms-users-list-table.php | Handles the checkbox column output. |
| WP_Media_List_Table::column_date() wp-admin/includes/class-wp-media-list-table.php | Handles the date column output. |
| WP_Media_List_Table::column_parent() wp-admin/includes/class-wp-media-list-table.php | Handles the parent column output. |
| WP_Media_List_Table::column_cb() wp-admin/includes/class-wp-media-list-table.php | Handles the checkbox column output. |
| WP_Media_List_Table::column_title() wp-admin/includes/class-wp-media-list-table.php | Handles the title column output. |
| WP_Customize_Theme_Control::content_template() wp-includes/customize/class-wp-customize-theme-control.php | Render a JS template for theme display. |
| wpdb::get_table_charset() wp-includes/class-wpdb.php | Retrieves the character set for the given table. |
| wpdb::strip_invalid_text() wp-includes/class-wpdb.php | Strips any invalid characters based on value/charset pairs. |
| wpdb::process_fields() wp-includes/class-wpdb.php | Processes arrays of field/value pairs and field formats. |
| customize_themes_print_templates() wp-admin/includes/theme.php | Prints JS templates for the theme-browsing UI in the Customizer. |
| wp_ajax_press_this_add_category() wp-includes/deprecated.php | Ajax handler for creating new category from Press This. |
| wp_ajax_update_plugin() wp-admin/includes/ajax-actions.php | Ajax handler for updating a plugin. |
| wp_ajax_press_this_save_post() wp-includes/deprecated.php | Ajax handler for saving a post from Press This. |
| wp_media_attach_action() wp-admin/includes/media.php | Encapsulates the logic for Attach/Detach actions. |
| WP_Customize_Manager::render_control_templates() wp-includes/class-wp-customize-manager.php | Renders JS templates for all registered control types. |
| get_the_archive_title() wp-includes/general-template.php | Retrieves the archive title based on the queried object. |
| wp_get_password_hint() wp-includes/user.php | Gets the text suggesting how to create strong passwords. |
| _navigation_markup() wp-includes/link-template.php | Wraps passed links in navigational markup. |
| get_the_post_navigation() wp-includes/link-template.php | Retrieves the navigation to next/previous post, when applicable. |
| get_the_posts_navigation() wp-includes/link-template.php | Returns the navigation to next/previous set of posts, when applicable. |
| get_the_posts_pagination() wp-includes/link-template.php | Retrieves a paginated navigation to next/previous set of posts, when applicable. |
| WP_Date_Query::validate_date_values() wp-includes/class-wp-date-query.php | Validates the given date_query values and triggers errors if something is not valid. |
| WP_Customize_Section::json() wp-includes/class-wp-customize-section.php | Gather the parameters passed to client JavaScript via JSON. |
| wp_ajax_destroy_sessions() wp-admin/includes/ajax-actions.php | Ajax handler for destroying multiple open sessions for a user. |
| wp_print_revision_templates() wp-admin/includes/revision.php | Print JavaScript templates required for the revisions experience. |
| WP_Customize_Manager::remove_panel() wp-includes/class-wp-customize-manager.php | Removes a customize panel. |
| get_comments_number_text() wp-includes/comment-template.php | Displays the language string for the number of comments the current post has. |
| wp_ajax_parse_embed() wp-admin/includes/ajax-actions.php | Apply [embed] Ajax handlers to a string. |
| wp_ajax_parse_media_shortcode() wp-admin/includes/ajax-actions.php | |
| _wp_handle_upload() wp-admin/includes/file.php | Handles PHP uploads in WordPress. |
| translations_api() wp-admin/includes/translation-install.php | Retrieve translations from WordPress Translation API. |
| retrieve_password() wp-includes/user.php | Handles sending a password retrieval email to a user. |
| login_header() wp-login.php | Output the login page header. |
| show_user_form() wp-signup.php | Displays the fields for the new user account registration form. |
| signup_another_blog() wp-signup.php | Shows a form for returning users to sign up for another site. |
| confirm_another_blog_signup() wp-signup.php | Shows a message confirming that the new site has been created. |
| signup_user() wp-signup.php | Shows a form for a visitor to sign up for a new user account. |
| confirm_user_signup() wp-signup.php | Shows a message confirming that the new user has been registered and is awaiting activation. |
| confirm_blog_signup() wp-signup.php | Shows a message confirming that the new site has been registered and is awaiting activation. |
| show_blog_form() wp-signup.php | Generates and displays the Sign-up and Create Site forms. |
| network_step1() wp-admin/includes/network.php | Prints step 1 for Network installation process. |
| network_step2() wp-admin/includes/network.php | Prints step 2 for Network installation process. |
| display_setup_form() wp-admin/install.php | Displays installer setup form. |
| WP_Automatic_Updater::update() wp-admin/includes/class-wp-automatic-updater.php | Updates an item, if appropriate. |
| WP_Automatic_Updater::send_email() wp-admin/includes/class-wp-automatic-updater.php | Sends an email upon the completion or failure of a background core update. |
| WP_Automatic_Updater::send_debug_email() wp-admin/includes/class-wp-automatic-updater.php | Prepares and sends an email of a full log of background update results, useful for debugging and geekery. |
| File_Upload_Upgrader::__construct() wp-admin/includes/class-file-upload-upgrader.php | Construct the upgrader for a form. |
| Core_Upgrader::upgrade_strings() wp-admin/includes/class-core-upgrader.php | Initialize the upgrade strings. |
| Core_Upgrader::upgrade() wp-admin/includes/class-core-upgrader.php | Upgrade WordPress core. |
| Language_Pack_Upgrader::upgrade_strings() wp-admin/includes/class-language-pack-upgrader.php | Initialize the upgrade strings. |
| Language_Pack_Upgrader::check_package() wp-admin/includes/class-language-pack-upgrader.php | Checks that the package source contains .mo and .po files. |
| Plugin_Upgrader::check_package() wp-admin/includes/class-plugin-upgrader.php | Checks that the source package contains a valid plugin. |
| Theme_Upgrader::upgrade_strings() wp-admin/includes/class-theme-upgrader.php | Initialize the upgrade strings. |
| Theme_Upgrader::install_strings() wp-admin/includes/class-theme-upgrader.php | Initialize the installation strings. |
| Theme_Upgrader::check_package() wp-admin/includes/class-theme-upgrader.php | Checks that the package source contains a valid theme. |
| Plugin_Upgrader::upgrade_strings() wp-admin/includes/class-plugin-upgrader.php | Initialize the upgrade strings. |
| Plugin_Upgrader::install_strings() wp-admin/includes/class-plugin-upgrader.php | Initialize the installation strings. |
| WP_Upgrader::generic_strings() wp-admin/includes/class-wp-upgrader.php | Add the generic strings to WP_Upgrader::$strings. |
| WP_Filesystem_SSH2::__construct() wp-admin/includes/class-wp-filesystem-ssh2.php | Constructor. |
| WP_Filesystem_SSH2::connect() wp-admin/includes/class-wp-filesystem-ssh2.php | Connects filesystem. |
| WP_Filesystem_SSH2::run_command() wp-admin/includes/class-wp-filesystem-ssh2.php | |
| WP_MS_Users_List_Table::get_bulk_actions() wp-admin/includes/class-wp-ms-users-list-table.php | |
| WP_MS_Users_List_Table::get_columns() wp-admin/includes/class-wp-ms-users-list-table.php | |
| WP_Screen::show_screen_options() wp-admin/includes/class-wp-screen.php | |
| WP_Screen::render_screen_options() wp-admin/includes/class-wp-screen.php | Renders the screen options tab. |
| WP_Screen::render_per_page_options() wp-admin/includes/class-wp-screen.php | Renders the items per page option. |
| delete_theme() wp-admin/includes/theme.php | Removes a theme. |
| get_theme_update_available() wp-admin/includes/theme.php | Retrieves the update link if there is a theme update available. |
| get_theme_feature_list() wp-admin/includes/theme.php | Retrieves list of WordPress theme features (aka theme tags). |
| themes_api() wp-admin/includes/theme.php | Retrieves theme installer pages from the WordPress.org Themes API. |
| WP_Screen::render_screen_meta() wp-admin/includes/class-wp-screen.php | Renders the screen’s help section. |
| WP_Screen::get() wp-admin/includes/class-wp-screen.php | Fetches a screen object. |
| WP_Plugins_List_Table::get_bulk_actions() wp-admin/includes/class-wp-plugins-list-table.php | |
| WP_Plugins_List_Table::extra_tablenav() wp-admin/includes/class-wp-plugins-list-table.php | |
| WP_Plugins_List_Table::single_row() wp-admin/includes/class-wp-plugins-list-table.php | |
| WP_Plugins_List_Table::no_items() wp-admin/includes/class-wp-plugins-list-table.php | |
| WP_Plugins_List_Table::get_columns() wp-admin/includes/class-wp-plugins-list-table.php | |
| WP_Links_List_Table::get_bulk_actions() wp-admin/includes/class-wp-links-list-table.php | |
| WP_Links_List_Table::extra_tablenav() wp-admin/includes/class-wp-links-list-table.php | |
| WP_Links_List_Table::get_columns() wp-admin/includes/class-wp-links-list-table.php | |
| WP_User_Search::query() wp-admin/includes/deprecated.php | Executes the user search query. |
| WP_User_Search::do_paging() wp-admin/includes/deprecated.php | Handles paging for the user search query. |
| install_theme_search_form() wp-admin/includes/theme-install.php | Displays search form for searching themes. |
| install_themes_dashboard() wp-admin/includes/theme-install.php | Displays tags filter for themes. |
| install_themes_upload() wp-admin/includes/theme-install.php | Displays a form to upload themes from zip files. |
| install_theme_information() wp-admin/includes/theme-install.php | Displays theme information in dialog box form. |
| Language_Pack_Upgrader_Skin::__construct() wp-admin/includes/class-language-pack-upgrader-skin.php | |
| Language_Pack_Upgrader_Skin::before() wp-admin/includes/class-language-pack-upgrader-skin.php | |
| Language_Pack_Upgrader_Skin::bulk_footer() wp-admin/includes/class-language-pack-upgrader-skin.php | |
| Theme_Upgrader_Skin::__construct() wp-admin/includes/class-theme-upgrader-skin.php | Constructor. |
| Theme_Upgrader_Skin::after() wp-admin/includes/class-theme-upgrader-skin.php | Action to perform following a single theme update. |
| Plugin_Installer_Skin::after() wp-admin/includes/class-plugin-installer-skin.php | Action to perform following a plugin install. |
| Theme_Installer_Skin::after() wp-admin/includes/class-theme-installer-skin.php | Action to perform following a single theme install. |
| Bulk_Theme_Upgrader_Skin::add_strings() wp-admin/includes/class-bulk-theme-upgrader-skin.php | |
| Bulk_Theme_Upgrader_Skin::bulk_footer() wp-admin/includes/class-bulk-theme-upgrader-skin.php | |
| Bulk_Upgrader_Skin::after() wp-admin/includes/class-bulk-upgrader-skin.php | |
| Bulk_Plugin_Upgrader_Skin::add_strings() wp-admin/includes/class-bulk-plugin-upgrader-skin.php | |
| Bulk_Plugin_Upgrader_Skin::bulk_footer() wp-admin/includes/class-bulk-plugin-upgrader-skin.php | |
| Plugin_Upgrader_Skin::__construct() wp-admin/includes/class-plugin-upgrader-skin.php | Constructor. |
| Plugin_Upgrader_Skin::after() wp-admin/includes/class-plugin-upgrader-skin.php | Action to perform following a single plugin update. |
| Bulk_Upgrader_Skin::add_strings() wp-admin/includes/class-bulk-upgrader-skin.php | |
| WP_List_Table::comments_bubble() wp-admin/includes/class-wp-list-table.php | Displays a comment count bubble. |
| WP_List_Table::pagination() wp-admin/includes/class-wp-list-table.php | Displays the pagination. |
| WP_List_Table::print_column_headers() wp-admin/includes/class-wp-list-table.php | Prints column headers, accounting for hidden and sortable columns. |
| WP_List_Table::__construct() wp-admin/includes/class-wp-list-table.php | Constructor. |
| WP_List_Table::bulk_actions() wp-admin/includes/class-wp-list-table.php | Displays the bulk actions dropdown. |
| WP_List_Table::row_actions() wp-admin/includes/class-wp-list-table.php | Generates the required HTML for a list of row action links. |
| WP_List_Table::months_dropdown() wp-admin/includes/class-wp-list-table.php | Displays a dropdown for filtering items in the list table by month. |
| _access_denied_splash() wp-admin/includes/ms.php | Displays an access denied message when a user tries to view a site’s dashboard they do not have access to. |
| mu_dropdown_languages() wp-admin/includes/ms.php | Generates and displays a drop-down of available languages. |
| site_admin_notice() wp-admin/includes/ms.php | Displays an admin notice to upgrade all sites after a core upgrade. |
| upload_is_user_over_quota() wp-admin/includes/ms.php | Check whether a site has used its allotted upload space. |
| display_space_usage() wp-admin/includes/ms.php | Displays the amount of disk space used by the current site. Not used in core. |
| update_option_new_admin_email() wp-admin/includes/misc.php | Sends a confirmation request email when a change of site admin email address is attempted. |
| send_confirmation_on_profile_email() wp-includes/user.php | Sends a confirmation request email when a change of user email address is attempted. |
| new_user_email_admin_notice() wp-includes/user.php | Adds an admin notice alerting the user to check for confirmation request email after email address change. |
| wp_save_image_file() wp-admin/includes/image-edit.php | Saves image to file. |
| image_edit_apply_changes() wp-admin/includes/image-edit.php | Performs group of changes on Editor specified. |
| wp_restore_image() wp-admin/includes/image-edit.php | Restores the metadata for a given attachment. |
| wp_save_image() wp-admin/includes/image-edit.php | Saves image to post, along with enqueued changes in |
| check_upload_size() wp-admin/includes/ms.php | Determine if uploaded file exceeds space quota. |
| wp_image_editor() wp-admin/includes/image-edit.php | Loads the WP image-editing interface. |
| wp_stream_image() wp-admin/includes/image-edit.php | Streams image in WP_Image_Editor to browser. |
| WP_Filesystem_FTPext::connect() wp-admin/includes/class-wp-filesystem-ftpext.php | Connects filesystem. |
| WP_Filesystem_FTPext::__construct() wp-admin/includes/class-wp-filesystem-ftpext.php | Constructor. |
| WP_MS_Themes_List_Table::get_columns() wp-admin/includes/class-wp-ms-themes-list-table.php | |
| WP_MS_Themes_List_Table::get_bulk_actions() wp-admin/includes/class-wp-ms-themes-list-table.php | |
| WP_Filesystem_Base::search_for_folder() wp-admin/includes/class-wp-filesystem-base.php | Locates a folder on the remote filesystem. |
| wp_check_locked_posts() wp-admin/includes/misc.php | Checks lock status for posts displayed on the Posts screen. |
| wp_refresh_post_lock() wp-admin/includes/misc.php | Checks lock status on the New/Edit Post screen and refresh the lock. |
| heartbeat_autosave() wp-admin/includes/misc.php | Performs autosave with heartbeat. |
| insert_with_markers() wp-admin/includes/misc.php | Inserts an array of strings into a file (.htaccess), placing it between BEGIN and END markers. |
| populate_network() wp-admin/includes/schema.php | Populate network settings. |
| WP_Theme_Install_List_Table::install_theme_info() wp-admin/includes/class-wp-theme-install-list-table.php | Prints the info for a theme (to be used in the theme installer modal). |
| populate_options() wp-admin/includes/schema.php | Create WordPress options and set the default values. |
| wp_insert_category() wp-admin/includes/taxonomy.php | Updates an existing Category or creates a new Category. |
| WP_Theme_Install_List_Table::prepare_items() wp-admin/includes/class-wp-theme-install-list-table.php | |
| WP_Theme_Install_List_Table::single_row() wp-admin/includes/class-wp-theme-install-list-table.php | Prints a theme from the WordPress.org API. |
| maintenance_nag() wp-admin/includes/update.php | Displays maintenance nag HTML message. |
| get_core_checksums() wp-admin/includes/update.php | Gets and caches the checksums for the given version of WordPress. |
| core_update_footer() wp-admin/includes/update.php | Returns core update footer message. |
| update_nag() wp-admin/includes/update.php | Returns core update notification message. |
| update_right_now_message() wp-admin/includes/update.php | Displays WordPress version and active theme in the ‘At a Glance’ dashboard widget. |
| wp_plugin_update_row() wp-admin/includes/update.php | Displays update information for a plugin. |
| wp_theme_update_row() wp-admin/includes/update.php | Displays update information for a theme. |
| wp_welcome_panel() wp-admin/includes/dashboard.php | Displays a welcome panel to introduce users to WordPress. |
| install_dashboard() wp-admin/includes/plugin-install.php | Displays the Featured tab of Add Plugins screen. |
| install_search_form() wp-admin/includes/plugin-install.php | Displays a search form for searching plugins. |
| install_plugins_upload() wp-admin/includes/plugin-install.php | Displays a form to upload plugins from zip files. |
| display_plugins_table() wp-admin/includes/plugin-install.php | Displays plugin content based on plugin list. |
| install_plugin_information() wp-admin/includes/plugin-install.php | Displays plugin information in dialog box form. |
| plugins_api() wp-admin/includes/plugin-install.php | Retrieves plugin installer pages from the WordPress.org Plugins API. |
| wp_dashboard_site_activity() wp-admin/includes/dashboard.php | Callback function for Activity widget. |
| wp_dashboard_recent_posts() wp-admin/includes/dashboard.php | Generates Publishing Soon and Recently Published sections. |
| wp_dashboard_recent_comments() wp-admin/includes/dashboard.php | Show Comments section. |
| wp_dashboard_cached_rss_widget() wp-admin/includes/dashboard.php | Checks to see if all of the feed url in $check_urls are cached. |
| wp_dashboard_rss_control() wp-admin/includes/dashboard.php | The RSS dashboard widget control. |
| wp_dashboard_primary() wp-admin/includes/dashboard.php | ‘WordPress Events and News’ dashboard widget. |
| wp_dashboard_quota() wp-admin/includes/dashboard.php | Displays file upload quota on dashboard. |
| wp_dashboard_browser_nag() wp-admin/includes/dashboard.php | Displays the browser update nag. |
| wp_dashboard_plugins_output() wp-admin/includes/deprecated.php | Display plugins text for the WordPress news widget. |
| wp_add_dashboard_widget() wp-admin/includes/dashboard.php | Adds a new dashboard widget. |
| _wp_dashboard_control_callback() wp-admin/includes/dashboard.php | Outputs controls for the current dashboard widget. |
| wp_dashboard_right_now() wp-admin/includes/dashboard.php | Dashboard widget that displays some basic stats about the site. |
| wp_network_dashboard_right_now() wp-admin/includes/dashboard.php | |
| wp_dashboard_quick_press() wp-admin/includes/dashboard.php | The Quick Draft widget display and creation of drafts. |
| wp_dashboard_recent_drafts() wp-admin/includes/dashboard.php | Show recent drafts of the user on the dashboard. |
| _wp_dashboard_recent_comments_row() wp-admin/includes/dashboard.php | Outputs a row for the Recent Comments widget. |
| wp_dashboard_setup() wp-admin/includes/dashboard.php | Registers dashboard widgets. |
| wp_install() wp-admin/includes/upgrade.php | Installs the site. |
| wp_install_defaults() wp-admin/includes/upgrade.php | Creates the initial content for a newly-installed site. |
| wp_new_blog_notification() wp-admin/includes/upgrade.php | Notifies the site admin that the installation of WordPress is complete. |
| register_setting() wp-includes/option.php | Registers a setting and its data. |
| unregister_setting() wp-includes/option.php | Unregisters a setting. |
| validate_plugin() wp-admin/includes/plugin.php | Validates the plugin path. |
| add_menu_page() wp-admin/includes/plugin.php | Adds a top-level menu page. |
| add_submenu_page() wp-admin/includes/plugin.php | Adds a submenu page. |
| _get_dropins() wp-admin/includes/plugin.php | Returns drop-ins that WordPress uses. |
| activate_plugin() wp-admin/includes/plugin.php | Attempts activation of plugin in a “sandbox” and redirects on success. |
| activate_plugins() wp-admin/includes/plugin.php | Activates multiple plugins. |
| delete_plugins() wp-admin/includes/plugin.php | Removes directory and files of a plugin for a list of plugins. |
| get_plugin_data() wp-admin/includes/plugin.php | Parses the plugin contents to retrieve plugin’s metadata. |
| _get_plugin_data_markup_translate() wp-admin/includes/plugin.php | Sanitizes plugin data, optionally adds markup, optionally translates. |
| default_password_nag() wp-admin/includes/user.php | |
| WP_Plugin_Install_List_Table::display_rows() wp-admin/includes/class-wp-plugin-install-list-table.php | |
| edit_user() wp-admin/includes/user.php | Edit user settings based on contents of $_POST |
| WP_Plugin_Install_List_Table::prepare_items() wp-admin/includes/class-wp-plugin-install-list-table.php | |
| get_submit_button() wp-admin/includes/template.php | Returns a submit button, with provided text and appropriate class. |
| convert_to_screen() wp-admin/includes/template.php | Converts a screen string to a screen object. |
| wp_star_rating() wp-admin/includes/template.php | Outputs a HTML element with a star rating for a given rating. |
| add_settings_field() wp-admin/includes/template.php | Adds a new field to a section of a settings page. |
| find_posts_div() wp-admin/includes/template.php | Outputs the modal window used for attaching media to posts or pages in the media-listing screen. |
| _draft_or_post_title() wp-admin/includes/template.php | Gets the post title. |
| wp_comment_trashnotice() wp-admin/includes/template.php | Outputs ‘undo move to Trash’ text for comments. |
| list_meta() wp-admin/includes/template.php | Outputs a post’s public meta data in the Custom Fields meta box. |
| _list_meta_row() wp-admin/includes/template.php | Outputs a single row of public meta data in the Custom Fields meta box. |
| meta_form() wp-admin/includes/template.php | Prints the form in the Custom Fields meta box. |
| touch_time() wp-admin/includes/template.php | Prints out HTML form date elements for editing post or comment publish date. |
| wp_import_upload_form() wp-admin/includes/template.php | Outputs the form used by the importers to accept the data to be imported. |
| do_meta_boxes() wp-admin/includes/template.php | Meta-Box template function. |
| add_settings_section() wp-admin/includes/template.php | Adds a new section to a settings page. |
| WP_Themes_List_Table::no_items() wp-admin/includes/class-wp-themes-list-table.php | |
| WP_Themes_List_Table::display_rows() wp-admin/includes/class-wp-themes-list-table.php | |
| WP_MS_Sites_List_Table::__construct() wp-admin/includes/class-wp-ms-sites-list-table.php | Constructor. |
| WP_MS_Sites_List_Table::get_bulk_actions() wp-admin/includes/class-wp-ms-sites-list-table.php | |
| WP_MS_Sites_List_Table::get_columns() wp-admin/includes/class-wp-ms-sites-list-table.php | |
| WP_Users_List_Table::single_row() wp-admin/includes/class-wp-users-list-table.php | Generate HTML for a single row on the users.php admin panel. |
| WP_Users_List_Table::get_views() wp-admin/includes/class-wp-users-list-table.php | Return an associative array listing all the views that can be used with this table. |
| WP_Users_List_Table::get_bulk_actions() wp-admin/includes/class-wp-users-list-table.php | Retrieve an associative array of bulk actions available on this table. |
| WP_Users_List_Table::extra_tablenav() wp-admin/includes/class-wp-users-list-table.php | Output the controls to allow user roles to be changed in bulk. |
| WP_Users_List_Table::get_columns() wp-admin/includes/class-wp-users-list-table.php | Get a list of columns for the list table. |
| media_upload_type_form() wp-admin/includes/media.php | Outputs the legacy media upload form for a given media type. |
| media_upload_gallery_form() wp-admin/includes/media.php | Adds gallery form to upload iframe. |
| media_upload_library_form() wp-admin/includes/media.php | Outputs the legacy media upload form for the media library. |
| wp_media_insert_url_form() wp-admin/includes/media.php | Creates the form for external url. |
| media_upload_flash_bypass() wp-admin/includes/media.php | Displays the multi-file uploader message. |
| media_upload_max_image_resize() wp-admin/includes/media.php | Displays the checkbox to scale images. |
| multisite_over_quota_message() wp-admin/includes/media.php | Displays the out of storage quota message in Multisite. |
| edit_form_image_editor() wp-admin/includes/media.php | Displays the image and editor in the post editor |
| attachment_submitbox_metadata() wp-admin/includes/media.php | Displays non-editable attachment metadata in the publish meta box. |
| get_attachment_fields_to_edit() wp-admin/includes/media.php | Retrieves the attachment fields to edit form fields. |
| get_media_item() wp-admin/includes/media.php | Retrieves HTML form for modifying the image attachment. |
| media_upload_form() wp-admin/includes/media.php | Outputs the legacy media upload form. |
| wp_media_upload_handler() wp-admin/includes/media.php | Handles the process of uploading media. |
| media_sideload_image() wp-admin/includes/media.php | Downloads an image from the specified URL, saves it as an attachment, and optionally attaches it to a post. |
| image_align_input_fields() wp-admin/includes/media.php | Retrieves HTML for the image alignment radio buttons with the specified one checked. |
| image_size_input_fields() wp-admin/includes/media.php | Retrieves HTML for the size radio buttons with the specified one checked. |
| image_link_input_fields() wp-admin/includes/media.php | Retrieves HTML for the Link URL buttons with the default link type as specified. |
| media_handle_upload() wp-admin/includes/media.php | Saves a file submitted from a POST request and create an attachment post for it. |
| media_buttons() wp-admin/includes/media.php | Adds the media button to the editor. |
| get_sample_permalink_html() wp-admin/includes/post.php | Returns the HTML of the sample permalink slug editor. |
| _wp_post_thumbnail_html() wp-admin/includes/post.php | Returns HTML for the post thumbnail meta box. |
| _admin_notice_post_locked() wp-admin/includes/post.php | Outputs the HTML for the notice to say that someone else is editing or has taken over editing of this post. |
| post_preview() wp-admin/includes/post.php | Saves a draft or manually autosaves for the purpose of showing a post preview. |
| wp_autosave() wp-admin/includes/post.php | Saves a post submitted with XHR. |
| media_upload_tabs() wp-admin/includes/media.php | Defines the default media upload tabs. |
| update_gallery_tab() wp-admin/includes/media.php | Adds the gallery tab back to the tabs array if post has image attachments. |
| wp_write_post() wp-admin/includes/post.php | Creates a new post from the “Write Post” form using |
| _wp_translate_postdata() wp-admin/includes/post.php | Renames |
| edit_post() wp-admin/includes/post.php | Updates an existing post with values provided in |
| bulk_edit_posts() wp-admin/includes/post.php | Processes the post data for the bulk editing of posts. |
| get_default_post_to_edit() wp-admin/includes/post.php | Returns default post information to use when populating the “Write Post” form. |
| wp_ajax_save_widget() wp-admin/includes/ajax-actions.php | Ajax handler for saving a widget. |
| wp_ajax_upload_attachment() wp-admin/includes/ajax-actions.php | Ajax handler for uploading attachments |
| wp_ajax_wp_fullscreen_save_post() wp-admin/includes/ajax-actions.php | Ajax handler for saving posts from the fullscreen editor. |
| wp_ajax_add_menu_item() wp-admin/includes/ajax-actions.php | Ajax handler for adding a menu item. |
| wp_ajax_add_meta() wp-admin/includes/ajax-actions.php | Ajax handler for adding meta. |
| wp_ajax_add_user() wp-admin/includes/ajax-actions.php | Ajax handler for adding a user. |
| wp_ajax_inline_save() wp-admin/includes/ajax-actions.php | Ajax handler for Quick Edit saving a post from a list table. |
| wp_ajax_inline_save_tax() wp-admin/includes/ajax-actions.php | Ajax handler for quick edit saving for a term. |
| wp_ajax_find_posts() wp-admin/includes/ajax-actions.php | Ajax handler for querying posts for the Find Posts modal. |
| wp_ajax_dim_comment() wp-admin/includes/ajax-actions.php | Ajax handler to dim a comment. |
| wp_ajax_add_tag() wp-admin/includes/ajax-actions.php | Ajax handler to add a tag. |
| wp_ajax_replyto_comment() wp-admin/includes/ajax-actions.php | Ajax handler for replying to a comment. |
| wp_ajax_edit_comment() wp-admin/includes/ajax-actions.php | Ajax handler for editing a comment. |
| wp_get_revision_ui_diff() wp-admin/includes/revision.php | Get the revision UI diff. |
| wp_prepare_revisions_for_js() wp-admin/includes/revision.php | Prepare revisions for JavaScript. |
| update_core() wp-admin/includes/update-core.php | Upgrades the core of WordPress. |
| _redirect_to_about_wordpress() wp-admin/includes/update-core.php | Redirect to the About WordPress page after a successful upgrade. |
| post_trackback_meta_box() wp-admin/includes/meta-boxes.php | Displays trackback links form fields. |
| post_custom_meta_box() wp-admin/includes/meta-boxes.php | Displays custom fields form fields. |
| post_comment_status_meta_box() wp-admin/includes/meta-boxes.php | Displays comments status form fields. |
| post_comment_meta_box() wp-admin/includes/meta-boxes.php | Displays comments for post. |
| page_attributes_meta_box() wp-admin/includes/meta-boxes.php | Displays page attributes form fields. |
| link_submit_meta_box() wp-admin/includes/meta-boxes.php | Displays link create form fields. |
| wp_insert_link() wp-admin/includes/bookmark.php | Inserts a link into the database, or updates an existing link. |
| wp_link_manager_disabled_message() wp-admin/includes/bookmark.php | Outputs the ‘disabled’ message for the WordPress Link Manager. |
| post_submit_meta_box() wp-admin/includes/meta-boxes.php | Displays post submit form fields. |
| attachment_submit_meta_box() wp-admin/includes/meta-boxes.php | Displays attachment submit form fields. |
| post_categories_meta_box() wp-admin/includes/meta-boxes.php | Displays post categories form fields. |
| post_excerpt_meta_box() wp-admin/includes/meta-boxes.php | Displays post excerpt form fields. |
| edit_link() wp-admin/includes/bookmark.php | Updates or inserts a link using values provided in $_POST. |
| WP_Media_List_Table::__construct() wp-admin/includes/class-wp-media-list-table.php | Constructor. |
| WP_Media_List_Table::get_views() wp-admin/includes/class-wp-media-list-table.php | |
| WP_Media_List_Table::get_bulk_actions() wp-admin/includes/class-wp-media-list-table.php | |
| WP_Media_List_Table::extra_tablenav() wp-admin/includes/class-wp-media-list-table.php | |
| WP_Media_List_Table::get_columns() wp-admin/includes/class-wp-media-list-table.php | |
| WP_Media_List_Table::_get_row_actions() wp-admin/includes/class-wp-media-list-table.php | |
| wpmu_checkAvailableSpace() wp-admin/includes/ms-deprecated.php | Determines if the available space defined by the admin has been exceeded by the user. |
| WP_Post_Comments_List_Table::get_column_info() wp-admin/includes/class-wp-post-comments-list-table.php | |
| WP_Comments_List_Table::column_date() wp-admin/includes/class-wp-comments-list-table.php | |
| WP_Comments_List_Table::get_bulk_actions() wp-admin/includes/class-wp-comments-list-table.php | |
| WP_Comments_List_Table::extra_tablenav() wp-admin/includes/class-wp-comments-list-table.php | |
| WP_Comments_List_Table::get_columns() wp-admin/includes/class-wp-comments-list-table.php | |
| WP_Comments_List_Table::column_comment() wp-admin/includes/class-wp-comments-list-table.php | |
| WP_Terms_List_Table::column_name() wp-admin/includes/class-wp-terms-list-table.php | |
| WP_Terms_List_Table::column_description() wp-admin/includes/class-wp-terms-list-table.php | |
| WP_Terms_List_Table::__construct() wp-admin/includes/class-wp-terms-list-table.php | Constructor. |
| WP_Terms_List_Table::get_bulk_actions() wp-admin/includes/class-wp-terms-list-table.php | |
| WP_Terms_List_Table::get_columns() wp-admin/includes/class-wp-terms-list-table.php | |
| WP_Terms_List_Table::column_cb() wp-admin/includes/class-wp-terms-list-table.php | |
| Walker_Nav_Menu_Edit::start_el() wp-admin/includes/class-walker-nav-menu-edit.php | Start the element output. |
| wp_nav_menu_manage_columns() wp-admin/includes/nav-menu.php | Returns the columns for the nav menus page. |
| wp_nav_menu_update_menu_items() wp-admin/includes/nav-menu.php | Saves nav menu items |
| wp_nav_menu_setup() wp-admin/includes/nav-menu.php | Register nav menu meta boxes and advanced menu items. |
| wp_nav_menu_item_post_type_meta_box() wp-admin/includes/nav-menu.php | Displays a meta box for a post type menu item. |
| wp_nav_menu_item_taxonomy_meta_box() wp-admin/includes/nav-menu.php | Displays a meta box for a taxonomy menu item. |
| wp_get_nav_menu_to_edit() wp-admin/includes/nav-menu.php | Returns the menu formatted to edit. |
| WP_Filesystem_ftpsockets::__construct() wp-admin/includes/class-wp-filesystem-ftpsockets.php | Constructor. |
| WP_Filesystem_ftpsockets::connect() wp-admin/includes/class-wp-filesystem-ftpsockets.php | Connects filesystem. |
| request_filesystem_credentials() wp-admin/includes/file.php | Displays a form to the user to request for their FTP/SSH details in order to connect to the filesystem. |
| validate_file_to_edit() wp-admin/includes/file.php | Makes sure that the file that was requested to be edited is allowed to be edited. |
| download_url() wp-admin/includes/file.php | Downloads a URL to a local temporary file using the WordPress HTTP API. |
| verify_file_md5() wp-admin/includes/file.php | Calculates and compares the MD5 of a file to its expected value. |
| unzip_file() wp-admin/includes/file.php | Unzips a specified ZIP file to a location on the filesystem via the WordPress Filesystem Abstraction. |
| _unzip_file_ziparchive() wp-admin/includes/file.php | Attempts to unzip an archive using the ZipArchive class. |
| _unzip_file_pclzip() wp-admin/includes/file.php | Attempts to unzip an archive using the PclZip library. |
| copy_dir() wp-admin/includes/file.php | Copies a directory from one location to another via the WordPress Filesystem Abstraction. |
| WP_Posts_List_Table::inline_edit() wp-admin/includes/class-wp-posts-list-table.php | Outputs the hidden row displayed when inline editing |
| get_file_description() wp-admin/includes/file.php | Gets the description for standard WordPress theme files. |
| wp_list_widget_controls() wp-admin/includes/widgets.php | Show the widgets and their settings for a sidebar. |
| wp_widget_control() wp-admin/includes/widgets.php | Meta widget used to display the control form for a widget. |
| WP_Posts_List_Table::get_bulk_actions() wp-admin/includes/class-wp-posts-list-table.php | |
| WP_Posts_List_Table::extra_tablenav() wp-admin/includes/class-wp-posts-list-table.php | |
| WP_Posts_List_Table::get_columns() wp-admin/includes/class-wp-posts-list-table.php | |
| wp_import_handle_upload() wp-admin/includes/import.php | Handles importer uploading and adds attachment. |
| wp_get_popular_importers() wp-admin/includes/import.php | Returns a list from WordPress.org of popular importer plugins. |
| edit_comment() wp-admin/includes/comment.php | Updates a comment with values provided in $_POST. |
| options_reading_blog_charset() wp-admin/includes/options.php | Render the site charset setting. |
| admin_created_user_email() wp-admin/includes/user.php | |
| Custom_Image_Header::ajax_header_crop() wp-admin/includes/class-custom-image-header.php | Gets attachment uploaded by Media Manager, crops it, then saves it as a new object. Returns JSON-encoded object details. |
| Custom_Image_Header::step_1() wp-admin/includes/class-custom-image-header.php | Display first step of custom header image page. |
| Custom_Image_Header::step_2() wp-admin/includes/class-custom-image-header.php | Display second step of custom header image page. |
| Custom_Image_Header::step_2_manage_upload() wp-admin/includes/class-custom-image-header.php | Upload the file to be cropped in the second step. |
| Custom_Image_Header::step_3() wp-admin/includes/class-custom-image-header.php | Display third step of custom header image page. |
| Custom_Image_Header::admin_page() wp-admin/includes/class-custom-image-header.php | Display the page based on the current step. |
| Custom_Image_Header::init() wp-admin/includes/class-custom-image-header.php | Set up the hooks for the Custom Header admin page. |
| Custom_Image_Header::help() wp-admin/includes/class-custom-image-header.php | Adds contextual help. |
| confirm_delete_users() wp-admin/includes/ms.php | |
| list_core_update() wp-admin/update-core.php | Lists available core updates. |
| dismissed_updates() wp-admin/update-core.php | Display dismissed updates. |
| core_upgrade_preamble() wp-admin/update-core.php | Display upgrade WordPress for downloading latest or upgrading automatically form. |
| list_plugin_updates() wp-admin/update-core.php | Display the upgrade plugins form. |
| list_theme_updates() wp-admin/update-core.php | Display the upgrade themes form. |
| list_translation_updates() wp-admin/update-core.php | Display the update translations form. |
| do_core_upgrade() wp-admin/update-core.php | Upgrade WordPress core display. |
| Custom_Background::wp_set_background_image() wp-admin/includes/class-custom-background.php | |
| _add_themes_utility_last() wp-admin/menu.php | Adds the ‘Theme File Editor’ menu item to the bottom of the Appearance (non-block themes) or Tools (block themes) menu. |
| Custom_Background::init() wp-admin/includes/class-custom-background.php | Sets up the hooks for the Custom Background admin page. |
| Custom_Background::admin_load() wp-admin/includes/class-custom-background.php | Sets up the enqueue for the CSS & JavaScript files. |
| Custom_Background::admin_page() wp-admin/includes/class-custom-background.php | Displays the custom background page. |
| Custom_Background::handle_upload() wp-admin/includes/class-custom-background.php | Handles an Image upload for the background image. |
| _wp_menu_output() wp-admin/menu-header.php | Display menu. |
| WP_User::has_cap() wp-includes/class-wp-user.php | Returns whether the user has the specified capability. |
| WP_User::__isset() wp-includes/class-wp-user.php | Magic method for checking the existence of a certain custom field. |
| WP_User::__get() wp-includes/class-wp-user.php | Magic method for accessing custom fields. |
| WP_User::__set() wp-includes/class-wp-user.php | Magic method for setting custom user fields. |
| WP_Customize_Manager::register_controls() wp-includes/class-wp-customize-manager.php | Registers some default controls. |
| map_meta_cap() wp-includes/capabilities.php | Maps a capability to the primitive capabilities required of the given user to satisfy the capability being checked. |
| WP_Customize_Manager::customize_preview_init() wp-includes/class-wp-customize-manager.php | Prints JavaScript settings. |
| WP_Customize_Manager::customize_preview_settings() wp-includes/class-wp-customize-manager.php | Prints JavaScript settings for preview frame. |
| WP_Customize_Manager::save() wp-includes/class-wp-customize-manager.php | Handles customize_save WP Ajax request to save/update a changeset. |
| WP_Customize_Manager::wp_die() wp-includes/class-wp-customize-manager.php | Custom wp_die wrapper. Returns either the standard message for UI or the Ajax message. |
| WP_Customize_Manager::setup_theme() wp-includes/class-wp-customize-manager.php | Starts preview and customize theme. |
| wp_schedule_event() wp-includes/cron.php | Schedules a recurring event. |
| wp_reschedule_event() wp-includes/cron.php | Reschedules a recurring event. |
| wp_unschedule_event() wp-includes/cron.php | Unschedule a previously scheduled event. |
| wp_clear_scheduled_hook() wp-includes/cron.php | Unschedules all events attached to the hook with the specified arguments. |
| _set_cron_array() wp-includes/cron.php | Updates the cron option with the new cron array. |
| wp_get_schedules() wp-includes/cron.php | Retrieve supported event recurrence schedules. |
| wp_schedule_single_event() wp-includes/cron.php | Schedules an event to run only once. |
| Walker_Category::start_el() wp-includes/class-walker-category.php | Starts the element output. |
| the_tags() wp-includes/category-template.php | Displays the tags for a post. |
| get_the_category_list() wp-includes/category-template.php | Retrieves category list for a post in either HTML list or custom format. |
| wp_dropdown_categories() wp-includes/category-template.php | Displays or retrieves the HTML dropdown list of categories. |
| wp_list_categories() wp-includes/category-template.php | Displays or retrieves the HTML list of categories. |
| add_theme_support() wp-includes/theme.php | Registers theme support for a given feature. |
| _wp_customize_loader_settings() wp-includes/theme.php | Adds settings for the customize-loader script. |
| sanitize_option() wp-includes/formatting.php | Sanitizes various option values based on the nature of the option. |
| wp_sprintf_l() wp-includes/formatting.php | Localizes list items before the rest of the content. |
| wp_trim_words() wp-includes/formatting.php | Trims text to a certain number of words. |
| wp_password_change_notification() wp-includes/pluggable.php | Notifies the blog admin of a user changing password, normally via email. |
| wp_new_user_notification() wp-includes/pluggable.php | Emails login credentials to a newly-registered user. |
| wp_salt() wp-includes/pluggable.php | Returns a salt to add to hashes. |
| wp_redirect() wp-includes/pluggable.php | Redirects to another page. |
| wp_notify_postauthor() wp-includes/pluggable.php | Notifies an author (and/or others) of a comment/trackback/pingback on a post. |
| wp_notify_moderator() wp-includes/pluggable.php | Notifies the moderator of the site about a new comment that is awaiting approval. |
| check_admin_referer() wp-includes/pluggable.php | Ensures intent by verifying that a user was referred from another admin page with the correct security nonce. |
| check_ajax_referer() wp-includes/pluggable.php | Verifies the Ajax request to prevent processing requests external of the blog. |
| wp_authenticate() wp-includes/pluggable.php | Authenticates a user, confirming the login credentials are valid. |
| paginate_links() wp-includes/general-template.php | Retrieves paginated links for archive post pages. |
| feed_links() wp-includes/general-template.php | Displays the links to the general feeds. |
| feed_links_extra() wp-includes/general-template.php | Displays the links to the extra feeds such as category feeds. |
| wp_get_archives() wp-includes/general-template.php | Displays archive links based on type and format. |
| get_calendar() wp-includes/general-template.php | Displays calendar with days that have posts as links. |
| get_bloginfo() wp-includes/general-template.php | Retrieves information about the current site. |
| wp_title() wp-includes/general-template.php | Displays or retrieves page title for all areas of blog. |
| wp_loginout() wp-includes/general-template.php | Displays the Log In/Out link. |
| wp_login_form() wp-includes/general-template.php | Provides a simple login form for use anywhere within WordPress. |
| wp_register() wp-includes/general-template.php | Displays the Registration or Admin link. |
| wp_explain_nonce() wp-includes/deprecated.php | Retrieve nonce action “Are you sure” message. |
| wp_load_image() wp-includes/deprecated.php | Load an image from a string, if PHP supports it. |
| get_boundary_post_rel_link() wp-includes/deprecated.php | Get boundary post relational link. |
| wp_admin_bar_dashboard_view_site_menu() wp-includes/deprecated.php | Add the “Dashboard”/”Visit Site” menu. |
| get_the_attachment_link() wp-includes/deprecated.php | Retrieve HTML content of attachment image with link. |
| dropdown_cats() wp-includes/deprecated.php | Deprecated method for generating a drop-down of categories. |
| get_links() wp-includes/deprecated.php | Gets the links associated with category by ID. |
| start_wp() wp-includes/deprecated.php | Sets up the WordPress Loop. |
| WP_Theme::markup_header() wp-includes/class-wp-theme.php | Marks up a theme header. |
| WP_Theme::translate_header() wp-includes/class-wp-theme.php | Translates a theme header. |
| WP_Theme::__construct() wp-includes/class-wp-theme.php | Constructor for WP_Theme. |
| WP::parse_request() wp-includes/class-wp.php | Parses the request to find the correct WordPress query. |
| WP_Query::get_posts() wp-includes/class-wp-query.php | Retrieves an array of posts based on query variables. |
| is_preview() wp-includes/query.php | Determines whether the query is for a post or page preview. |
| is_robots() wp-includes/query.php | Is the query for the robots.txt file? |
| is_search() wp-includes/query.php | Determines whether the query is for a search. |
| is_single() wp-includes/query.php | Determines whether the query is for an existing single post. |
| is_singular() wp-includes/query.php | Determines whether the query is for an existing single post of any post type (post, attachment, page, custom post types). |
| is_time() wp-includes/query.php | Determines whether the query is for a specific time. |
| is_trackback() wp-includes/query.php | Determines whether the query is for a trackback endpoint call. |
| is_year() wp-includes/query.php | Determines whether the query is for an existing year archive. |
| is_404() wp-includes/query.php | Determines whether the query has resulted in a 404 (returns no results). |
| is_main_query() wp-includes/query.php | Determines whether the query is the main query. |
| is_attachment() wp-includes/query.php | Determines whether the query is for an existing attachment page. |
| is_author() wp-includes/query.php | Determines whether the query is for an existing author archive page. |
| is_category() wp-includes/query.php | Determines whether the query is for an existing category archive page. |
| is_tag() wp-includes/query.php | Determines whether the query is for an existing tag archive page. |
| is_tax() wp-includes/query.php | Determines whether the query is for an existing custom taxonomy archive page. |
| is_date() wp-includes/query.php | Determines whether the query is for an existing date archive. |
| is_day() wp-includes/query.php | Determines whether the query is for an existing day archive. |
| is_feed() wp-includes/query.php | Determines whether the query is for a feed. |
| is_comment_feed() wp-includes/query.php | Is the query for a comments feed? |
| is_month() wp-includes/query.php | Determines whether the query is for an existing month archive. |
| is_page() wp-includes/query.php | Determines whether the query is for an existing single page. |
| is_paged() wp-includes/query.php | Determines whether the query is for a paged result and not for the first page. |
| is_front_page() wp-includes/query.php | Determines whether the query is for the front page of the site. |
| is_home() wp-includes/query.php | Determines whether the query is for the blog homepage. |
| is_archive() wp-includes/query.php | Determines whether the query is for an existing archive page. |
| is_post_type_archive() wp-includes/query.php | Determines whether the query is for an existing post type archive page. |
| WP_Image_Editor_Imagick::update_size() wp-includes/class-wp-image-editor-imagick.php | Sets or updates current image size. |
| WP_Image_Editor_Imagick::resize() wp-includes/class-wp-image-editor-imagick.php | Resizes current image. |
| get_categories() wp-includes/category.php | Retrieves a list of category objects. |
| WP_Image_Editor_Imagick::load() wp-includes/class-wp-image-editor-imagick.php | Loads image from $this->file into new Imagick Object. |
| wp_check_php_mysql_versions() wp-includes/load.php | Check for the required PHP version, and the MySQL extension or a database drop-in. |
| wp_maintenance() wp-includes/load.php | Die with a maintenance message when conditions are met. |
| wp_set_wpdb_vars() wp-includes/load.php | Set the database table prefix and the format specifiers for database table columns. |
| wp_not_installed() wp-includes/load.php | Redirect to the installer if WordPress is not installed. |
| WP_Http::handle_redirects() wp-includes/class-wp-http.php | Handles an HTTP redirect and follows it if appropriate. |
| WP_Http_Streams::request() wp-includes/class-wp-http-streams.php | Send a HTTP request to a URI using PHP Streams. |
| WP_Http_Curl::request() wp-includes/class-wp-http-curl.php | Send a HTTP request to a URI using cURL extension. |
| WP_Http::_dispatch_request() wp-includes/class-wp-http.php | Dispatches a HTTP request to a supporting transport. |
| WP_Http::request() wp-includes/class-wp-http.php | Send an HTTP request to a URI. |
| wp_deregister_script() wp-includes/functions.wp-scripts.php | Remove a registered script. |
| wp_timezone_choice() wp-includes/functions.php | Gives a nicely-formatted list of timezone strings. |
| _deprecated_function() wp-includes/functions.php | Marks a function as deprecated and inform when it has been used. |
| _deprecated_file() wp-includes/functions.php | Marks a file as deprecated and inform when it has been used. |
| _deprecated_argument() wp-includes/functions.php | Marks a function argument as deprecated and inform when it has been used. |
| _doing_it_wrong() wp-includes/functions.php | Marks something as being incorrectly called. |
| wp_send_json() wp-includes/functions.php | Sends a JSON response back to an Ajax request. |
| wp_widgets_add_menu() wp-includes/functions.php | Appends the Widgets menu to the themes main menu. |
| dead_db() wp-includes/functions.php | Loads custom DB error or display WordPress DB error. |
| wp_nonce_ays() wp-includes/functions.php | Displays “Are You Sure” message to confirm the action being taken. |
| _default_wp_die_handler() wp-includes/functions.php | Kills WordPress execution and displays HTML page with an error message. |
| wp_upload_bits() wp-includes/functions.php | Creates a file in the upload folder with given content. |
| is_blog_installed() wp-includes/functions.php | Determines whether WordPress is already installed. |
| wp_upload_dir() wp-includes/functions.php | Returns an array containing the current upload directory’s path and URL. |
| do_feed() wp-includes/functions.php | Loads the feed template from the use of an action hook. |
| WP_Nav_Menu_Widget::__construct() wp-includes/widgets/class-wp-nav-menu-widget.php | Sets up a new Navigation Menu widget instance. |
| WP_Nav_Menu_Widget::widget() wp-includes/widgets/class-wp-nav-menu-widget.php | Outputs the content for the current Navigation Menu widget instance. |
| WP_Nav_Menu_Widget::form() wp-includes/widgets/class-wp-nav-menu-widget.php | Outputs the settings form for the Navigation Menu widget. |
| WP_Widget_Tag_Cloud::__construct() wp-includes/widgets/class-wp-widget-tag-cloud.php | Sets up a new Tag Cloud widget instance. |
| WP_Widget_Tag_Cloud::widget() wp-includes/widgets/class-wp-widget-tag-cloud.php | Outputs the content for the current Tag Cloud widget instance. |
| WP_Widget_RSS::__construct() wp-includes/widgets/class-wp-widget-rss.php | Sets up a new RSS widget instance. |
| WP_Widget_RSS::widget() wp-includes/widgets/class-wp-widget-rss.php | Outputs the content for the current RSS widget instance. |
| WP_Widget_Recent_Comments::__construct() wp-includes/widgets/class-wp-widget-recent-comments.php | Sets up a new Recent Comments widget instance. |
| WP_Widget_Recent_Comments::widget() wp-includes/widgets/class-wp-widget-recent-comments.php | Outputs the content for the current Recent Comments widget instance. |
| WP_Widget_Recent_Posts::__construct() wp-includes/widgets/class-wp-widget-recent-posts.php | Sets up a new Recent Posts widget instance. |
| WP_Widget_Recent_Posts::widget() wp-includes/widgets/class-wp-widget-recent-posts.php | Outputs the content for the current Recent Posts widget instance. |
| WP_Widget_Categories::__construct() wp-includes/widgets/class-wp-widget-categories.php | Sets up a new Categories widget instance. |
| WP_Widget_Categories::widget() wp-includes/widgets/class-wp-widget-categories.php | Outputs the content for the current Categories widget instance. |
| WP_Widget_Text::__construct() wp-includes/widgets/class-wp-widget-text.php | Sets up a new Text widget instance. |
| WP_Widget_Calendar::__construct() wp-includes/widgets/class-wp-widget-calendar.php | Sets up a new Calendar widget instance. |
| WP_Widget_Meta::__construct() wp-includes/widgets/class-wp-widget-meta.php | Sets up a new Meta widget instance. |
| WP_Widget_Meta::widget() wp-includes/widgets/class-wp-widget-meta.php | Outputs the content for the current Meta widget instance. |
| WP_Widget_Archives::__construct() wp-includes/widgets/class-wp-widget-archives.php | Sets up a new Archives widget instance. |
| WP_Widget_Archives::widget() wp-includes/widgets/class-wp-widget-archives.php | Outputs the content for the current Archives widget instance. |
| WP_Widget_Links::__construct() wp-includes/widgets/class-wp-widget-links.php | Sets up a new Links widget instance. |
| WP_Widget_Search::__construct() wp-includes/widgets/class-wp-widget-search.php | Sets up a new Search widget instance. |
| WP_Widget_Pages::__construct() wp-includes/widgets/class-wp-widget-pages.php | Sets up a new Pages widget instance. |
| WP_Widget_Pages::widget() wp-includes/widgets/class-wp-widget-pages.php | Outputs the content for the current Pages widget instance. |
| WP_Locale::_strings_for_pot() wp-includes/class-wp-locale.php | Registers date/time format strings for general POT. |
| wp_widget_rss_output() wp-includes/widgets.php | Display the RSS entries in a list. |
| wp_widget_rss_form() wp-includes/widgets.php | Display RSS widget options form. |
| WP_Locale::init() wp-includes/class-wp-locale.php | Sets up the translated strings and object properties. |
| WP_Tax_Query::clean_query() wp-includes/class-wp-tax-query.php | Validates a single query. |
| WP_Tax_Query::transform_query() wp-includes/class-wp-tax-query.php | Transforms a single query, from one field to another. |
| get_term_link() wp-includes/taxonomy.php | Generates a permalink for a taxonomy term archive. |
| get_the_taxonomies() wp-includes/taxonomy.php | Retrieves all taxonomies associated with a post. |
| is_object_in_term() wp-includes/taxonomy.php | Determines if the given object is associated with any of the given terms. |
| wp_update_term() wp-includes/taxonomy.php | Updates term based on arguments provided. |
| wp_get_object_terms() wp-includes/taxonomy.php | Retrieves the terms associated with the given object(s), in the supplied taxonomies. |
| wp_insert_term() wp-includes/taxonomy.php | Adds a new term to the database. |
| wp_set_object_terms() wp-includes/taxonomy.php | Creates term and taxonomy relationships. |
| wp_remove_object_terms() wp-includes/taxonomy.php | Removes term(s) associated with a given object. |
| get_term_children() wp-includes/taxonomy.php | Merges all term children into a single array of their IDs. |
| get_terms() wp-includes/taxonomy.php | Retrieves the terms in a given taxonomy or list of taxonomies. |
| create_initial_taxonomies() wp-includes/taxonomy.php | Creates the initial taxonomies. |
| register_taxonomy() wp-includes/taxonomy.php | Creates or modifies a taxonomy object. |
| get_objects_in_term() wp-includes/taxonomy.php | Retrieves object IDs of valid taxonomy and term. |
| get_term() wp-includes/taxonomy.php | Gets all term data from database by term ID. |
| the_shortlink() wp-includes/link-template.php | Displays the shortlink for a post. |
| get_next_comments_link() wp-includes/link-template.php | Retrieves the link to the next comments page. |
| get_previous_comments_link() wp-includes/link-template.php | Retrieves the link to the previous comments page. |
| get_adjacent_post_link() wp-includes/link-template.php | Retrieves the adjacent post link. |
| get_next_posts_link() wp-includes/link-template.php | Retrieves the next posts page link. |
| get_previous_posts_link() wp-includes/link-template.php | Retrieves the previous posts page link. |
| get_posts_nav_link() wp-includes/link-template.php | Retrieves the post pages link navigation for previous and next pages. |
| get_adjacent_post() wp-includes/link-template.php | Retrieves the adjacent post. |
| get_adjacent_post_rel_link() wp-includes/link-template.php | Retrieves the adjacent post relational link. |
| edit_post_link() wp-includes/link-template.php | Displays the edit post link for post. |
| edit_comment_link() wp-includes/link-template.php | Displays the edit comment link with formatting. |
| edit_bookmark_link() wp-includes/link-template.php | Displays the edit bookmark link anchor content. |
| edit_term_link() wp-includes/link-template.php | Displays or retrieves the edit term link with formatting. |
| post_comments_feed_link() wp-includes/link-template.php | Displays the comment feed link for a post. |
| WP_Admin_Bar::add_node() wp-includes/class-wp-admin-bar.php | Adds a node to the menu. |
| wp_version_check() wp-includes/update.php | Checks WordPress version against the newest version. |
| wp_update_plugins() wp-includes/update.php | Checks for available updates to plugins based on the latest versions hosted on WordPress.org. |
| wp_update_themes() wp-includes/update.php | Checks for available updates to themes based on the latest versions hosted on WordPress.org. |
| wp_get_update_data() wp-includes/update.php | Collects counts and UI strings for available updates. |
| wp_add_inline_style() wp-includes/functions.wp-styles.php | Add extra CSS styles to a registered stylesheet. |
| do_shortcode_tag() wp-includes/shortcodes.php | Regular Expression callable for do_shortcode() for calling shortcode hook. |
| WP_Image_Editor::set_quality() wp-includes/class-wp-image-editor.php | Sets Image Compression quality on a 1-100% scale. |
| add_shortcode() wp-includes/shortcodes.php | Adds a new shortcode. |
| wp_admin_bar_wp_menu() wp-includes/admin-bar.php | Adds the WordPress logo menu. |
| wp_admin_bar_sidebar_toggle() wp-includes/admin-bar.php | Adds the sidebar toggle button. |
| wp_admin_bar_my_account_item() wp-includes/admin-bar.php | Adds the “My Account” item. |
| wp_admin_bar_my_account_menu() wp-includes/admin-bar.php | Adds the “My Account” submenu items. |
| wp_admin_bar_site_menu() wp-includes/admin-bar.php | Adds the “Site Name” menu. |
| wp_admin_bar_my_sites_menu() wp-includes/admin-bar.php | Adds the “My Sites/[Site Name]” menu and all submenus. |
| wp_admin_bar_shortlink_menu() wp-includes/admin-bar.php | Provides a shortlink. |
| wp_admin_bar_edit_menu() wp-includes/admin-bar.php | Provides an edit link for posts and terms. |
| wp_admin_bar_appearance_menu() wp-includes/admin-bar.php | Adds appearance submenu items to the “Site Name” menu. |
| wp_admin_bar_search_menu() wp-includes/admin-bar.php | Adds search form. |
| register_uninstall_hook() wp-includes/plugin.php | Sets the uninstallation hook for a plugin. |
| prep_atom_text_construct() wp-includes/feed.php | Determines the type of a string of data with the data formatted. |
| get_wp_title_rss() wp-includes/feed.php | Retrieves the blog title for the feed title. |
| wp_title_rss() wp-includes/feed.php | Displays the blog title for display of the feed title. |
| update_option() wp-includes/option.php | Updates the value of an option that was already added. |
| add_option() wp-includes/option.php | Adds a new option. |
| get_option() wp-includes/option.php | Retrieves an option value based on an option name. |
| wp_protect_special_option() wp-includes/option.php | Protects WordPress special option from being modified. |
| WP_User_Query::prepare_query() wp-includes/class-wp-user-query.php | Prepares the query variables. |
| wp_update_user() wp-includes/user.php | Updates a user in the database. |
| wp_get_user_contact_methods() wp-includes/user.php | Sets up the user contact methods. |
| check_password_reset_key() wp-includes/user.php | Retrieves a user row based on password reset key and login. |
| register_new_user() wp-includes/user.php | Handles registering a new user. |
| wp_insert_user() wp-includes/user.php | Inserts a user into the database. |
| wp_authenticate_username_password() wp-includes/user.php | Authenticates a user, confirming the username and password are valid. |
| wp_authenticate_cookie() wp-includes/user.php | Authenticates the user using the WordPress auth cookie. |
| wp_authenticate_spam_check() wp-includes/user.php | 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. |
| _walk_bookmarks() wp-includes/bookmark-template.php | The formatted output of a list of bookmarks. |
| wp_list_bookmarks() wp-includes/bookmark-template.php | Retrieves or echoes all of the bookmarks. |
| WP_Image_Editor_GD::load() wp-includes/class-wp-image-editor-gd.php | Loads image from $this->file into new GD Resource. |
| WP_Image_Editor_GD::resize() wp-includes/class-wp-image-editor-gd.php | Resizes current image. |
| WP_Image_Editor_GD::_resize() wp-includes/class-wp-image-editor-gd.php | |
| WP_Image_Editor_GD::crop() wp-includes/class-wp-image-editor-gd.php | Crops Image. |
| WP_Image_Editor_GD::rotate() wp-includes/class-wp-image-editor-gd.php | Rotates current image counter-clockwise by $angle. |
| WP_Image_Editor_GD::flip() wp-includes/class-wp-image-editor-gd.php | Flips current image. |
| WP_Image_Editor_GD::_save() wp-includes/class-wp-image-editor-gd.php | |
| Walker_PageDropdown::start_el() wp-includes/class-walker-page-dropdown.php | Starts the element output. |
| Walker_Page::start_el() wp-includes/class-walker-page.php | Outputs the beginning of the current element in the tree. |
| wp_get_attachment_link() wp-includes/post-template.php | Retrieves an attachment page link using an image or icon, if possible. |
| get_the_password_form() wp-includes/post-template.php | Retrieves protected post password form content. |
| wp_post_revision_title() wp-includes/post-template.php | Retrieves formatted date timestamp of a revision (linked to that revisions’s page). |
| wp_post_revision_title_expanded() wp-includes/post-template.php | Retrieves formatted date timestamp of a revision (linked to that revisions’s page). |
| wp_list_post_revisions() wp-includes/post-template.php | Displays a list of a post’s revisions. |
| wp_link_pages() wp-includes/post-template.php | The formatted output of a list of pages. |
| wp_list_pages() wp-includes/post-template.php | Retrieves or displays a list of pages (or hierarchical post type items) in list (li) format. |
| wp_page_menu() wp-includes/post-template.php | Displays or retrieves a list of pages with an optional home link. |
| get_the_content() wp-includes/post-template.php | Retrieves the post content. |
| get_the_excerpt() wp-includes/post-template.php | Retrieves the post excerpt. |
| get_the_title() wp-includes/post-template.php | Retrieves the post title. |
| wp_get_image_editor() wp-includes/media.php | Returns a WP_Image_Editor instance and loads file into it. |
| wp_prepare_attachment_for_js() wp-includes/media.php | Prepares an attachment post object for JS, where it is expected to be JSON-encoded and fit into an Attachment model. |
| wp_enqueue_media() wp-includes/media.php | Enqueues all scripts, styles, settings, and templates necessary to use all media JS APIs. |
| wp_get_attachment_id3_keys() wp-includes/media.php | Returns useful keys to use to lookup data from an attachment’s stored metadata. |
| wp_get_recent_posts() wp-includes/post.php | Retrieves a number of recent posts. |
| wp_insert_post() wp-includes/post.php | Inserts or update a post. |
| wp_update_post() wp-includes/post.php | Updates a post with new post data. |
| get_post_mime_types() wp-includes/post.php | Gets default post mime types. |
| get_post_statuses() wp-includes/post.php | Retrieves all of the WordPress supported post statuses. |
| get_page_statuses() wp-includes/post.php | Retrieves all of the WordPress support page statuses. |
| register_post_type() wp-includes/post.php | Registers a post type. |
| create_initial_post_types() wp-includes/post.php | Creates the initial post types when ‘init’ action is fired. |
| _wp_put_post_revision() wp-includes/revision.php | Inserts post data into the posts table as a post revision. |
| _show_post_preview() wp-includes/revision.php | Filters the latest content for preview from the post autosave. |
| _wp_post_revision_fields() wp-includes/revision.php | Determines which fields of posts are to be saved in revisions. |
| maybe_add_existing_user_to_blog() wp-includes/ms-functions.php | Adds a new user to a blog by visiting /newbloguser/{key}/. |
| welcome_user_msg_filter() wp-includes/ms-functions.php | Ensures that the welcome message is not empty. Currently unused. |
| wpmu_welcome_user_notification() wp-includes/ms-functions.php | Notifies a user that their account activation has been successful. |
| upload_is_file_too_big() wp-includes/ms-functions.php | Checks whether an upload is too big. |
| signup_nonce_check() wp-includes/ms-functions.php | Processes the signup nonce created in signup_nonce_fields() . |
| install_blog() wp-includes/ms-deprecated.php | Install an empty blog. |
| wpmu_activate_signup() wp-includes/ms-functions.php | Activates a signup. |
| wpmu_create_blog() wp-includes/ms-functions.php | Creates a site. |
| newblog_notify_siteadmin() wp-includes/ms-functions.php | Notifies the network admin that a new site has been activated. |
| newuser_notify_siteadmin() wp-includes/ms-functions.php | Notifies the network admin that a new user has been activated. |
| wpmu_welcome_notification() wp-includes/ms-functions.php | Notifies the site administrator that their site activation was successful. |
| wpmu_validate_user_signup() wp-includes/ms-functions.php | Sanitizes and validates data required for a user sign-up. |
| wpmu_validate_blog_signup() wp-includes/ms-functions.php | Processes new site registrations. |
| wpmu_signup_blog_notification() wp-includes/ms-functions.php | Sends a confirmation request email to a user when they sign up for a new site. The new site will not become active until the confirmation link is clicked. |
| wpmu_signup_user_notification() wp-includes/ms-functions.php | Sends a confirmation request email to a user when they sign up for a new user account (without signing up for a site at the same time). The user account will not become active until the confirmation link is clicked. |
| create_empty_blog() wp-includes/ms-deprecated.php | Create an empty blog. |
| add_user_to_blog() wp-includes/ms-functions.php | Adds a user to a blog, along with specifying the user’s role. |
| remove_user_from_blog() wp-includes/ms-functions.php | Removes a user from a blog. |
| get_user_count() wp-includes/user.php | Returns the number of active users in your installation. |
| ms_not_installed() wp-includes/ms-load.php | Displays a failure message. |
| wpmu_admin_do_redirect() wp-includes/ms-deprecated.php | Redirect a user based on $_GET or $_POST arguments. |
| ms_site_check() wp-includes/ms-load.php | Checks status of current blog. |
| set_post_format() wp-includes/post-formats.php | Assign a format to a post |
| WP_Scripts::localize() wp-includes/class-wp-scripts.php | Localizes a script, only if the script has already been added. |
| get_the_author_link() wp-includes/author-template.php | Retrieves either author’s link or author’s name. |
| wp_list_authors() wp-includes/author-template.php | Lists all the authors of the site, with several options available. |
| the_author() wp-includes/author-template.php | Displays the name of the author of the current post. |
| wp_setup_nav_menu_item() wp-includes/nav-menu.php | Decorates a menu item object with the shared navigation menu item properties. |
| wp_update_nav_menu_object() wp-includes/nav-menu.php | Saves the properties of a menu or create a new menu with those properties. |
| wp_update_nav_menu_item() wp-includes/nav-menu.php | Saves the properties of a menu item or create a new one. |
| register_nav_menus() wp-includes/nav-menu.php | Registers navigation menu locations for a theme. |
| AtomParser::parse() wp-includes/atomlib.php | |
| wp_xmlrpc_server::mt_getPostCategories() wp-includes/class-wp-xmlrpc-server.php | Retrieve post categories. |
| wp_xmlrpc_server::mt_setPostCategories() wp-includes/class-wp-xmlrpc-server.php | Sets categories for a post. |
| wp_xmlrpc_server::mt_getTrackbackPings() wp-includes/class-wp-xmlrpc-server.php | Retrieve trackbacks sent to a given post. |
| wp_xmlrpc_server::mt_publishPost() wp-includes/class-wp-xmlrpc-server.php | Sets a post’s publish status to ‘publish’. |
| wp_xmlrpc_server::pingback_ping() wp-includes/class-wp-xmlrpc-server.php | Retrieves a pingback and registers it. |
| wp_xmlrpc_server::pingback_extensions_getPingbacks() wp-includes/class-wp-xmlrpc-server.php | Retrieve array of URLs that pingbacked the given URL. |
| wp_xmlrpc_server::mw_editPost() wp-includes/class-wp-xmlrpc-server.php | Edit a post. |
| wp_xmlrpc_server::mw_getPost() wp-includes/class-wp-xmlrpc-server.php | Retrieve post. |
| wp_xmlrpc_server::mw_getRecentPosts() wp-includes/class-wp-xmlrpc-server.php | Retrieve list of recent posts. |
| wp_xmlrpc_server::mw_getCategories() wp-includes/class-wp-xmlrpc-server.php | Retrieve the list of categories on a given blog. |
| wp_xmlrpc_server::mw_newMediaObject() wp-includes/class-wp-xmlrpc-server.php | Uploads a file, following your settings. |
| wp_xmlrpc_server::mt_getRecentPostTitles() wp-includes/class-wp-xmlrpc-server.php | Retrieve the post titles of recent posts. |
| wp_xmlrpc_server::mt_getCategoryList() wp-includes/class-wp-xmlrpc-server.php | Retrieve list of all categories on blog. |
| wp_xmlrpc_server::blogger_getUserInfo() wp-includes/class-wp-xmlrpc-server.php | Retrieve user’s data. |
| wp_xmlrpc_server::blogger_getPost() wp-includes/class-wp-xmlrpc-server.php | Retrieve post. |
| wp_xmlrpc_server::blogger_getRecentPosts() wp-includes/class-wp-xmlrpc-server.php | Retrieve list of recent posts. |
| wp_xmlrpc_server::blogger_getTemplate() wp-includes/class-wp-xmlrpc-server.php | Deprecated. |
| wp_xmlrpc_server::blogger_setTemplate() wp-includes/class-wp-xmlrpc-server.php | Deprecated. |
| wp_xmlrpc_server::blogger_newPost() wp-includes/class-wp-xmlrpc-server.php | Creates new post. |
| wp_xmlrpc_server::blogger_editPost() wp-includes/class-wp-xmlrpc-server.php | Edit a post. |
| wp_xmlrpc_server::blogger_deletePost() wp-includes/class-wp-xmlrpc-server.php | Remove a post. |
| wp_xmlrpc_server::mw_newPost() wp-includes/class-wp-xmlrpc-server.php | Create a new post. |
| wp_xmlrpc_server::wp_setOptions() wp-includes/class-wp-xmlrpc-server.php | Update blog options. |
| wp_xmlrpc_server::wp_getMediaItem() wp-includes/class-wp-xmlrpc-server.php | Retrieve a media item by ID |
| wp_xmlrpc_server::wp_getPostFormats() wp-includes/class-wp-xmlrpc-server.php | Retrieves a list of post formats used by the site. |
| wp_xmlrpc_server::wp_getPostType() wp-includes/class-wp-xmlrpc-server.php | Retrieves a post type |
| wp_xmlrpc_server::wp_getRevisions() wp-includes/class-wp-xmlrpc-server.php | Retrieve revisions for a specific post. |
| wp_xmlrpc_server::wp_restoreRevision() wp-includes/class-wp-xmlrpc-server.php | Restore a post revision |
| wp_xmlrpc_server::wp_getMediaLibrary() wp-includes/class-wp-xmlrpc-server.php | Retrieves a collection of media library items (or attachments) |
| wp_xmlrpc_server::wp_getComments() wp-includes/class-wp-xmlrpc-server.php | Retrieve comments. |
| wp_xmlrpc_server::wp_deleteComment() wp-includes/class-wp-xmlrpc-server.php | Delete a comment. |
| wp_xmlrpc_server::wp_editComment() wp-includes/class-wp-xmlrpc-server.php | Edit comment. |
| wp_xmlrpc_server::wp_newComment() wp-includes/class-wp-xmlrpc-server.php | Create new comment. |
| wp_xmlrpc_server::wp_getCommentStatusList() wp-includes/class-wp-xmlrpc-server.php | Retrieve all of the comment status. |
| wp_xmlrpc_server::wp_getCommentCount() wp-includes/class-wp-xmlrpc-server.php | Retrieve comment count. |
| wp_xmlrpc_server::wp_getPostStatusList() wp-includes/class-wp-xmlrpc-server.php | Retrieve post statuses. |
| wp_xmlrpc_server::wp_getPageStatusList() wp-includes/class-wp-xmlrpc-server.php | Retrieve page statuses. |
| wp_xmlrpc_server::wp_getPageTemplates() wp-includes/class-wp-xmlrpc-server.php | Retrieve page templates. |
| wp_xmlrpc_server::wp_getPages() wp-includes/class-wp-xmlrpc-server.php | Retrieve Pages. |
| wp_xmlrpc_server::wp_deletePage() wp-includes/class-wp-xmlrpc-server.php | Delete page. |
| wp_xmlrpc_server::wp_editPage() wp-includes/class-wp-xmlrpc-server.php | Edit page. |
| wp_xmlrpc_server::wp_getPageList() wp-includes/class-wp-xmlrpc-server.php | Retrieve page list. |
| wp_xmlrpc_server::wp_getAuthors() wp-includes/class-wp-xmlrpc-server.php | Retrieve authors list. |
| wp_xmlrpc_server::wp_getTags() wp-includes/class-wp-xmlrpc-server.php | Get list of all tags |
| wp_xmlrpc_server::wp_newCategory() wp-includes/class-wp-xmlrpc-server.php | Create new category. |
| wp_xmlrpc_server::wp_deleteCategory() wp-includes/class-wp-xmlrpc-server.php | Remove category. |
| wp_xmlrpc_server::wp_suggestCategories() wp-includes/class-wp-xmlrpc-server.php | Retrieve category list. |
| wp_xmlrpc_server::wp_getComment() wp-includes/class-wp-xmlrpc-server.php | Retrieve comment. |
| wp_xmlrpc_server::wp_getPosts() wp-includes/class-wp-xmlrpc-server.php | Retrieve posts. |
| wp_xmlrpc_server::wp_newTerm() wp-includes/class-wp-xmlrpc-server.php | Create a new term. |
| wp_xmlrpc_server::wp_editTerm() wp-includes/class-wp-xmlrpc-server.php | Edit a term. |
| wp_xmlrpc_server::wp_deleteTerm() wp-includes/class-wp-xmlrpc-server.php | Delete a term. |
| wp_xmlrpc_server::wp_getTerm() wp-includes/class-wp-xmlrpc-server.php | Retrieve a term. |
| wp_xmlrpc_server::wp_getTerms() wp-includes/class-wp-xmlrpc-server.php | Retrieve all terms for a taxonomy. |
| wp_xmlrpc_server::wp_getTaxonomy() wp-includes/class-wp-xmlrpc-server.php | Retrieve a taxonomy. |
| wp_xmlrpc_server::wp_getUser() wp-includes/class-wp-xmlrpc-server.php | Retrieve a user. |
| wp_xmlrpc_server::wp_getUsers() wp-includes/class-wp-xmlrpc-server.php | Retrieve users. |
| wp_xmlrpc_server::wp_getProfile() wp-includes/class-wp-xmlrpc-server.php | Retrieve information about the requesting user. |
| wp_xmlrpc_server::wp_editProfile() wp-includes/class-wp-xmlrpc-server.php | Edit user’s profile. |
| wp_xmlrpc_server::wp_getPage() wp-includes/class-wp-xmlrpc-server.php | Retrieve page. |
| wp_xmlrpc_server::_insert_post() wp-includes/class-wp-xmlrpc-server.php | Helper method for wp_newPost() and wp_editPost(), containing shared logic. |
| wp_xmlrpc_server::wp_editPost() wp-includes/class-wp-xmlrpc-server.php | Edit a post for any registered post type. |
| wp_xmlrpc_server::wp_deletePost() wp-includes/class-wp-xmlrpc-server.php | Delete a post for any registered post type. |
| wp_xmlrpc_server::wp_getPost() wp-includes/class-wp-xmlrpc-server.php | Retrieve a post. |
| wp_xmlrpc_server::minimum_args() wp-includes/class-wp-xmlrpc-server.php | Checks if the method received at least the minimum number of arguments. |
| wp_xmlrpc_server::login() wp-includes/class-wp-xmlrpc-server.php | Log user in. |
| wp_xmlrpc_server::initialise_blog_option_info() wp-includes/class-wp-xmlrpc-server.php | Set up blog options property. |
| WP_Customize_Header_Image_Control::__construct() wp-includes/customize/class-wp-customize-header-image-control.php | Constructor. |
| WP_Customize_Header_Image_Control::render_content() wp-includes/customize/class-wp-customize-header-image-control.php | |
| ms_subdomain_constants() wp-includes/ms-default-constants.php | Defines Multisite subdomain constants and handles warnings and notices. |
| WP_Customize_Background_Image_Control::__construct() wp-includes/customize/class-wp-customize-background-image-control.php | Constructor. |
| WP_Customize_Color_Control::__construct() wp-includes/customize/class-wp-customize-color-control.php | Constructor. |
| WP_Customize_Control::render_content() wp-includes/class-wp-customize-control.php | Render the control’s content. |
| wpdb::check_database_version() wp-includes/class-wpdb.php | Determines whether MySQL database is at least the required minimum version. |
| wpdb::check_connection() wp-includes/class-wpdb.php | Checks that the connection to the database is still up. If not, try to reconnect. |
| wpdb::query() wp-includes/class-wpdb.php | Performs a database query, using current database connection. |
| wpdb::select() wp-includes/class-wpdb.php | Selects a database using the current or provided database connection. |
| wpdb::_real_escape() wp-includes/class-wpdb.php | Real escape, using mysqli_real_escape_string() or mysql_real_escape_string(). |
| wpdb::prepare() wp-includes/class-wpdb.php | Prepares a SQL query for safe execution. |
| wpdb::print_error() wp-includes/class-wpdb.php | Prints SQL/DB error. |
| wpdb::db_connect() wp-includes/class-wpdb.php | Connects to and selects database. |
| WP_Widget::form() wp-includes/class-wp-widget.php | Outputs the settings update form. |
| the_widget() wp-includes/widgets.php | Output an arbitrary widget as a template tag. |
| Walker_Comment::comment() wp-includes/class-walker-comment.php | Outputs a single comment. |
| Walker_Comment::html5_comment() wp-includes/class-walker-comment.php | Outputs a comment in the HTML5 format. |
| register_sidebars() wp-includes/widgets.php | Creates multiple sidebars. |
| register_sidebar() wp-includes/widgets.php | Builds the definition for a single sidebar and returns the ID. |
| Walker_Comment::ping() wp-includes/class-walker-comment.php | Outputs a pingback comment. |
| get_post_reply_link() wp-includes/comment-template.php | Retrieves HTML content for reply to post link. |
| get_cancel_comment_reply_link() wp-includes/comment-template.php | Retrieves HTML content for cancel comment reply link. |
| comment_form_title() wp-includes/comment-template.php | Displays text based on comment reply status. |
| comment_form() wp-includes/comment-template.php | Outputs a complete commenting form for use within a template. |
| comment_type() wp-includes/comment-template.php | Displays the comment type of the current comment. |
| trackback_url() wp-includes/comment-template.php | Displays the current post’s trackback URL. |
| comments_popup_link() wp-includes/comment-template.php | Displays the link to the comments for the current post ID. |
| get_comment_reply_link() wp-includes/comment-template.php | Retrieves HTML content for reply to comment link. |
| get_comment_text() wp-includes/comment-template.php | Retrieves the text of the current comment. |
| get_comment_excerpt() wp-includes/comment-template.php | Retrieves the excerpt of the given comment. |
| get_comment_author() wp-includes/comment-template.php | Retrieves the author of the current comment. |
| WP_Customize_Widgets::export_preview_data() wp-includes/class-wp-customize-widgets.php | Communicates the sidebars that appeared on the page at the very end of the page, and at the very end of the wp_footer, |
| WP_Customize_Widgets::enqueue_scripts() wp-includes/class-wp-customize-widgets.php | Enqueues scripts and styles for Customizer panel and export data to JavaScript. |
| WP_Customize_Widgets::output_widget_control_templates() wp-includes/class-wp-customize-widgets.php | Renders the widget form control templates into the DOM. |
| WP_Customize_Widgets::customize_register() wp-includes/class-wp-customize-widgets.php | Registers Customizer settings and controls for all sidebars and widgets. |
| wp_default_scripts() wp-includes/script-loader.php | Registers all WordPress scripts. |
| wp_set_comment_status() wp-includes/comment.php | Sets the status of a comment. |
| wp_update_comment() wp-includes/comment.php | Updates an existing comment in the database. |
| get_comment_statuses() wp-includes/comment.php | Retrieves all of the WordPress supported comment statuses. |
| wp_allow_comment() wp-includes/comment.php | Validates whether this comment is allowed to be made. |
| register_meta() wp-includes/meta.php | Registers a meta key. |
| _WP_Editors::wp_link_query() wp-includes/class-wp-editor.php | Performs post queries for internal linking. |
| wp_print_media_templates() wp-includes/media-template.php | Prints the templates used in the media manager. |
Changelog
| Version | Description |
|---|---|
| 2.1.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/__