Uses
Uses | Description |
---|---|
wp-includes/comment.php: allow_empty_comment | Filters whether an empty comment should be allowed. |
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: comment_id_not_found | Fires when a comment is attempted on a post that does not exist. |
wp-includes/comment.php: comment_closed | Fires when a comment is attempted on a post that has comments closed. |
wp-includes/comment.php: comment_on_trash | Fires when a comment is attempted on a trashed post. |
wp-includes/comment.php: comment_on_draft | Fires when a comment is attempted on a post in draft mode. |
wp-includes/comment.php: comment_on_password_protected | Fires when a comment is attempted on a password-protected post. |
wp-includes/comment.php: pre_comment_on_post | Fires before a comment is posted. |
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: is_email() | Verifies that an email is valid. |
wp-includes/pluggable.php: wp_verify_nonce() | Verifies that a correct security nonce was used with time limit. |
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/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
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/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/option.php: get_option() | Retrieves an option value based on an option name. |
wp-includes/post-template.php: post_password_required() | Whether post requires password and correct password has been provided. |
wp-includes/post.php: get_post() | Retrieves post data given a post ID or post object. |
wp-includes/post.php: get_post_status() | Retrieve the post status based on the post ID. |
wp-includes/post.php: get_post_status_object() | Retrieve a post status object by name. |
wp-includes/comment-template.php: comments_open() | Determines whether the current post is open for comments. |
wp-includes/comment.php: wp_new_comment() | Adds a new comment to the database. |
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. |
wp-includes/class-wp-error.php: WP_Error::__construct() | Initialize the error. |