返回介绍

is_post_type_hierarchical()

发布于 2017-09-11 01:23:14 字数 2663 浏览 1010 评论 0 收藏 0

is_post_type_hierarchical( string $post_type )

Whether the post type is hierarchical.


description

A false return value might also mean that the post type does not exist.


参数

$post_type

(string) (Required) Post type name


返回值

(bool) Whether post type is hierarchical.


源代码

File: wp-includes/post.php

function is_post_type_hierarchical( $post_type ) {
	if ( ! post_type_exists( $post_type ) )
		return false;

	$post_type = get_post_type_object( $post_type );
	return $post_type->hierarchical;
}

更新日志

Versiondescription
3.0.0Introduced.

相关函数

Uses

  • wp-includes/post.php: post_type_exists()
  • wp-includes/post.php: get_post_type_object()

Used By

  • wp-admin/includes/class-wp-posts-list-table.php: WP_Posts_List_Table::handle_row_actions()
  • wp-admin/includes/class-wp-posts-list-table.php: WP_Posts_List_Table::column_title()
  • wp-admin/includes/class-wp-posts-list-table.php: WP_Posts_List_Table::column_default()
  • wp-admin/includes/post.php: wp_edit_posts_query()
  • wp-admin/includes/ajax-actions.php: wp_ajax_inline_save()
  • wp-admin/includes/meta-boxes.php: page_attributes_meta_box()
  • wp-admin/includes/nav-menu.php: wp_nav_menu_item_post_type_meta_box()
  • wp-admin/includes/class-wp-posts-list-table.php: WP_Posts_List_Table::get_table_classes()
  • wp-admin/includes/class-wp-posts-list-table.php: WP_Posts_List_Table::prepare_items()
  • wp-includes/query.php: wp_old_slug_redirect()
  • wp-includes/nav-menu-template.php: _wp_menu_item_classes_by_context()
  • wp-includes/post-template.php: wp_list_pages()
  • wp-includes/post.php: wp_check_for_changed_slugs()
  • wp-includes/post.php: wp_unique_post_slug()
  • wp-includes/post.php: wp_delete_post()
  • wp-includes/class-wp-rewrite.php: WP_Rewrite::generate_rewrite_rules()
  • Show 11 more used by Hide more used by

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文