forked from syfxlin/origami
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-type-2.php
118 lines (117 loc) · 4.41 KB
/
page-type-2.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
<?php
/**
* Template Name: Page Type 2
*/
$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';
}
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);
}
?>
<?php get_header(); ?>
<div id="main-content">
<main class="ori-container columns <?php echo $main_class; ?> grid-md single-post">
<?php if ($post_item['post_image']) : ?>
<div class="featured">
<div class="featured-image" style="background-image:url(<?php echo $post_item['post_image']; ?>)"></div>
<div class="featured-container">
<div class="p-info post-info">
<h2 class="card-title"><?php echo $post_item['post_title']; ?></h2>
<div class="card-subtitle" style="color:white">
<i class="fa fa-calendar"></i>
<time><?php echo $post_item['post_date']; ?></time>
<i class="fa fa-paper-plane-o"></i>
<span><?php echo $post_item['post_author']; ?></span>
<i class="fa fa-comment"></i>
<span>
<?php echo $post_item['post_comments'] . __('条评论', 'origami'); ?>
</span>
<i class="fa fa-bookmark"></i>
<ul>
<?php foreach ($post_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>
</div>
<?php endif; ?>
<section class="p-container column <?php echo $post_list_class; ?>">
<?php origami_breadcrumbs(); ?>
<?php if (!$post_item['post_image']) : ?>
<div class="p-info post-info">
<h2 class="card-title"><?php echo $post_item['post_title']; ?></h2>
<div class="card-subtitle text-gray">
<i class="fa fa-calendar"></i>
<time><?php echo $post_item['post_date']; ?></time>
<i class="fa fa-paper-plane-o"></i>
<span><?php echo $post_item['post_author']; ?></span>
<i class="fa fa-comment"></i>
<span>
<?php echo $post_item['post_comments'] . __('条评论', 'origami'); ?>
</span>
<i class="fa fa-bookmark"></i>
<ul>
<?php foreach ($post_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>
<?php endif; ?>
<article <?php post_class('p-content'); ?> id="post-<?php the_ID(); ?>">
<?php the_content(); ?>
</article>
<div class="p-tags">
<?php get_template_part('template-part/post-tags'); ?>
</div>
<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(); ?>