Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: pre_insert_term

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
2407       * Filters a term before it is sanitized and inserted into the database.
2408       *
2409       * @since 3.0.0
2410       * @since 6.1.0 The `$args` parameter was added.
2411       *
2412       * @param string|WP_Error $term     The term name to add, or a WP_Error object if there's an error.
2413       * @param string          $taxonomy Taxonomy slug.
2414       * @param array|string    $args     Array or query string of arguments passed to wp_insert_term().
2415       */
2416      $term = apply_filters( 'pre_insert_term', $term, $taxonomy, $args );
2417
2418      if ( is_wp_error( $term ) ) {
2419           return $term;
2420      }
2421
2422      if ( is_int( $term ) && 0 === $term ) {
2423           return new WP_Error( 'invalid_term_id', __( 'Invalid term ID.' ) );
2424      }
2425