taxonomy_parent_dropdown_args

过滤钩子


apply_filters( 'taxonomy_parent_dropdown_args', $dropdown_args, $taxonomy, 'new' )
参数
  • (array)
    $dropdown_args
    {
    An array of taxonomy parent drop-down arguments.

    @type int|bool $hide_empty Whether to hide terms not attached to any posts. Default 0.
    @type bool $hide_if_empty Whether to hide the drop-down if no terms exist. Default false.
    @type string $taxonomy The taxonomy slug.
    @type string $name Value of the name attribute to use for the drop-down select element.
    Default ‘parent’.
    @type string $orderby The field to order by. Default ‘name’.
    @type bool $hierarchical Whether the taxonomy is hierarchical. Default true.
    @type string $show_option_none Label to display if there are no terms. Default ‘None’.
    }

    Required:
  • (string)
    $taxonomy
    The taxonomy slug.
    Required:
  • (string)
    $context
    Filter context. Accepts ‘new’ or ‘edit’.
    Required:
定义位置
  • wp-admin/edit-tags.php
    , line 497
引入
4.2.0
弃用

Filters the taxonomy parent drop-down on the Edit Term page.

$dropdown_args = apply_filters( 'taxonomy_parent_dropdown_args', $dropdown_args, $taxonomy, 'new' );
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。