PageRenderTime 47ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/blog/wp-content/themes/chaostheory/category.php

https://bitbucket.org/sergiohzlz/reportaprod
PHP | 43 lines | 34 code | 9 blank | 0 comment | 2 complexity | a533efa17a8210aee9aab1128e155c13 MD5 | raw file
Possible License(s): GPL-2.0, GPL-3.0, AGPL-1.0, LGPL-2.1
  1. <?php get_header() ?>
  2. <div id="container">
  3. <div id="content" class="hfeed">
  4. <h2 class="page-title"><?php _e('Category Archives:', 'chaostheory') ?> <?php single_cat_title(); ?></h2>
  5. <?php if ( category_description() ) { ?><div class="archive-meta"><?php echo apply_filters('archive_meta', category_description()); ?></div><?php } ?>
  6. <div id="nav-above" class="navigation">
  7. <div class="nav-previous"><?php next_posts_link(__('&laquo; Older posts', 'chaostheory')) ?></div>
  8. <div class="nav-next"><?php previous_posts_link(__('Newer posts &raquo;', 'chaostheory')) ?></div>
  9. </div>
  10. <?php while (have_posts()) : the_post(); ?>
  11. <div id="post-<?php the_ID() ?>" class="<?php sandbox_post_class() ?>">
  12. <div class="entry-meta">
  13. <h2 class="entry-title"><a href="<?php the_permalink() ?>" title="<?php echo esc_attr( sprintf( __( 'Permanent link to %s', 'chaostheory' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title() ?></a></h2>
  14. <ul>
  15. <li class="entry-date"><abbr class="published" title="<?php the_time('Y-m-d\TH:i:sO'); ?>"><?php unset($previousday); printf(__('%1$s &#8211; %2$s', 'chaostheory'), the_date('', '', '', false), get_the_time()) ?></abbr></li>
  16. <!-- <li class="entry-author author vcard"><?php printf(__('By %s', 'chaostheory'), '<a class="url fn" href="'.get_author_link(false, $authordata->ID, $authordata->user_nicename).'" title="View all posts by ' . $authordata->display_name . '">'.get_the_author().'</a>') ?></li> -->
  17. <li class="entry-category"><?php printf(__('Posted in %s', 'chaostheory'), get_the_category_list(', ')) ?></li>
  18. <?php the_tags('<li class="entry-tags">'.__('Tagged').' ', ", ", "</li>\n") ?>
  19. <?php edit_post_link(__('Edit', 'chaostheory'), "\t\t\t\t\t<li class='entry-editlink'>", "</li>"); ?>
  20. <li class="entry-commentlink"><?php comments_popup_link(__('Leave a Comment', 'chaostheory'), __('Comments (1)', 'chaostheory'), __('Comments (%)', 'chaostheory')) ?></li>
  21. </ul>
  22. </div> <div class="entry-content">
  23. <?php the_content('<span class="more-link">'.__('Read More &raquo;', 'chaostheory').'</span>') ?>
  24. </div>
  25. </div><!-- .post -->
  26. <?php endwhile; ?>
  27. <div id="nav-below" class="navigation">
  28. <div class="nav-previous"><?php next_posts_link(__('&laquo; Older posts', 'chaostheory')) ?></div>
  29. <div class="nav-next"><?php previous_posts_link(__('Newer posts &raquo;', 'chaostheory')) ?></div>
  30. </div>
  31. </div><!-- #content .hfeed -->
  32. </div><!-- #container -->
  33. <?php get_sidebar() ?>
  34. <?php get_footer() ?>