1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- /**
- * The template used for displaying page content in page.php
- *
- * @package Penscratch 2
- */
- ?>
- <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <header class="entry-header">
- <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
- </header><!-- .entry-header -->
- <?php if ( has_post_thumbnail() ) : ?>
- <div class="entry-thumbnail">
- <?php the_post_thumbnail( 'penscratch-2-featured' ); ?>
- </div>
- <?php endif; ?>
- <div class="entry-content">
- <?php the_content(); ?>
- <?php
- wp_link_pages( array(
- 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'penscratch-2' ),
- 'after' => '</div>',
- ) );
- ?>
- </div><!-- .entry-content -->
- <footer class="entry-footer">
- <?php edit_post_link(
- sprintf(
- /* translators: %s: Name of current post */
- esc_html__( 'Edit %s', 'penscratch-2' ),
- the_title( '<span class="screen-reader-text">"', '"</span>', false )
- ),
- '<span class="edit-link">',
- '</span>'
- ); ?>
- </footer><!-- .entry-footer -->
- </article><!-- #post-## -->
|