-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.php
78 lines (69 loc) · 2.21 KB
/
content.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
<?php
/**
* The template for displaying page content.
*
* @package YIKES Starter
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<h1 class="entry-title">
<a href="<?php the_permalink(); ?>" rel="bookmark">
<?php the_title(); ?>
</a>
</h1>
<?php if ( 'post' === get_post_type() ) { ?>
<div class="entry-meta">
<?php yikes_starter_posted_on(); ?>
</div><!-- .entry-meta -->
<?php } ?>
</header><!-- .entry-header -->
<?php if ( is_search() ) { ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php } else { ?>
<div class="entry-content">
<?php
the_content( esc_attr__( 'Continue reading <span class="meta-nav">→</span>', 'lwtv-underscores' ) );
wp_link_pages(
array(
'before' => '<div class="page-links">' . esc_attr__( 'Pages:', 'lwtv-underscores' ),
'after' => '</div>',
)
);
?>
</div><!-- .entry-content -->
<?php } ?>
<footer class="entry-meta">
<?php
if ( 'post' === get_post_type() ) {
/* translators: used between list items, there is a space after the comma */
$categories_list = get_the_category_list( esc_attr__( ', ', 'lwtv-underscores' ) );
if ( $categories_list && yikes_starter_categorized_blog() ) {
?>
<span class="cat-links">
<?php echo 'Posted in ' . wp_kses_post( $categories_list ); ?>
</span>
<?php
}
$tags_list = get_the_tag_list( '', esc_attr__( ', ', 'lwtv-underscores' ) );
if ( $tags_list ) {
?>
<span class="tags-links">
<?php echo 'Tagged ' . wp_kses_post( $tags_list ); ?>
</span>
<?php
}
}
if ( ! post_password_required() && ( comments_open() || '0' !== get_comments_number() ) ) {
?>
<span class="comments-link">
<?php comments_popup_link( esc_attr__( 'Leave a comment', 'lwtv-underscores' ), esc_attr__( '1 Comment', 'lwtv-underscores' ), esc_attr__( '% Comments', 'lwtv-underscores' ) ); ?>
</span>
<?php
}
edit_post_link( esc_attr__( 'Edit', 'lwtv-underscores' ), '<div class="edit-link">' . lwtv_plugin()->get_symbolicon( svg: 'pencil.svg', fontawesome: 'fa-pencil-alt' ), '</div>' );
?>
</footer><!-- .entry-meta -->
</article><!-- #post-## -->