Single_default.php File Example1
Description
This code is for individual post pages. Paste it the main container and add WordPress codex to show information such as the title, date, author, etc
This code is for individual post pages. Paste it the main container and add WordPress codex to show information such as the title, date, author, etc
PHP Source Code
<!--Start-->
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<!--Post Details Starts-->
<center><h1>ALL OF THE POST DETAILS WILL GO HERE</h1></center>
<!--Post Details End-->
<?php endwhile; ?>
<?php else : ?>
<center><h2>Sorry, but you are looking for something that isn't here</h2></center>
<?php endif; ?>
<!--End-->