Brak opisu

content-single.php 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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_Nineteen
  9. * @since Twenty Nineteen 1.0
  10. */
  11. ?>
  12. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  13. <?php if ( ! twentynineteen_can_show_post_thumbnail() ) : ?>
  14. <header class="entry-header">
  15. <?php get_template_part( 'template-parts/header/entry', 'header' ); ?>
  16. </header>
  17. <?php endif; ?>
  18. <div class="entry-content">
  19. <?php
  20. the_content(
  21. sprintf(
  22. wp_kses(
  23. /* translators: %s: Post title. Only visible to screen readers. */
  24. __( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'twentynineteen' ),
  25. array(
  26. 'span' => array(
  27. 'class' => array(),
  28. ),
  29. )
  30. ),
  31. get_the_title()
  32. )
  33. );
  34. wp_link_pages(
  35. array(
  36. 'before' => '<div class="page-links">' . __( 'Pages:', 'twentynineteen' ),
  37. 'after' => '</div>',
  38. )
  39. );
  40. ?>
  41. </div><!-- .entry-content -->
  42. <footer class="entry-footer">
  43. <?php twentynineteen_entry_footer(); ?>
  44. </footer><!-- .entry-footer -->
  45. <?php if ( ! is_singular( 'attachment' ) ) : ?>
  46. <?php get_template_part( 'template-parts/post/author', 'bio' ); ?>
  47. <?php endif; ?>
  48. </article><!-- #post-<?php the_ID(); ?> -->