forked from joshuaiz/air
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaxonomy-custom_cat.php
34 lines (24 loc) · 936 Bytes
/
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
<?php
/*
* Custom Post Type Taxonomy Templatate
*
* 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
*/
?>
<?php get_header(); ?>
<div id="content">
<div id="inner-content" class="wrap content-sidebar">
<main id="main" class="main" role="main" itemscope itemprop="mainContentOfPage" itemtype="https://schema.org/Blog">
<?php // Edit the loop in /templates/archive-loop. Or roll your own. ?>
<?php get_template_part( 'templates/archive', 'loop'); ?>
</main>
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>