forked from them-es/starter-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
content.php
executable file
·88 lines (79 loc) · 3.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
79
80
81
82
83
84
85
86
87
88
<?php
/**
* The default template for displaying content
*
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php if ( is_sticky() ) : ?>
<hgroup>
<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'my-theme' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<h3 class="entry-format"><?php _e( 'Featured', 'my-theme' ); ?></h3>
</hgroup>
<?php else : ?>
<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'my-theme' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php endif; ?>
<?php if ( 'post' == get_post_type() ) : ?>
<div class="entry-meta">
<?php themes_starter_article_posted_on(); ?>
</div><!-- /.entry-meta -->
<?php endif; ?>
</header><!-- /.entry-header -->
<?php if ( is_search() ) : // Only display Excerpts for Search ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
</div><!-- /.entry-summary -->
<?php else : ?>
<div class="entry-content">
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'my-theme' ) ); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'my-theme' ) . '</span>', 'after' => '</div>' ) ); ?>
</div><!-- /.entry-content -->
<?php endif; ?>
<footer class="entry-meta">
<?php
$show_sep = false;
if ( 'post' === get_post_type() ) : // Hide category and tag text for pages on Search
/* translators: used between list items, there is a space after the comma */
$categories_list = get_the_category_list( __( ', ', 'my-theme' ) );
if ( $categories_list ) :
?>
<span class="cat-links">
<?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'my-theme' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list );
$show_sep = true; ?>
</span>
<?php
endif; // End if $categories_list
/* translators: used between list items, there is a space after the comma */
$tags_list = get_the_tag_list( '', __( ', ', 'my-theme' ) );
if ( $tags_list ) :
if ( $show_sep ) :
?>
<span class="sep"> | </span>
<?php
endif; // End if $show_sep
?>
<span class="tag-links">
<?php
printf( __( '<span class="%1$s">Tagged</span> %2$s', 'my-theme' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list );
$show_sep = true;
?>
</span>
<?php
endif; // End if $tags_list
endif; // End if 'post' == get_post_type()
?>
<?php if ( comments_open() ) : ?>
<?php if ( $show_sep ) : ?>
<span class="sep"> | </span>
<?php endif; // End if $show_sep ?>
<span class="comments-link">
<?php
printf( __( 'Leave a comment', 'my-theme' ), get_the_title() );
?>
</span>
<?php endif; // End if comments_open() ?>
<a href="<?php echo get_the_permalink(); ?>" class="btn btn-secondary"><?php _e( 'more', 'my-theme' ); ?></a>
<?php edit_post_link( __( 'Edit', 'my-theme' ), '<span class="edit-link">', '</span>' ); ?>
</footer><!-- /.entry-meta -->
</article><!-- /#post-<?php the_ID(); ?> -->