Uses
Uses | Description |
---|---|
wp-admin/includes/class-wp-site-health.php: WP_Site_Health::get_instance() | Return an instance of the WP_Site_Health class, or create one if none exist yet. |
wp-admin/includes/misc.php: wp_check_php_version() | Checks if the user needs to update PHP. |
wp-admin/includes/screen.php: get_current_screen() | Get the current screen object |
wp-admin/includes/dashboard.php: wp_check_browser_version() | Checks if the user needs a browser update. |
wp-admin/includes/dashboard.php: wp_dashboard_trigger_widget_control() | Calls widget control callback. |
wp-admin/includes/dashboard.php: wp_add_dashboard_widget() | Adds a new dashboard widget. |
wp-admin/includes/dashboard.php: wp_dashboard_setup | Fires after core widgets for the admin dashboard have been registered. |
wp-admin/includes/dashboard.php: wp_dashboard_widgets | Filters the list of widgets to load for the admin dashboard. |
wp-admin/includes/dashboard.php: wp_network_dashboard_setup | Fires after core widgets for the Network Admin dashboard have been registered. |
wp-admin/includes/dashboard.php: wp_network_dashboard_widgets | Filters the list of widgets to load for the Network Admin dashboard. |
wp-admin/includes/dashboard.php: wp_user_dashboard_setup | Fires after core widgets for the User Admin dashboard have been registered. |
wp-admin/includes/dashboard.php: wp_user_dashboard_widgets | Filters the list of widgets to load for the User Admin dashboard. |
wp-admin/includes/meta-boxes.php: do_meta_boxes | Fires after meta boxes have been added. |
wp-includes/capabilities.php: current_user_can() | Returns whether the current user has the specified capability. |
wp-includes/l10n.php: __() | Retrieve the translation of $text. |
wp-includes/pluggable.php: wp_redirect() | Redirects to another page. |
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/load.php: is_network_admin() | Whether the current request is for the network administrative interface. |
wp-includes/load.php: is_blog_admin() | Whether the current request is for a site’s administrative interface. |
wp-includes/load.php: is_user_admin() | Whether the current request is for a user admin screen. |
wp-includes/functions.wp-scripts.php: wp_enqueue_script() | Enqueue a script. |
wp-includes/functions.php: remove_query_arg() | Removes an item or items from a query string. |
wp-includes/functions.wp-styles.php: wp_enqueue_style() | Enqueue a CSS stylesheet. |
wp-includes/plugin.php: add_filter() | Hook a function or method to a specific filter action. |
wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/post.php: get_post_type_object() | Retrieves a post type object by name. |