-
Notifications
You must be signed in to change notification settings - Fork 2
/
taxonomy-custom_cat.php
64 lines (46 loc) · 2.03 KB
/
taxonomy-custom_cat.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
53
54
55
56
57
58
59
60
61
62
63
64
<?php
/*
* CUSTOM POST TYPE TAXONOMY TEMPLATE
*
* This is the custom post type taxonomy template. If you edit the custom taxonomy name,
* you've got to change the name of this template to reflect that name change.
*
* For Example, if your custom taxonomy is called "register_taxonomy('shoes')",
* then your template name should be taxonomy-shoes.php
*
* For more info: http://codex.wordpress.org/Post_Type_Templates#Displaying_Custom_Taxonomies
*/
?>
<!doctype html>
<?php get_header(); ?>
<body <?php body_class(); ?> itemscope itemtype="http://schema.org/WebPage">
<?php get_template_part( 'template-parts/site-header' ); ?>
<main role="main" itemprop="mainContentOfPage" itemscope itemtype="http://schema.org/Blog">
<h1 class="archive-title h2"><span><?php _e( 'Posts Categorized:', 'barebonestheme' ); ?></span> <?php single_cat_title(); ?></h1>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php
/*
* Ah, post formats. Nature's greatest mystery (aside from the sloth).
*
* So this function will bring in the needed template file depending on what the post
* format is. The different post formats are located in the post-formats folder.
*
*
* REMEMBER TO ALWAYS HAVE A DEFAULT ONE NAMED "format.php" FOR POSTS THAT AREN'T
* A SPECIFIC POST FORMAT.
*
* If you want to remove post formats, just delete the post-formats folder and
* replace the function below with the contents of the "format.php" file.
*/
get_template_part( 'post-formats/format', get_post_format() );
?>
<?php endwhile; ?>
<?php barebones_page_navi(); ?>
<?php else : ?>
<?php get_template_part( 'template-parts/missing-content' ); ?>
<?php endif; ?>
</main>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
</body>
</html> <!-- end of site. what a ride! -->