Check if a page is a parent or if it's a child page?

后端 未结 4 1198
清酒与你
清酒与你 2021-01-31 09:12

Is it possible to check if a page is a parent or if it\'s a child page?

I have my pages set up like this:

-- Parent

---- Child page 1

---- Child

4条回答
  •  伪装坚强ぢ
    2021-01-31 09:31

    You can test if the post is a subpage like this:
    *(from http://codex.wordpress.org/Conditional_Tags)*

    post_parent ) {
        // This is a subpage
    
    } else {
        // This is not a subpage
    }
    ?>
    

提交回复
热议问题