Skip to content

Instantly share code, notes, and snippets.

@mustafix
Last active December 6, 2016 15:17
Show Gist options
  • Save mustafix/cd6965a9c7011f3f92c045a8a2aec1d5 to your computer and use it in GitHub Desktop.
Save mustafix/cd6965a9c7011f3f92c045a8a2aec1d5 to your computer and use it in GitHub Desktop.
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<h3><?php the_title(); ?></h3>
<?php the_content(); ?>
<?php endwhile; ?>
<?php else : ?>
<h2>404 Not Found !</h2>
<?php endif; ?>
<?php if(function_exists('wp-pagenavi')){wp-pagenavi();} else {include('navigation.php');} ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment