Last active
December 6, 2016 15:17
-
-
Save mustafix/cd6965a9c7011f3f92c045a8a2aec1d5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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