forked from syfxlin/origami
-
Notifications
You must be signed in to change notification settings - Fork 0
/
timeline.php
121 lines (118 loc) · 4.81 KB
/
timeline.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?php
/**
* Template Name: Timeline
*/
$paged = get_query_var('paged') ? get_query_var('paged') : 1;
$args = ['paged' => $paged, 'posts_per_page' => 30];
query_posts($args);
if (have_posts()) {
$post_list = [];
while (have_posts()) {
the_post();
$post_author_id = get_post_field('post_author', $post->ID);
global $post_list;
$post_item = [
'post_id' => $post->ID,
'post_title' => get_the_title($post->ID),
'post_date' => get_the_date(get_option('date_format'), $post->ID),
'post_year' => get_the_date('Y', $post->ID),
'post_month' => get_the_date('m', $post->ID),
'post_comments' => get_comments_number($post->ID),
'post_link' => get_the_permalink($post->ID),
'post_image' => wp_get_attachment_url(get_post_thumbnail_id($post->ID)),
'post_image_alt' => get_post_meta(
get_post_thumbnail_id($post->ID),
'_wp_attachment_image_alt',
true
),
'post_author' => get_the_author_meta('display_name', $post_author_id),
'post_category' => wp_get_post_categories($post->ID),
'post_tag' => wp_get_post_tags($post->ID),
'post_excerpt' => get_the_excerpt($post->ID)
];
if (
$post_item['post_image'] == false &&
origami_get_other_thumbnail($post)
) {
$post_item['post_image'] = origami_get_other_thumbnail($post);
}
$post_list[] = $post_item;
}
}
$pagination = origami_pagination(false);
$count = wp_count_posts()->publish;
$sidebar_pos = get_option('origami_layout_sidebar', 'right');
$post_list_class = $sidebar_pos == 'none' ? 'col-10 col-md-12' : 'col-8 col-md-12';
$sidebar_class = $sidebar_pos == 'none' ? 'd-none' : 'col-4 col-md-12';
if (get_option('origami_timeline_sidebar', 'true') != 'true') {
$sidebar_class = 'd-none';
}
$main_class = $sidebar_pos == 'left' ? 'flex-rev' : '';
wp_reset_query();
get_header();
$this_year = -1;
?>
<div id="main-content">
<section class="featured">
<div class="featured-image" style="background-image:url(<?php echo wp_get_attachment_url(get_post_thumbnail_id($post->ID)); ?>)"></div>
<div class="featured-container">
<h1><?php echo get_the_title(); ?></h1>
<h2><?php echo __("目前共有", "origami") . $count . __("篇文章"); ?></h2>
</div>
</section>
<main class="ori-container columns <?php echo $main_class; ?> grid-md">
<section class="timeline-list column <?php echo $post_list_class; ?>">
<article <?php post_class("p-post-content"); ?> id="post-<?php the_ID(); ?>">
<?php the_content(); ?>
</article>
<div class="timeline">
<?php foreach ($post_list as $item): ?>
<?php if ($item['post_year'] != $this_year): $this_year = $item['post_year']; ?>
<div class="timeline-item">
<div class="timeline-left">
<div class="timeline-icon icon-lg"></div>
</div>
<div class="timeline-content">
<div class="timeline-year">
<?php echo $this_year; ?>
</div>
</div>
</div>
<?php endif; ?>
<div class="timeline-item">
<div class="timeline-left">
<div class="timeline-icon"></div>
</div>
<div class="timeline-content">
<div class="timeline-title"><a href="<?php echo $item['post_link']; ?>"><?php echo $item['post_title']; ?></a></div>
<div class="text-gray timeline-subtitle">
<i class="fa fa-calendar"></i>
<time><?php echo $item['post_date']; ?></time>
<i class="fa fa-paper-plane-o"></i>
<span><?php echo $item['post_author']; ?></span>
<i class="fa fa-comment"></i>
<span><?php echo $item['post_comments'] . __('条评论', 'origami'); ?></span>
<i class="fa fa-bookmark"></i>
<ul>
<?php foreach ($item['post_category'] as $cat): ?>
<li><a href="<?php echo get_category_link($cat); ?>"><?php echo get_cat_name($cat); ?></a></li>
<?php endforeach; ?>
</ul>
</div>
</div>
</div>
<?php endforeach; ?>
</div>
<section class="post-pagination">
<?php echo $pagination; ?>
</section>
<div class="p-post-comments">
<?php comments_template(); ?>
</div>
</section>
<aside class="column ori-sidebar <?php echo $sidebar_class; ?>">
<?php get_sidebar(); ?>
</aside>
</main>
</div>
<?php get_footer(); ?>