wp_update_term_parent

过滤钩子
apply_filters( 'wp_update_term_parent', $args['parent'], $term_id, $taxonomy, $parsed_args, $args )
参数
  • (int) $parent ID of the parent term.
    Required:
  • (int) $term_id Term ID.
    Required:
  • (string) $taxonomy Taxonomy slug.
    Required:
  • (array) $parsed_args An array of potentially altered update arguments for the given term.
    Required:
  • (array) $args Arguments passed to wp_update_term().
    Required:
定义位置
相关勾子
wp_update_term_datawp_update_sitewp_update_nav_menuwp_update_comment_datawp_update_nav_menu_item
相关方法
wp_update_term_countwp_update_termwp_update_themewp_update_themesupdate_term_metawp_update_term_count_now
引入
3.1.0
弃用
-

wp_update_term_parent: 这是一个WordPress函数,它用于更新术语的父术语: 当术语的父术语需要更

过滤术语父项。

钩住这个过滤器,看看它是否会导致层次循环。

$parent = (int) apply_filters( 'wp_update_term_parent', $args['parent'], $term_id, $taxonomy, $parsed_args, $args );

常见问题

FAQs
查看更多 >