Sha256: 0aee873c00184cc8d4dd1ceb75259e331971f166094e37d66054e295ec036f66
Contents?: true
Size: 564 Bytes
Versions: 8
Compression:
Stored size: 564 Bytes
Contents
<?php /* ---------------------- Single Post Template ---------------------- */ get_header(); ?> <p><small>single.php</small></p> <?php while (have_posts() ) : the_post(); ?> <h1><?php echo get_the_title(); ?></h1> <h4><?php echo date("D, d M Y" , strtotime(get_the_date() ) ); ?></h4> <?php echo get_the_content(); ?> <?php $categories = get_the_category(); $category = $categories[0]; ?> <a href="<?php echo get_category_link($category->cat_ID); ?> "> ← Back </a> <?php endwhile; ?> <?php get_footer(); ?>
Version data entries
8 entries across 8 versions & 1 rubygems