-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patharchive-custom_type.php
66 lines (48 loc) · 2.25 KB
/
archive-custom_type.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
65
66
<?php
/*
* CUSTOM POST TYPE ARCHIVE TEMPLATE
*
* This is the custom post type archive template. If you edit the custom post type name,
* you've got to change the name of this template to reflect that name change.
*
* For Example, if your custom post type is called "register_post_type( 'bookmarks')",
* then your template name should be archive-bookmarks.php
*
* For more info: http://codex.wordpress.org/Post_Type_Templates
*/
?>
<!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>
<?php if (is_category()) { ?>
<span><?php _e( 'Posts Categorized:', 'barebonestheme' ); ?></span> <?php single_cat_title(); ?>
<?php } elseif (is_tag()) { ?>
<span><?php _e( 'Posts Tagged:', 'barebonestheme' ); ?></span> <?php single_tag_title(); ?>
<?php } elseif (is_author()) {
global $post;
$author_id = $post->post_author;
?>
<span><?php _e( 'Posts By:', 'barebonestheme' ); ?></span> <?php the_author_meta('display_name', $author_id); ?>
<?php } elseif (is_day()) { ?>
<span><?php _e( 'Daily Archives:', 'barebonestheme' ); ?></span> <?php the_time('l, F j, Y'); ?>
<?php } elseif (is_month()) { ?>
<span><?php _e( 'Monthly Archives:', 'barebonestheme' ); ?></span> <?php the_time('F Y'); ?>
<?php } elseif (is_year()) { ?>
<span><?php _e( 'Yearly Archives:', 'barebonestheme' ); ?></span> <?php the_time('Y'); ?>
<?php } ?>
</h1>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php 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! -->