Sha256: f3f3b9d1316052b5a44aef663ccbabbe9b71549617fb9c9ad7a3931efd425d42

Contents?: true

Size: 700 Bytes

Versions: 8

Compression:

Stored size: 700 Bytes

Contents

<?php
/* -------------------------
  View Category Template
------------------------- */
get_header(); ?>

<p><small>category.php</small></p>

<p><a href="<?php home(); ?>">&larr; Home</a></p>

<h1><?php echo ucfirst(single_cat_title('', false) ); ?></h1>

<?php // If the category has description
if(category_description() ): ?>
  <p><?php echo category_description(); ?></p>
<?php endif; ?>

<?php if (have_posts() ): ?>
  <h3>Posts</h3>
  <ul>
    <?php while (have_posts() ): the_post(); ?>
      <a href="<?php echo get_permalink(); ?>">
        <li><?php echo get_the_title(); ?></li>
      </a>
    <?php endwhile; ?>
  </ul>
<?php endif; ?>

<?php get_footer(); ?>

Version data entries

8 entries across 8 versions & 1 rubygems

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