12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- * Template part for displaying Recent Posts in the front page template
- *
- * @package Karuna
- */
- ?>
- <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <header class="entry-header">
- <?php
- the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
- if ( 'post' === get_post_type() ) : ?>
- <?php get_template_part( 'components/post/content', 'meta' ); ?>
- <?php
- endif; ?>
- </header>
- <div class="entry-summary">
- <?php the_excerpt(); ?>
- </div>
- <footer class="entry-footer">
- <?php
- edit_post_link(
- sprintf(
- /* translators: %s: Name of current post */
- esc_html__( 'Edit %s', 'karuna' ),
- the_title( '<span class="screen-reader-text">"', '"</span>', false )
- ),
- '<span class="edit-link">',
- '</span>'
- );
- ?>
- </footer>
- </article><!-- #post-## -->
|