54 lines
1.1 KiB
PHP
54 lines
1.1 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Template part for displaying single posts
|
||
|
*
|
||
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
||
|
*
|
||
|
* @package WowPress
|
||
|
*/
|
||
|
|
||
|
?>
|
||
|
|
||
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||
|
|
||
|
<header class="entry-header">
|
||
|
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
|
||
|
|
||
|
<?php if ( ! is_page() ) : ?>
|
||
|
<div class="entry-meta">
|
||
|
<?php wowpress_entry_meta(); ?>
|
||
|
</div><!-- .entry-meta -->
|
||
|
<?php endif; ?>
|
||
|
</header><!-- .entry-header -->
|
||
|
|
||
|
<?php wowpress_post_thumbnail(); ?>
|
||
|
|
||
|
<div <?php wowpress_content_class( 'entry-content' ); ?>>
|
||
|
<?php
|
||
|
the_content(
|
||
|
sprintf(
|
||
|
wp_kses(
|
||
|
/* translators: %s: Name of current post. Only visible to screen readers. */
|
||
|
__( 'Continue reading<span class="sr-only"> "%s"</span>', 'wowpress' ),
|
||
|
array(
|
||
|
'span' => array(
|
||
|
'class' => array(),
|
||
|
),
|
||
|
)
|
||
|
),
|
||
|
get_the_title()
|
||
|
)
|
||
|
);
|
||
|
|
||
|
wp_link_pages(
|
||
|
array(
|
||
|
'before' => '<div>' . __( 'Pages:', 'wowpress' ),
|
||
|
'after' => '</div>',
|
||
|
)
|
||
|
);
|
||
|
?>
|
||
|
</div><!-- .entry-content -->
|
||
|
|
||
|
|
||
|
</article><!-- #post-${ID} -->
|