Skip to content

Instantly share code, notes, and snippets.

@shahali007
Created August 1, 2016 10:52
Show Gist options
  • Select an option

  • Save shahali007/74049dd6d7d0c4058e90e754cf7c56f7 to your computer and use it in GitHub Desktop.

Select an option

Save shahali007/74049dd6d7d0c4058e90e754cf7c56f7 to your computer and use it in GitHub Desktop.
// post query for page.php
=---------------------------------------------------------=
<div class="col-md-12">
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile; ?>
<?php else : ?>
<h2>404! Not found.</h2>
<?php endif; ?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment