Skip to content

Instantly share code, notes, and snippets.

@schalkburger
Created February 17, 2015 08:20
Show Gist options
  • Save schalkburger/dffbaea26bb765d7dafd to your computer and use it in GitHub Desktop.
Save schalkburger/dffbaea26bb765d7dafd to your computer and use it in GitHub Desktop.
Wordpress display conditional content
<?php // if inside the loop
if ( is_page( array(1, 2, 3) ) ) { ?>
<p>Conditional content to show</p>
<?php } else { }?>
<?php // if outside the loop
global $post;
if ( is_page('5') && $post->post_parent ) { ?>
<p>Conditional content to show</p>
<?php } else { }?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment