2017-05-30 23:21:43 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The template part for displaying content
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Sixteen
|
|
|
|
* @since Twenty Sixteen 1.0
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
|
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
|
|
<header class="entry-header">
|
|
|
|
<?php if ( is_sticky() && is_home() && ! is_paged() ) : ?>
|
|
|
|
<span class="sticky-post"><?php _e( 'Featured', 'twentysixteen' ); ?></span>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
|
|
|
|
</header><!-- .entry-header -->
|
|
|
|
|
|
|
|
<?php twentysixteen_excerpt(); ?>
|
|
|
|
|
|
|
|
<?php twentysixteen_post_thumbnail(); ?>
|
|
|
|
|
|
|
|
<div class="entry-content">
|
|
|
|
<?php
|
2017-12-01 00:11:00 +01:00
|
|
|
the_content(
|
|
|
|
sprintf(
|
2022-04-29 07:03:11 +02:00
|
|
|
/* translators: %s: Post title. Only visible to screen readers. */
|
2017-12-01 00:11:00 +01:00
|
|
|
__( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ),
|
|
|
|
get_the_title()
|
|
|
|
)
|
|
|
|
);
|
2017-05-30 23:21:43 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
wp_link_pages(
|
|
|
|
array(
|
|
|
|
'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentysixteen' ) . '</span>',
|
|
|
|
'after' => '</div>',
|
|
|
|
'link_before' => '<span>',
|
|
|
|
'link_after' => '</span>',
|
I18N: Mark screen reader strings as such with translator comments.
This aims to provide better context for translators and make it easier to determine that some strings contain hidden accessibility text and are not displayed in the UI.
Props kebbet, mercime, pavelevap, ocean90, swissspidy, Chouby, jipmoors, afercia, desrosj, costdev, audrasjb, SergeyBiryukov.
Fixes #29748.
Built from https://develop.svn.wordpress.org/trunk@55276
git-svn-id: http://core.svn.wordpress.org/trunk@54809 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-02-07 18:10:21 +01:00
|
|
|
/* translators: Hidden accessibility text. */
|
2017-12-01 00:11:00 +01:00
|
|
|
'pagelink' => '<span class="screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>%',
|
|
|
|
'separator' => '<span class="screen-reader-text">, </span>',
|
|
|
|
)
|
|
|
|
);
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2017-05-30 23:21:43 +02:00
|
|
|
</div><!-- .entry-content -->
|
|
|
|
|
|
|
|
<footer class="entry-footer">
|
|
|
|
<?php twentysixteen_entry_meta(); ?>
|
|
|
|
<?php
|
|
|
|
edit_post_link(
|
|
|
|
sprintf(
|
2022-04-29 07:03:11 +02:00
|
|
|
/* translators: %s: Post title. Only visible to screen readers. */
|
2017-05-30 23:21:43 +02:00
|
|
|
__( 'Edit<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ),
|
|
|
|
get_the_title()
|
|
|
|
),
|
|
|
|
'<span class="edit-link">',
|
|
|
|
'</span>'
|
|
|
|
);
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2017-05-30 23:21:43 +02:00
|
|
|
</footer><!-- .entry-footer -->
|
2019-04-16 03:30:53 +02:00
|
|
|
</article><!-- #post-<?php the_ID(); ?> -->
|