Uses
Uses | Description |
---|---|
wp-includes/taxonomy.php: pre_delete_term | Fires when deleting a term, before any modifications are made to posts or terms. |
wp-includes/functions.php: wp_parse_args() | Merge user defined arguments into defaults array. |
wp-includes/functions.php: wp_list_pluck() | Pluck a certain field out of each object in a list. |
wp-includes/taxonomy.php: clean_term_cache() | Will remove all of the term IDs from the cache. |
wp-includes/taxonomy.php: clean_object_term_cache() | Removes the taxonomy relationship to terms from the cache. |
wp-includes/taxonomy.php: wp_get_object_terms() | Retrieves the terms associated with the given object(s), in the supplied taxonomies. |
wp-includes/taxonomy.php: wp_set_object_terms() | Create Term and Taxonomy Relationships. |
wp-includes/taxonomy.php: edit_term_taxonomies | Fires immediately before a term to delete’s children are reassigned a parent. |
wp-includes/taxonomy.php: edited_term_taxonomies | Fires immediately after a term to delete’s children are reassigned a parent. |
wp-includes/taxonomy.php: delete_term_taxonomy | Fires immediately before a term taxonomy ID is deleted. |
wp-includes/taxonomy.php: deleted_term_taxonomy | Fires immediately after a term taxonomy ID is deleted. |
wp-includes/taxonomy.php: delete_term | Fires after a term is deleted from the database and the cache is cleaned. |
wp-includes/taxonomy.php: delete_{$taxonomy} | Fires after a term in a specific taxonomy is deleted. |
wp-includes/taxonomy.php: term_exists() | Determines whether a taxonomy term exists. |
wp-includes/taxonomy.php: get_taxonomy() | Retrieves the taxonomy object of $taxonomy. |
wp-includes/taxonomy.php: is_taxonomy_hierarchical() | Determines whether the taxonomy object is hierarchical. |
wp-includes/taxonomy.php: get_term() | Get all Term data from database by Term ID. |
wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
wp-includes/option.php: get_option() | Retrieves an option value based on an option name. |
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::get_col() | Retrieves one column from the database. |
wp-includes/wp-db.php: wpdb::delete() | Deletes a row in the table. |
wp-includes/wp-db.php: wpdb::get_var() | Retrieves one variable from the database. |
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. |
wp-includes/load.php: is_wp_error() | Check whether variable is a WordPress Error. |