Advertisement
lberelson

custom3 - loop

Jan 29th, 2014
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. <!-- basic loop -->
  2. <?php if (have_posts()) : while (have_posts()) : the_post() ; ?>
  3.     <h2>
  4.        <?php $parent_title = get_the_title($post->post_parent); echo $parent_title; ?>
  5.     </h2>
  6.     <?php if ( testchildren() ) : ?>
  7.        <h1 style="margin-top:6px; margin-bottom:12px;"><?php the_title(); ?></h1>
  8.     <?php endif; ?>
  9.  
  10.  
  11.     <?php the_content(); ?>
  12. <?php endwhile; endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement