You appear to be a bot. Output may be restricted
Description
Will update term count based on number of objects.
Default callback for the 'link_category' taxonomy.
Usage
_update_generic_term_count( $terms, $taxonomy );
Parameters
- $terms
- ( int[] ) required – List of term taxonomy IDs.
- $taxonomy
- ( WP_Taxonomy ) required – Current taxonomy object of terms.
Returns
void
Source
File name: wordpress/wp-includes/taxonomy.php
Lines:
1 to 14 of 14
function _update_generic_term_count( $terms, $taxonomy ) { global $wpdb; foreach ( (array) $terms as $term ) { $count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->term_relationships WHERE term_taxonomy_id = %d", $term ) ); /** This action is documented in wp-includes/taxonomy.php */ do_action( 'edit_term_taxonomy', $term, $taxonomy->name ); $wpdb->update( $wpdb->term_taxonomy, compact( 'count' ), array( 'term_taxonomy_id' => $term ) ); /** This action is documented in wp-includes/taxonomy.php */ do_action( 'edited_term_taxonomy', $term, $taxonomy->name ); } }