-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtemplate-tags.php
More file actions
133 lines (111 loc) · 2.88 KB
/
template-tags.php
File metadata and controls
133 lines (111 loc) · 2.88 KB
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
<?php
/**
* Custom template tags for this theme
*
* Eventually, some of the functionality here could be replaced by core features.
*
* @package Orchid_Store
*/
if ( ! function_exists( 'orchid_store_posted_on' ) ) {
/**
* Prints HTML with meta information for the current post-date/time.
*
* @since 1.0.0
*/
function orchid_store_posted_on() {
$time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
$time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time><time class="updated" datetime="%3$s">%4$s</time>';
}
$time_string = sprintf(
$time_string,
esc_attr( get_the_date( DATE_W3C ) ),
esc_html( get_the_date() ),
esc_attr( get_the_modified_date( DATE_W3C ) ),
esc_html( get_the_modified_date() )
);
echo '<a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . $time_string . '</a>'; // phpcs:ignore.
}
}
if ( ! function_exists( 'orchid_store_posted_by' ) ) {
/**
* Prints HTML with meta information for the current author.
*
* @since 1.0.0
*/
function orchid_store_posted_by() {
echo '<a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '">' . esc_html( get_the_author() ) . '</a>';
}
}
if ( ! function_exists( 'orchid_store_post_categories_list' ) ) {
/**
* Function to display the category list.
*
* @since 1.0.0
*/
function orchid_store_post_categories_list() {
$categories_list = get_the_category_list();
if ( $categories_list ) {
echo wp_kses_post( $categories_list ); // phpcs:ignore.
}
}
}
if ( ! function_exists( 'orchid_store_post_tags_list' ) ) {
/**
* Function to display the post tag list.
*
* @since 1.0.0
*/
function orchid_store_post_tags_list() {
if ( 'post' !== get_post_type() ) {
return;
}
$tags_list = get_the_tag_list();
if ( $tags_list ) {
?>
<div class="entry-tags">
<div class="post-tags">
<?php echo wp_kses_post( $tags_list ); // phpcs:ignore. ?>
</div>
</div>
<?php
}
}
}
if ( ! function_exists( 'orchid_store_post_thumbnail' ) ) {
/**
* Displays an optional post thumbnail.
*
* Wraps the post thumbnail in an anchor element on index views, or a div
* element when on single views.
*/
function orchid_store_post_thumbnail() {
if ( post_password_required() || is_attachment() || ! has_post_thumbnail() ) {
return;
}
if ( is_singular() ) {
?>
<div class="post-thumbnail">
<?php the_post_thumbnail(); ?>
</div><!-- .post-thumbnail -->
<?php
} else {
?>
<a class="post-thumbnail" href="<?php the_permalink(); ?>" aria-hidden="true" tabindex="-1">
<?php
the_post_thumbnail(
'post-thumbnail',
array(
'alt' => the_title_attribute(
array(
'echo' => false,
)
),
)
);
?>
</a>
<?php
}
}
}