Uses
Uses | Description |
---|---|
wp-admin/includes/class-wp-posts-list-table.php: quick_edit_show_taxonomy | Filters whether the current taxonomy should be shown in the Quick Edit panel. |
wp-admin/includes/class-wp-list-table.php: WP_List_Table::display_rows() | Generates the table rows. |
wp-admin/includes/list-table.php: _get_list_table() | Fetches an instance of a WP_List_Table class. |
wp-admin/includes/post.php: wp_check_post_lock() | Check to see if the post is currently being edited by another user. |
wp-admin/includes/post.php: edit_post() | Update an existing post with values provided in $_POST. |
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/formatting.php: wp_slash() | Add slashes to a string or array of strings, in a recursive manner. |
wp-includes/formatting.php: esc_html() | Escaping for HTML blocks. |
wp-includes/pluggable.php: check_ajax_referer() | Verifies the Ajax request to prevent processing requests external of the blog. |
wp-includes/pluggable.php: get_userdata() | Retrieve user info by user ID. |
wp-includes/functions.php: wp_die() | Kills WordPress execution and displays HTML page with an error message. |
wp-includes/taxonomy.php: get_taxonomy() | Retrieves the taxonomy object of $taxonomy. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/user.php: get_current_user_id() | Get the current user’s ID |
wp-includes/post.php: wp_unique_post_slug() | Computes a unique slug for the post, when given the desired slug and some post details. |
wp-includes/post.php: get_post() | Retrieves post data given a post ID or post object. |
wp-includes/post.php: is_post_type_hierarchical() | Whether the post type is hierarchical. |