-
Notifications
You must be signed in to change notification settings - Fork 1
/
content.php
42 lines (39 loc) · 1.01 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
<?php
/**
* The template part for displaying content.
*
* @package Billie
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class( 'billie-border' ); ?>>
<header class="entry-header">
<?php
the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' );
if ( 'post' === get_post_type() ) {
?>
<div class="entry-meta">
<?php billie_posted_on(); ?>
</div><!-- .entry-meta -->
<?php
}
?>
</header><!-- .entry-header -->
<div class="entry-content">
<?php
if ( has_post_thumbnail() ) {
?>
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
<?php
}
/* Translators: %s: Name of current post */
the_content( sprintf( __( 'Continue reading %s', 'billie' ), get_the_title() ) );
wp_link_pages(
array(
'before' => '<div class="page-links">' . __( 'Pages:', 'billie' ),
'after' => '</div>',
)
);
?>
</div><!-- .entry-content -->
<?php billie_entry_footer(); ?>
</article><!-- #post-## -->