WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 488 | * @type string $name Value of the name attribute to use for the drop-down select element. |
| 489 | * Default 'parent'. |
| 490 | * @type string $orderby The field to order by. Default 'name'. |
| 491 | * @type bool $hierarchical Whether the taxonomy is hierarchical. Default true. |
| 492 | * @type string $show_option_none Label to display if there are no terms. Default 'None'. |
| 493 | * } |
| 494 | * @param string $taxonomy The taxonomy slug. |
| 495 | * @param string $context Filter context. Accepts 'new' or 'edit'. |
| 496 | */ |
| 497 | $dropdown_args = apply_filters( 'taxonomy_parent_dropdown_args', $dropdown_args, $taxonomy, 'new' ); |
| 498 | |
| 499 | $dropdown_args['aria_describedby'] = 'parent-description'; |
| 500 | |
| 501 | wp_dropdown_categories( $dropdown_args ); |
| 502 | ?> |
| 503 | <?php if ( 'category' === $taxonomy ) : ?> |
| 504 | <p id="parent-description"><?php _e( 'Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.' ); ?></p> |
| 505 | <?php else : ?> |
| 506 | <p id="parent-description"><?php echo $tax->labels->parent_field_description; ?></p> |