Uses
Uses | Description |
---|---|
wp-includes/comment.php: wp_update_comment_type_batch_size | Filters the comment batch size for updating the comment type. |
wp-includes/cron.php: wp_schedule_single_event() | Schedules an event to run only once. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/option.php: update_option() | Updates the value of an option that was already added. |
wp-includes/option.php: delete_option() | Removes option by name. Prevents removal of protected WordPress options. |
wp-includes/option.php: get_option() | Retrieves an option value based on an option name. |
wp-includes/wp-db.php: wpdb::query() | Performs a MySQL database query, using current database connection. |
wp-includes/wp-db.php: wpdb::get_var() | Retrieves one variable from the database. |
wp-includes/wp-db.php: wpdb::get_col() | Retrieves one column from the database. |
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. |