123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- /**
- * Template part for displaying posts.
- *
- * @link https://codex.wordpress.org/Template_Hierarchy
- *
- * @package Scratchpad
- */
- ?>
- <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <?php scratchpad_sticky(); ?>
- <?php if ( has_post_thumbnail() ) { ?>
- <div class="featured-image">
- <a href="<?php the_permalink(); ?>">
- <?php get_template_part( 'images/inline', 'paperclip.svg' ); ?>
- <?php the_post_thumbnail( 'scratchpad-featured' ); ?>
- </a>
- </div><!-- .featured-image -->
- <?php } ?>
- <header class="entry-header">
- <?php scratchpad_categories(); ?>
- <?php
- if ( is_single() ) {
- the_title( '<h1 class="entry-title">', '</h1>' );
- } else {
- the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
- }
- if ( 'post' === get_post_type() ) : ?>
- <div class="entry-meta">
- <?php scratchpad_posted_on(); ?>
- <?php
- edit_post_link(
- sprintf(
- /* translators: %s: Name of current post */
- esc_html__( 'Edit %s', 'scratchpad' ),
- the_title( '<span class="screen-reader-text">"', '"</span>', false )
- ),
- '<span class="edit-link"><span class="sep">•</span>',
- '</span>'
- );
- ?>
- </div><!-- .entry-meta -->
- <?php
- endif; ?>
- </header><!-- .entry-header -->
- <div class="entry-content">
- <?php
- the_content( sprintf(
- /* translators: %s: Name of current post. */
- wp_kses( __( 'Continue reading %s <span class="meta-nav">→</span>', 'scratchpad' ), array( 'span' => array( 'class' => array() ) ) ),
- the_title( '<span class="screen-reader-text">"', '"</span>', false )
- ) );
- wp_link_pages( array(
- 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'scratchpad' ),
- 'after' => '</div>',
- 'link_before' => '<span>',
- 'link_after' => '</span>',
- ) );
- ?>
- </div><!-- .entry-content -->
- </article><!-- #post-## -->
|