Uses
Uses | Description |
---|---|
wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
wp-includes/post.php: trash_post_comments | Fires before comments are sent to the Trash. |
wp-includes/post.php: trashed_post_comments | Fires after comments are sent to the Trash. |
wp-includes/post.php: add_post_meta() | Adds a meta field to the given post. |
wp-includes/post.php: get_post() | Retrieves post data given a post ID or post object. |
wp-includes/wp-db.php: wpdb::get_results() | Retrieves an entire SQL result set from the database (i.e., many rows). |
wp-includes/wp-db.php: wpdb::update() | Updates a row in the table. |
wp-includes/wp-db.php: wpdb::prepare() | Prepares a SQL query for safe execution. |
wp-includes/comment.php: clean_comment_cache() | Removes a comment from the object cache. |