Use an existing string.
see #19205. Built from https://develop.svn.wordpress.org/trunk@29234 git-svn-id: http://core.svn.wordpress.org/trunk@29018 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c4fce2f163
commit
ef14aed9a2
|
@ -2421,7 +2421,7 @@ function wp_insert_term( $term, $taxonomy, $args = array() ) {
|
||||||
$args = wp_parse_args( $args, $defaults );
|
$args = wp_parse_args( $args, $defaults );
|
||||||
|
|
||||||
if ( $args['parent'] > 0 && ! term_exists( (int) $args['parent'] ) ) {
|
if ( $args['parent'] > 0 && ! term_exists( (int) $args['parent'] ) ) {
|
||||||
return new WP_Error( 'missing_parent', __( 'The selected parent term no longer exists' ) );
|
return new WP_Error( 'missing_parent', __( 'Parent term does not exist.' ) );
|
||||||
}
|
}
|
||||||
$args['name'] = $term;
|
$args['name'] = $term;
|
||||||
$args['taxonomy'] = $taxonomy;
|
$args['taxonomy'] = $taxonomy;
|
||||||
|
|
Loading…
Reference in New Issue