Skip to content

Instantly share code, notes, and snippets.

@spigotdesign
Last active October 7, 2016 21:05
Show Gist options
  • Save spigotdesign/a00e2a68cf38d7d5752a19929fc99bd7 to your computer and use it in GitHub Desktop.
Save spigotdesign/a00e2a68cf38d7d5752a19929fc99bd7 to your computer and use it in GitHub Desktop.
Get the title of the parent page; If no parent, show this page's title
<?php echo empty( $post->post_parent ) ? get_the_title( $post->ID ) : get_the_title( $post->post_parent ); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment