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