wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_update_term_parent › WordPress Filter Hooks

Seit3.1.0
Veraltetn/v
apply_filters( 'wp_update_term_parent', $args['parent'], $term_id, $taxonomy, $parsed_args, $args )
Parameter: (5)
  • (int) $parent_term ID of the parent term.
    Erforderlich: Ja
  • (int) $term_id Term ID.
    Erforderlich: Ja
  • (string) $taxonomy Taxonomy slug.
    Erforderlich: Ja
  • (array) $parsed_args An array of potentially altered update arguments for the given term.
    Erforderlich: Ja
  • (array) $args Arguments passed to wp_update_term().
    Erforderlich: Ja
Definiert in:
Codex:

Filters the term parent.

Hook to this filter to see if it will cause a hierarchy loop.





Quellcode

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