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); ?> ">
	  &larr; Back
	</a>
<?php endwhile; ?>

<?php get_footer(); ?>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
edge_framework-0.10.0 template/wordpress/single.php
edge_framework-0.9.12 template/wordpress/single.php
edge_framework-0.9.11 template/wordpress/single.php
edge_framework-0.9.10 template/wordpress/single.php
edge_framework-0.9.9 template/wordpress/single.php
edge_framework-0.9.0 template/wordpress/single.php
edge_framework-0.8.1 template/wordpress/single.php
edge_framework-0.6.1 template/wordpress/single.php