edit_term_{$field}

过滤钩子
apply_filters( "edit_term_{$field}", $value, $term_id, $taxonomy )
参数
  • (mixed) $value Value of the term field.
    Required:
  • (int) $term_id Term ID.
    Required:
  • (string) $taxonomy Taxonomy slug.
    Required:
定义位置
相关勾子
get_terms_fieldsedit_user_fieldedit_term_linkedit_termpre_term_field
相关方法
get_term_fieldsanitize_term_fieldedit_term_linkget_post_fieldget_term_childrenget_edit_term_link
引入
2.3.0
弃用
-

edit_term_{$field}: 这个过滤器是用来在编辑术语时修改一个特定的字段。过滤器的名称是动态的,包括作为变量的字段名。

在清理术语字段之前过滤要编辑的术语字段。

钩子名称的动态部分$field是指术语字段。

$value = apply_filters( "edit_term_{$field}", $value, $term_id, $taxonomy );

常见问题

FAQs
查看更多 >