Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
INVP::delete_all_terms_on_blog()
Deletes all terms in the taxonomies created by this plugin.
Return Return
(void)
Source Source
File: includes/class-invp.php
private static function delete_all_terms_on_blog() { if ( ! class_exists( 'Inventory_Presser_Taxonomies' ) ) { include_once plugin_dir_path( INVP_PLUGIN_FILE_PATH ) . 'includes/class-taxonomies.php'; } $taxonomies = new Inventory_Presser_Taxonomies(); global $wpdb; foreach ( $taxonomies->query_vars_array() as $taxonomy ) { $taxonomy_name = str_replace( '-', '_', $taxonomy ); $terms = $wpdb->get_results( $wpdb->prepare( "SELECT t.*, tt.* FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy IN ( %s ) ORDER BY t.name ASC", $taxonomy_name ) ); // delete terms. if ( $terms ) { foreach ( $terms as $term ) { $wpdb->delete( $wpdb->term_taxonomy, array( 'term_taxonomy_id' => $term->term_taxonomy_id ) ); $wpdb->delete( $wpdb->terms, array( 'term_id' => $term->term_id ) ); } } // delete taxonomy. $wpdb->delete( $wpdb->term_taxonomy, array( 'taxonomy' => $taxonomy_name ), array( '%s' ) ); } }
Expand full source codeCollapse full source codeView on Github