-
Notifications
You must be signed in to change notification settings - Fork 2
/
category.php
52 lines (38 loc) · 1.35 KB
/
category.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
/**
* The template for displaying an archive page for Categories.
*
* @package Ephemeris
* @since Ephemeris 1.0
*/
get_header(); ?>
<div id="maincontentcontainer">
<div id="content" class="grid-container site-content" role="main">
<?php do_action( 'ephemeris_before_main_grid' ); ?>
<div <?php ephemeris_main_class(); ?>>
<?php do_action( 'ephemeris_before_content' ); ?>
<?php if ( have_posts() ) { ?>
<header class="archive-header">
<?php the_archive_title(); ?>
<?php if ( category_description() ) { // Show an optional category description ?>
<div class="archive-meta"><?php the_archive_description(); ?></div>
<?php } ?>
</header>
<?php
// Start the Loop
while ( have_posts() ) {
the_post();
get_template_part( 'template-parts/content', get_post_format() );
} // end of the loop
?>
<?php ephemeris_posts_pagination(); ?>
<?php } else { ?>
<?php get_template_part( 'template-parts/no', 'results' ); // Include the template that displays a message that posts cannot be found ?>
<?php } // end have_posts() ?>
<?php do_action( 'ephemeris_after_content' ); ?>
</div>
<?php get_sidebar(); ?>
<?php do_action( 'ephemeris_after_main_grid' ); ?>
</div> <!-- /#content.grid-container.site-content -->
</div> <!-- /#maincontentcontainer -->
<?php get_footer(); ?>