Uses
Uses | Description |
---|---|
wp-admin/includes/user.php: delete_user | Fires immediately before a user is deleted from the database. |
wp-admin/includes/user.php: post_types_to_delete_with_user | Filters the list of post types to delete with a user. |
wp-admin/includes/user.php: deleted_user | Fires immediately after a user is deleted from the database. |
wp-admin/includes/bookmark.php: wp_delete_link() | Deletes a specified link from the database. |
wp-includes/class-wp-user.php: WP_User::__construct() | Constructor. |
wp-includes/load.php: is_multisite() | If Multisite is enabled. |
wp-includes/load.php: get_current_blog_id() | Retrieve the current site ID. |
wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/user.php: clean_user_cache() | Clean all user caches |
wp-includes/post.php: clean_post_cache() | Will clean the post in the cache. |
wp-includes/post.php: wp_delete_post() | Trash or delete a post or page. |
wp-includes/post.php: post_type_supports() | Check a post type’s support for a given feature. |
wp-includes/post.php: get_post_types() | Get a list of all registered post type objects. |
wp-includes/bookmark.php: clean_bookmark_cache() | Deletes the bookmark cache. |
wp-includes/ms-functions.php: remove_user_from_blog() | Remove a user from a blog. |
wp-includes/wp-db.php: wpdb::get_col() | Retrieves one column from the database. |
wp-includes/wp-db.php: wpdb::update() | Updates a row in the table. |
wp-includes/wp-db.php: wpdb::delete() | Deletes a row in the table. |
wp-includes/wp-db.php: wpdb::prepare() | Prepares a SQL query for safe execution. |
wp-includes/meta.php: delete_metadata_by_mid() | Deletes metadata by meta ID. |