http.php">http.php 92ae4370cd config il y a 4 ans https-detection.php 92ae4370cd config il y a 4 ans https-migration.php d01d7cf85d first commit il y a 4 ans kses.php 92ae4370cd config il y a 4 ans l10n.php 92ae4370cd config il y a 4 ans link-template.php 92ae4370cd config il y a 4 ans load.php 92ae4370cd config il y a 4 ans locale.php d01d7cf85d first commit il y a 4 ans media-template.php 92ae4370cd config il y a 4 ans media.php 92ae4370cd config il y a 4 ans meta.php 92ae4370cd config il y a 4 ans ms-blogs.php d01d7cf85d first commit il y a 4 ans ms-default-constants.php 92ae4370cd config il y a 4 ans ms-default-filters.php 92ae4370cd config il y a 4 ans ms-deprecated.php 92ae4370cd config il y a 4 ans ms-files.php 92ae4370cd config il y a 4 ans ms-functions.php 92ae4370cd config il y a 4 ans ms-load.php 92ae4370cd config il y a 4 ans ms-network.php 92ae4370cd config il y a 4 ans ms-settings.php d01d7cf85d first commit il y a 4 ans ms-site.php 92ae4370cd config il y a 4 ans nav-menu-template.php 92ae4370cd config il y a 4 ans nav-menu.php 92ae4370cd config il y a 4 ans option.php 92ae4370cd config il y a 4 ans pluggable-deprecated.php d01d7cf85d first commit il y a 4 ans pluggable.php 92ae4370cd config il y a 4 ans plugin.php 92ae4370cd config il y a 4 ans post-formats.php d01d7cf85d first commit il y a 4 ans post-template.php 92ae4370cd config il y a 4 ans post-thumbnail-template.php 92ae4370cd config il y a 4 ans post.php 92ae4370cd config il y a 4 ans query.php d01d7cf85d first commit il y a 4 ans registration-functions.php d01d7cf85d first commit il y a 4 ans registration.php d01d7cf85d first commit il y a 4 ans rest-api.php 92ae4370cd config il y a 4 ans revision.php 92ae4370cd config il y a 4 ans rewrite.php 92ae4370cd config il y a 4 ans robots-template.php 92ae4370cd config il y a 4 ans rss-functions.php d01d7cf85d first commit il y a 4 ans rss.php 92ae4370cd config il y a 4 ans script-loader.php 92ae4370cd config il y a 4 ans session.php d01d7cf85d first commit il y a 4 ans shortcodes.php d01d7cf85d first commit il y a 4 ans sitemaps.php d01d7cf85d first commit il y a 4 ans spl-autoload-compat.php d01d7cf85d first commit il y a 4 ans taxonomy.php 92ae4370cd config il y a 4 ans template-canvas.php 92ae4370cd config il y a 4 ans template-loader.php d01d7cf85d first commit il y a 4 ans template.php d01d7cf85d first commit il y a 4 ans theme-i18n.json 92ae4370cd config il y a 4 ans theme-templates.php 92ae4370cd config il y a 4 ans theme.json 92ae4370cd config il y a 4 ans theme.php 92ae4370cd config il y a 4 ans update.php 92ae4370cd config il y a 4 ans user.php 92ae4370cd config il y a 4 ans vars.php 92ae4370cd config il y a 4 ans version.php 92ae4370cd config il y a 4 ans widgets.php 92ae4370cd config il y a 4 ans wlwmanifest.xml d01d7cf85d first commit il y a 4 ans wp-db.php 92ae4370cd config il y a 4 ans wp-diff.php d01d7cf85d first commit il y a 4 ans tum/whitesports - Gogs: Simplico Git Service

No Description

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(); ?> -->