noisy/template-parts/content.php

42 lines
908 B
PHP

<?php
/**
* Template part for displaying posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package noisy
*/
?>
<article id="post-<?php the_ID(); ?>" class="preview">
<header class="episode-header">
<h1><?php the_title(); ?></h1>
<span class="meta"><?php noisy_posted_on(); ?></span>
</header>
<div class="entry-content">
<?php
the_content( sprintf(
wp_kses(
/* translators: %s: Name of current post. Only visible to screen readers */
__( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'noisy' ),
array(
'span' => array(
'class' => array(),
),
)
),
get_the_title()
) );
wp_link_pages( array(
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'noisy' ),
'after' => '</div>',
) );
?>
</div><!-- .entry-content -->
</article><!-- #post-<?php the_ID(); ?> -->