mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-07-01 16:51:18 +03:00
47 lines
1.4 KiB
PHP
47 lines
1.4 KiB
PHP
![]() |
<?php
|
||
|
/**
|
||
|
* The template for displaying all single posts.
|
||
|
*
|
||
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
|
||
|
*
|
||
|
* @package WordPressdotorg\Theme
|
||
|
*/
|
||
|
|
||
|
namespace WordPressdotorg\Theme;
|
||
|
|
||
|
get_header();
|
||
|
?>
|
||
|
|
||
|
<main id="main" class="site-main col-8" role="main">
|
||
|
|
||
|
<?php
|
||
|
while ( have_posts() ) :
|
||
|
the_post();
|
||
|
|
||
|
get_template_part( 'template-parts/content', 'single' );
|
||
|
|
||
|
// If comments are open or we have at least one comment, load up the comment template.
|
||
|
if ( comments_open() || get_comments_number() ) :
|
||
|
comments_template();
|
||
|
endif;
|
||
|
|
||
|
// Previous/next post navigation.
|
||
|
the_post_navigation( [
|
||
|
// phpcs:disable WordPress.WhiteSpace.PrecisionAlignment.Found
|
||
|
'next_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Next', 'wporg' ) . '</span> ' .
|
||
|
'<span class="screen-reader-text">' . __( 'Next post:', 'wporg' ) . '</span> ' .
|
||
|
'<span class="post-title">%title</span>',
|
||
|
'prev_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Previous', 'wporg' ) . '</span> ' .
|
||
|
'<span class="screen-reader-text">' . __( 'Previous post:', 'wporg' ) . '</span> ' .
|
||
|
'<span class="post-title">%title</span>',
|
||
|
// phpcs:enable WordPress.WhiteSpace.PrecisionAlignment.Found
|
||
|
] );
|
||
|
endwhile; // End of the loop.
|
||
|
?>
|
||
|
|
||
|
</main><!-- #main -->
|
||
|
|
||
|
<?php
|
||
|
get_sidebar();
|
||
|
get_footer();
|