Uses
Uses | Description |
---|---|
wp-includes/comment.php: wp_update_comment_data | Filters the comment data immediately before it is updated in the database. |
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: wp_unslash() | Remove slashes from a string or array of strings. |
wp-includes/formatting.php: get_gmt_from_date() | Given a date in the timezone of the site, returns that date in UTC. |
wp-includes/functions.php: wp_array_slice_assoc() | Extract a slice of an array, given a list of keys. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
wp-includes/post.php: get_post() | Retrieves post data given a post ID or post object. |
wp-includes/wp-db.php: wpdb::update() | Updates a row in the table. |
wp-includes/comment.php: clean_comment_cache() | Removes a comment from the object cache. |
wp-includes/comment.php: wp_update_comment_count() | Updates the comment count for post(s). |
wp-includes/comment.php: comment_save_pre | Filters the comment content before it is updated in the database. |
wp-includes/comment.php: edit_comment | Fires immediately after a comment is updated in the database. |
wp-includes/comment.php: wp_filter_comment() | Filters and sanitizes comment data. |
wp-includes/comment.php: wp_transition_comment_status() | Call hooks for when a comment status transition occurs. |
wp-includes/comment.php: update_comment_meta() | Update comment meta field based on comment ID. |
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. |