Ei kuvausta

content-single.php 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * Template part for displaying posts
  4. *
  5. * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
  6. *
  7. * @package WordPress
  8. * @subpackage Twenty_Twenty_One
  9. * @since Twenty Twenty-One 1.0
  10. */
  11. ?>
  12. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  13. <header class="entry-header alignwide">
  14. <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
  15. <?php twenty_twenty_one_post_thumbnail(); ?>
  16. </header><!-- .entry-header -->
  17. <div class="entry-content">
  18. <?php
  19. the_content();
  20. wp_link_pages(
  21. array(
  22. 'before' => '<nav class="page-links" aria-label="' . esc_attr__( 'Page', 'twentytwentyone' ) . '">',
  23. 'after' => '</nav>',
  24. /* translators: %: Page number. */
  25. 'pagelink' => esc_html__( 'Page %', 'twentytwentyone' ),
  26. )
  27. );
  28. ?>
  29. </div><!-- .entry-content -->
  30. <footer class="entry-footer default-max-width">
  31. <?php twenty_twenty_one_entry_meta_footer(); ?>
  32. </footer><!-- .entry-footer -->
  33. <?php if ( ! is_singular( 'attachment' ) ) : ?>
  34. <?php get_template_part( 'template-parts/post/author-bio' ); ?>
  35. <?php endif; ?>
  36. </article><!-- #post-<?php the_ID(); ?> -->