Skip to content

Instantly share code, notes, and snippets.

<?php
$loop = new WP_Query( array( 'post_type' => 'event', 'posts_per_page' => 10 ) );
if ( $loop->have_posts() ) while ( $loop->have_posts() ) : $loop->the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h1 class="entry-title"><?php the_title(); ?></h1>
<div class="entry-content">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'TRBC' ), 'after' => '</div>' ) ); ?>