Uses
Uses | Description |
---|---|
wp-admin/includes/dashboard.php: wp_dashboard_recent_drafts() | Show recent drafts of the user on the dashboard. |
wp-admin/includes/template.php: submit_button() | Echoes a submit button, with provided text and appropriate class(es). |
wp-admin/includes/post.php: get_default_post_to_edit() | Default post information to use when populating the “Write Post” form. |
wp-admin/edit-form-advanced.php: enter_title_here | Filters the title field placeholder text. |
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/l10n.php: _e() | Display translated text. |
wp-includes/l10n.php: esc_attr_e() | Display translated text that has been escaped for safe use in an attribute. |
wp-includes/formatting.php: esc_url() | Checks and cleans a URL. |
wp-includes/load.php: get_current_blog_id() | Retrieve the current site ID. |
wp-includes/functions.php: wp_nonce_field() | Retrieve or display nonce hidden field for forms. |
wp-includes/link-template.php: admin_url() | Retrieves the URL to the admin area for the current site. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/user.php: update_user_option() | Update user option with global blog capability. |
wp-includes/user.php: get_blogs_of_user() | Get the sites a user belongs to. |
wp-includes/user.php: get_user_option() | Retrieve user option that can be either per Site or per Network. |
wp-includes/user.php: get_current_user_id() | Get the current user’s ID |
wp-includes/post.php: get_post() | Retrieves post data given a post ID or post object. |