Skip to content

Instantly share code, notes, and snippets.

@designbuildtest
Created February 17, 2015 01:21
Show Gist options
  • Save designbuildtest/7d30f953fec0929b4f14 to your computer and use it in GitHub Desktop.
Save designbuildtest/7d30f953fec0929b4f14 to your computer and use it in GitHub Desktop.
archive-testimonial.php
<?php get_header(); ?>
<?php if ( have_posts() ) : ?>
<div class="container none-page-content testimonials">
<h1><?php post_type_archive_title(); ?></h1>
<?php while ( have_posts() ) : the_post(); ?>
<blockquote>
<?php the_content(); ?>
<footer><cite><?php the_title(); ?></cite></footer>
</blockquote>
<?php endwhile; ?>
</div>
<?php endif; ?>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment