Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_insert_term_data

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
2424      /**
2425       * Filters term data before it is inserted into the database.
2426       *
2427       * @since 4.7.0
2428       *
2429       * @param array  $data     Term data to be inserted.
2430       * @param string $taxonomy Taxonomy slug.
2431       * @param array  $args     Arguments passed to wp_insert_term().
2432       */
2433      $data = apply_filters( 'wp_insert_term_data', $data, $taxonomy, $args );
2434
2435      if ( false === $wpdb->insert( $wpdb->terms, $data ) ) {
2436           return new WP_Error( 'db_insert_error', __( 'Could not insert term into the database.' ), $wpdb->last_error );
2437      }
2438
2439      $term_id = (int) $wpdb->insert_id;
2440
2441      // Seems unreachable. However, is used in the case that a term name is provided, which sanitizes to an empty string.
2442      if ( empty( $slug ) ) {