PageRenderTime 46ms CodeModel.GetById 13ms RepoModel.GetById 1ms app.codeStats 0ms

/wp-content/themes/catch-box/archive.php

https://github.com/ActivateNY/activateny.org
PHP | 67 lines | 38 code | 13 blank | 16 comment | 5 complexity | ef24c1d8cede52b410652b279617a564 MD5 | raw file
Possible License(s): GPL-2.0, AGPL-1.0, LGPL-2.1
  1. <?php
  2. /**
  3. * The template for displaying Archive pages.
  4. *
  5. * Used to display archive-type pages if nothing more specific matches a query.
  6. * For example, puts together date-based pages if no date.php file exists.
  7. *
  8. * Learn more: http://codex.wordpress.org/Template_Hierarchy
  9. *
  10. * @package Catch Themes
  11. * @subpackage Catch_Box
  12. * @since Catch Box 1.0
  13. */
  14. get_header(); ?>
  15. <?php if ( have_posts() ) : ?>
  16. <header class="page-header">
  17. <h1 class="page-title">
  18. <?php if ( is_day() ) : ?>
  19. <?php printf( __( 'Daily Archives: %s', 'catchbox' ), '<span>' . get_the_date() . '</span>' ); ?>
  20. <?php elseif ( is_month() ) : ?>
  21. <?php printf( __( 'Monthly Archives: %s', 'catchbox' ), '<span>' . get_the_date( _x( 'F Y', 'monthly archives date format', 'catchbox' ) ) . '</span>' ); ?>
  22. <?php elseif ( is_year() ) : ?>
  23. <?php printf( __( 'Yearly Archives: %s', 'catchbox' ), '<span>' . get_the_date( _x( 'Y', 'yearly archives date format', 'catchbox' ) ) . '</span>' ); ?>
  24. <?php else : ?>
  25. <?php _e( 'Blog Archives', 'catchbox' ); ?>
  26. <?php endif; ?>
  27. </h1>
  28. </header>
  29. <?php /* Start the Loop */ ?>
  30. <?php while ( have_posts() ) : the_post(); ?>
  31. <?php
  32. /* Include the Post-Format-specific template for the content.
  33. * If you want to overload this in a child theme then include a file
  34. * called content-___.php (where ___ is the Post Format name) and that will be used instead.
  35. */
  36. get_template_part( 'content', get_post_format() );
  37. ?>
  38. <?php endwhile; ?>
  39. <?php catchbox_content_nav( 'nav-below' ); ?>
  40. <?php else : ?>
  41. <article id="post-0" class="post no-results not-found">
  42. <header class="entry-header">
  43. <h1 class="entry-title"><?php _e( 'Nothing Found', 'catchbox' ); ?></h1>
  44. </header><!-- .entry-header -->
  45. <div class="entry-content">
  46. <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'catchbox' ); ?></p>
  47. <?php get_search_form(); ?>
  48. </div><!-- .entry-content -->
  49. </article><!-- #post-0 -->
  50. <?php endif; ?>
  51. </div><!-- #content -->
  52. </div><!-- #primary -->
  53. <?php get_sidebar(); ?>
  54. <?php get_footer(); ?>