1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- /**
- * Template part for displaying posts with the image format.
- *
- * @link https://codex.wordpress.org/Template_Hierarchy
- *
- * @package Scratchpad
- */
- /* translators: %s: Name of current post */
- $content_text = sprintf(
- 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 )
- );
- $content = apply_filters( 'the_content', get_the_content( $content_text ) );
- $image = get_media_embedded_in_content( $content, array( 'image' ) );
- ?>
- <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <?php scratchpad_sticky(); ?>
- <?php if ( has_post_thumbnail() && ! post_password_required() ) { ?>
- <div class="featured-image">
- <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( 'scratchpad-featured' ); ?></a>
- <div class="photo-corners">
- <?php
- get_template_part( 'images/inline', 'photo-corners.svg' );
- get_template_part( 'images/inline', 'photo-corners.svg' );
- get_template_part( 'images/inline', 'photo-corners.svg' );
- get_template_part( 'images/inline', 'photo-corners.svg' );
- ?>
- </div><!-- .photo-corners -->
- </div><!-- .featured-image -->
- <?php } else if ( ! empty( $image ) && ! post_password_required() ) { ?>
- <div class="featured-image">
- <a href="<?php the_permalink(); ?>"><?php echo $image[0]; ?></a>
- <div class="photo-corners">
- <?php
- get_template_part( 'images/inline', 'photo-corners.svg' );
- get_template_part( 'images/inline', 'photo-corners.svg' );
- get_template_part( 'images/inline', 'photo-corners.svg' );
- get_template_part( 'images/inline', 'photo-corners.svg' );
- ?>
- </div><!-- .photo-corners -->
- </div><!-- .featured-image -->
- <?php } ?>
- <header class="entry-header">
- <?php
- the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
- ?>
- <div class="entry-meta">
- <?php scratchpad_post_format(); ?>
- <?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 -->
- </header><!-- .entry-header -->
- <?php if ( post_password_required() ) {
- the_content();
- } ?>
- </article><!-- #post-## -->
|