Skip to content

Instantly share code, notes, and snippets.

@NickToye
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NickToye/7d3c168517d8094f5554 to your computer and use it in GitHub Desktop.
Save NickToye/7d3c168517d8094f5554 to your computer and use it in GitHub Desktop.
<?php
/*
Template Name: Daily Results Page
*/
?>
<?php get_header(); ?>
<div class="wrapper">
<main>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h1><?php the_title();?></h1>
<p><?php the_field('test'); ?></p>
<?php endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>
</main>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment