-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathinspiration.php
177 lines (171 loc) · 6.09 KB
/
inspiration.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<?php
/**
* Template Name: Inspiration
*/
$sidebar_pos = get_option('origami_layout_sidebar', 'right');
if ($sidebar_pos === 'right' || $sidebar_pos === 'left') {
$post_list_class = 'col-8 col-md-12';
$sidebar_class = 'col-4 col-md-12';
$main_class = $sidebar_pos == 'left' ? 'flex-rev' : '';
} elseif ($sidebar_pos === 'none') {
$post_list_class = 'col-10 col-md-12';
$sidebar_class = 'd-none';
} elseif ($sidebar_pos === 'down') {
$post_list_class = 'col-10 col-md-12';
$sidebar_class = 'col-10 col-md-12';
}
if (get_option('origami_inspiration_sidebar', 'true') != 'true') {
$sidebar_class = 'd-none';
}
$paged = get_query_var('paged') ? get_query_var('paged') : 1;
query_posts([
'post_type' => 'inspiration',
'post_status' => 'publish',
'posts_per_page' => 30,
'paged' => $paged
]);
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_author_avatar' => get_avatar(
get_the_author_email(),
64,
get_option('avatar_default'),
'',
[
'class' => 'inspiration-avatar'
]
),
'post_category' => wp_get_post_categories($post->ID),
'post_tag' => wp_get_post_tags($post->ID),
'post_excerpt' => get_the_excerpt($post->ID),
'post_content' => get_the_content()
];
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('inspiration')->publish;
wp_reset_query();
the_post();
$post_author_id = get_post_field('post_author', $post->ID);
$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_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);
}
get_header();
?>
<div id="main-content">
<?php if (get_option('origami_featured_pages_post_type', 'false') != 'true') : ?>
<section class="featured">
<div class="featured-image" style="background-image:url(<?php echo $post_item['post_image']; ?>)"></div>
<div class="featured-container">
<h1>
<?php echo $post_item['post_title']; ?>
</h1>
<h2>
<?php echo __('目前共有', 'origami') .
$count .
__('篇灵感', 'origami'); ?>
</h2>
</div>
</section>
<?php endif; ?>
<main class="ori-container columns <?php echo $main_class; ?> grid-md">
<section class="inspiration-list column <?php echo $post_list_class; ?>">
<?php if (get_option('origami_featured_pages_post_type', 'false') == 'true') : ?>
<?php if ($post_item['post_image']) : ?>
<div class="p-thumb" style="background-image:url(<?php echo $post_item['post_image']; ?>)"></div>
<?php endif; ?>
<?php origami_breadcrumbs(); ?>
<div class="p-info post-info">
<h2 class="card-title"><?php echo $post_item['post_title']; ?></h2>
<div class="card-subtitle text-gray">
<time><?php echo $post_item['post_date']; ?></time> • <span><?php echo $post_item['post_author']; ?></span> •
<span><?php echo $count . __('篇灵感', 'origami'); ?></span>
</div>
</div>
<?php endif; ?>
<article <?php post_class('p-content'); ?> id="post-<?php the_ID(); ?>">
<?php the_content(); ?>
</article>
<ul class="inspiration">
<?php foreach ($post_list as $item) : ?>
<li class="inspiration-card">
<?php echo $item['post_author_avatar']; ?>
<div class="inspiration-right">
<div class="inspiration-title">
<?php echo $item['post_title']; ?>
</div>
<div class="inspiration-content">
<?php echo $item['post_content']; ?>
</div>
<div class="inspiration-footer">
<span class="inspiration-footer-left">
<i class="fa fa-paper-plane-o"></i>
<span>
<?php echo $item['post_author']; ?>
</span>
</span>
<span class="inspiration-footer-right">
<i class="fa fa-calendar"></i>
<time>
<?php echo $item['post_date']; ?>
</time>
</span>
</div>
</div>
</li>
<?php endforeach; ?>
</ul>
<?php echo $pagination; ?>
<div class="p-comments">
<?php comments_template(); ?>
</div>
</section>
<aside class="column ori-sidebar <?php echo $sidebar_class; ?>">
<?php get_sidebar(); ?>
</aside>
</main>
</div>
<?php get_footer(); ?>