Uses
Uses | Description |
---|---|
wp-admin/includes/class-wp-list-table.php: WP_List_Table::single_row() | Generates content for a single row of the table. |
wp-admin/includes/dashboard.php: _wp_dashboard_recent_comments_row() | Outputs a row for the Recent Comments widget. |
wp-admin/includes/list-table.php: _get_list_table() | Fetches an instance of a WP_List_Table class. |
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: _n() | Translates and retrieves the singular or plural form based on the supplied number. |
wp-includes/formatting.php: wp_slash() | Add slashes to a string or array of strings, in a recursive manner. |
wp-includes/pluggable.php: wp_create_nonce() | Creates a cryptographic token tied to a specific action, user, user session, and window of time. |
wp-includes/pluggable.php: check_ajax_referer() | Verifies the Ajax request to prevent processing requests external of the blog. |
wp-includes/pluggable.php: wp_get_current_user() | Retrieve the current user object. |
wp-includes/kses.php: kses_remove_filters() | Removes all KSES input form content filters. |
wp-includes/kses.php: kses_init_filters() | Adds all KSES input form content filters. |
wp-includes/functions.php: absint() | Convert a value to non-negative integer. |
wp-includes/functions.php: wp_die() | Kills WordPress execution and displays HTML page with an error message. |
wp-includes/functions.php: number_format_i18n() | Convert float number to format based on the locale. |
wp-includes/class-wp-ajax-response.php: WP_Ajax_Response::__construct() | Constructor – Passes args to WP_Ajax_Response::add(). |
wp-includes/plugin.php: remove_filter() | Removes a function from a specified filter hook. |
wp-includes/plugin.php: add_filter() | Hook a function or method to a specific filter action. |
wp-includes/post.php: get_post() | Retrieves post data given a post ID or post object. |
wp-includes/comment.php: wp_set_comment_status() | Sets the status of a comment. |
wp-includes/comment.php: wp_new_comment() | Adds a new comment to the database. |
wp-includes/comment.php: wp_count_comments() | Retrieves the total comment counts for the whole site or a single post. |
wp-includes/comment.php: get_comment() | Retrieves comment data given a comment ID or comment object. |
wp-includes/load.php: is_wp_error() | Check whether variable is a WordPress Error. |