<?php get_header(); ?> <div id="primary"> <div id="content" role="main"> <?php $mypost = array( 'post_type' => 'my_stories', ); $loop = new WP_Query( $mypost ); ?> <?php while ( $loop->have_posts() ) : $loop->the_post();?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <div style="float: top; margin: 10px"> <?php the_post_thumbnail( array( 100, 100 ) ); ?> </div> <strong>Title: </strong><?php the_title(); ?><br /> <strong>Memo: </strong> <?php echo esc_html( get_post_meta( get_the_ID(), 'story_memo', true ) ); ?> <br /> <strong>Rating: </strong> <?= intval( get_post_meta( get_the_ID(), 'story_rating', true ) ); ?> </header> <div class="entry-content"> <?php the_content(); ?> </div> <hr/> </article> <?php endwhile; ?> </div> </div> <?php wp_reset_query(); ?> <?php get_footer(); ?>