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.
| Line | Code | 
|---|---|
| 2120 |      /** | 
| 2121 |       * Filters term data before it is inserted into the database. | 
| 2122 |       * | 
| 2123 |       * @since 4.7.0 | 
| 2124 |       * | 
| 2125 |       * @param array  $data     Term data to be inserted. | 
| 2126 |       * @param string $taxonomy Taxonomy slug. | 
| 2127 |       * @param array  $args     Arguments passed to wp_insert_term(). | 
| 2128 |       */ | 
| 2129 |      $data = apply_filters( 'wp_insert_term_data', $data, $taxonomy, $args ); | 
| 2130 |  | 
| 2131 |      if ( false === $wpdb->insert( $wpdb->terms, $data ) ) { | 
| 2132 |           return new WP_Error( 'db_insert_error', __( 'Could not insert term into the database.' ), $wpdb->last_error ); | 
| 2133 |      } | 
| 2134 |  | 
| 2135 |      $term_id = (int) $wpdb->insert_id; | 
| 2136 |  | 
| 2137 |      // Seems unreachable, However, Is used in the case that a term name is provided, which sanitizes to an empty string. | 
| 2138 |      if ( empty($slug) ) { |