madeinthearcade
2/23/2017 - 10:11 PM

Show custom post type

Show custom post type

		<?php 
			$args = array( 'post_type' => 'NAME OF POST TYPE', 'posts_per_page' => 10 );
			$the_query = new WP_Query( $args ); 
		?>
		<?php if ($the_query->have_posts()) : while ($the_query->have_posts()) : $the_query->the_post(); ?>
		<div class="testimonial-content">
			<div class="entry-content">
				<?php the_content(); ?>
				<span class="author">
					<?php the_title(); ?>
				</span>
			</div>
			<?php wp_reset_postdata(); ?>
		</div>
		<?php endwhile; endif; ?>