Reputation: 67
I want to make a check if im on a subpage. On the homepage it is :
<?php if(is_front_page()): ?> <?php endif; ?>
But how to do it when it is another page?
Upvotes: 1
Views: 7110
Reputation: 27092
There is no function to check if a page is a sub-page. We can get around the problem:
if ( is_page() && $post->post_parent > 0 ) {
echo "This is a child page";
}
Upvotes: 6