Hello,
I have been using this code to display certain things only on subpages of a certain page (203 in this case):
<?php global $post;
if (($post->post_parent > 0) && !is_page('203')){ ?>
Stuff to display
<?php } ?>
Now I have just realized that this gets displayed on every subpage, not just where 203 is the parent. Does anyone know how to fix that? Thanks!