Tagged Questions
0
votes
3answers
328 views
Show content if parent page has children
Using this piece of code you can show content depending if it's a child-page or not:
<?php
global $post;
if ( is_page() && $post->post_parent ) : ?>
This is a child-page.
<?php ...
1
vote
2answers
112 views
Trouble with parent and child conditional tag to show content
I am trying to conditionally change a link based on what page a user is on, but I am having trouble finding the correct code to perform the action.
Here is what I want to do (In English to explain ...