Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- Template Name: Story Books
- */
- ?>
- <?php get_header(); ?>
- <section id="stories">
- <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
- <header>
- <h1><?php the_title(); ?></h1>
- </header>
- <article id="content_left">
- <?php the_content(); ?>
- </article>
- <?php endwhile; endif; ?>
- <div id="content_right">
- <?php
- $mypages = get_pages( array( 'child_of' => $post->ID, 'sort_column' => 'post_date', 'sort_order' => 'desc' ) );
- foreach( $mypages as $page ) {
- $content = $page->post_content;
- if ( ! $content ) // Check for empty page
- continue;
- $content = apply_filters( 'the_content', $content );
- ?>
- <h2><a href="<?php echo get_page_link( $page->ID ); ?>"><?php echo $page->post_title; ?></a></h2>
- <article class="story">
- <?php echo $content; ?>
- <?php echo get_post_meta($post->ID, 'price', true); ?>
- </article>
- <?php } ?>
- </div>
- </section>
- <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment