has_post_parent

函数
has_post_parent ( $post = null )
参数
  • (int|WP_Post|null) $post Optional. Post ID or WP_Post object. Default is global $post.
    Required:
    Default: null
返回值
  • (bool) Whether the post has a parent post.
定义位置
相关方法
get_post_parenthas_post_formatadd_posts_pagewp_get_post_parent_idupdate_post_parent_caches
引入
5.7.0
弃用
-

has_post_parent – 这是一个WordPress函数,用于检查当前文章是否有一个父文章。父文章是用来在文章之间创建层次关系的,比如在创建页面层次的时候。has_post_parent函数接受一个参数,即文章的ID或对象,如果该文章有一个父文章,则返回true,如果没有,则返回false。

返回给定的文章是否有一个父文章。

function has_post_parent( $post = null ) {
	return (bool) get_post_parent( $post );
}

常见问题

FAQs
查看更多 >