过滤钩子
apply_filters( "nav_menu_items_{$post_type_name}", $posts, $args, $post_type )
- 参数
-
-
(object[])
$posts
The posts for the current post type. Mostly `WP_Post` objects, but
can also contain “fake” post objects to represent other menu items.- Required: 是
-
(array)
$args
An array of `WP_Query` arguments.- Required: 是
-
(WP_Post_Type)
$post_type
The current post type object for this menu item meta box.- Required: 是
-
(object[])
- 定义位置
-
-
wp-admin/includes/nav-menu.php
, line 655
-
wp-admin/includes/nav-menu.php
- 引入
- 4.6.0
- 弃用
- –
Filters the posts displayed in the ‘View All’ tab of the current
post type’s menu items meta box.
The dynamic portion of the hook name, $post_type_name
, refers
to the slug of the current post type.
Possible hook names include:
nav_menu_items_post
nav_menu_items_page
$posts = apply_filters( "nav_menu_items_{$post_type_name}", $posts, $args, $post_type );
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。