WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 3 times in this file.
Line | Code |
---|---|
2712 |
|
2713 | /** |
2714 | * Fires immediate before a term-taxonomy relationship is updated. |
2715 | * |
2716 | * @since 2.9.0 |
2717 | * |
2718 | * @param int $tt_id Term taxonomy ID. |
2719 | * @param string $taxonomy Taxonomy slug. |
2720 | */ |
2721 | do_action( 'edit_term_taxonomy', $tt_id, $taxonomy ); |
2722 |
|
2723 | $wpdb->update( $wpdb->term_taxonomy, compact( 'term_id', 'taxonomy', 'description', 'parent' ), array( 'term_taxonomy_id' => $tt_id ) ); |
2724 |
|
2725 | /** |
2726 | * Fires immediately after a term-taxonomy relationship is updated. |
2727 | * |
2728 | * @since 2.9.0 |
2729 | * |
2730 | * @param int $tt_id Term taxonomy ID. |
Line | Code |
3384 |
|
3385 | // Attachments can be 'inherit' status, we need to base count off the parent's status if so. |
3386 | if ( $check_attachments ) |
3387 | $count += (int) $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->term_relationships, $wpdb->posts p1 WHERE p1.ID = $wpdb->term_relationships.object_id AND ( post_status = 'publish' OR ( post_status = 'inherit' AND post_parent > 0 AND ( SELECT post_status FROM $wpdb->posts WHERE ID = p1.post_parent ) = 'publish' ) ) AND post_type = 'attachment' AND term_taxonomy_id = %d", $term ) ); |
3388 |
|
3389 | if ( $object_types ) |
3390 | $count += (int) $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->term_relationships, $wpdb->posts WHERE $wpdb->posts.ID = $wpdb->term_relationships.object_id AND post_status = 'publish' AND post_type IN ('" . implode("', '", $object_types ) . "') AND term_taxonomy_id = %d", $term ) ); |
3391 |
|
3392 | /** This action is documented in wp-includes/taxonomy.php */ |
3393 | do_action( 'edit_term_taxonomy', $term, $taxonomy->name ); |
3394 | $wpdb->update( $wpdb->term_taxonomy, compact( 'count' ), array( 'term_taxonomy_id' => $term ) ); |
3395 |
|
3396 | /** This action is documented in wp-includes/taxonomy.php */ |
3397 | do_action( 'edited_term_taxonomy', $term, $taxonomy->name ); |
3398 | } |
3399 | } |
3400 |
|
3401 | /** |
3402 | * Will update term count based on number of objects. |
Line | Code |
3411 | * @param object $taxonomy Current taxonomy object of terms. |
3412 | */ |
3413 | function _update_generic_term_count( $terms, $taxonomy ) { |
3414 | global $wpdb; |
3415 |
|
3416 | foreach ( (array) $terms as $term ) { |
3417 | $count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->term_relationships WHERE term_taxonomy_id = %d", $term ) ); |
3418 |
|
3419 | /** This action is documented in wp-includes/taxonomy.php */ |
3420 | do_action( 'edit_term_taxonomy', $term, $taxonomy->name ); |
3421 | $wpdb->update( $wpdb->term_taxonomy, compact( 'count' ), array( 'term_taxonomy_id' => $term ) ); |
3422 |
|
3423 | /** This action is documented in wp-includes/taxonomy.php */ |
3424 | do_action( 'edited_term_taxonomy', $term, $taxonomy->name ); |
3425 | } |
3426 | } |
3427 |
|
3428 | /** |
3429 | * Create a new term for a term_taxonomy item that currently shares its term |