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
1917  * @param array|string $args Change the values of the inserted term
1918  * @return array|WP_Error The Term ID and Term Taxonomy ID
1919  */
1920 function wp_insert_term( $term, $taxonomy, $args = array() ) {
1921      global $wpdb;
1922
1923      if ( ! taxonomy_exists($taxonomy) )
1924           return new WP_Error('invalid_taxonomy', __('Invalid taxonomy'));
1925
1926      $term = apply_filters( 'pre_insert_term', $term, $taxonomy );
1927           if ( is_wp_error( $term ) )
1928                return $term;
1929
1930      if ( is_int($term) && 0 == $term )
1931           return new WP_Error('invalid_term_id', __('Invalid term ID'));
1932
1933      if ( '' == trim($term) )
1934           return new WP_Error('empty_term_name', __('A name is required for this term'));
1935