get_term_to_edit

函数


get_term_to_edit ( $id, $taxonomy )
参数
  • (int|object)
    $id
    Term ID or object.
    Required:
  • (string)
    $taxonomy
    Taxonomy name.
    Required:
返回值
  • (string|int|null|WP_Error) Will return empty string if $term is not an object.
定义位置
  • wp-includes/taxonomy.php
    , line 1198
引入
2.3.0
弃用

对编辑用的术语进行Sanitize。

返回值是sanitize_term(),用法是对编辑用的术语进行Sanitize。编辑。该函数是为了简化上下文。

function get_term_to_edit( $id, $taxonomy ) {
	$term = get_term( $id, $taxonomy );

	if ( is_wp_error( $term ) ) {
		return $term;
	}

	if ( ! is_object( $term ) ) {
		return '';
	}

	return sanitize_term( $term, $taxonomy, 'edit' );
}