Files
C1024_2026/template-parts/content.php
T

12 lines
999 B
PHP

<article id="post-<?php the_ID(); ?>" <?php post_class( 'post-card' ); ?>>
<header class="entry-header">
<div class="entry-meta"><time datetime="<?php echo esc_attr( get_the_date( DATE_W3C ) ); ?>"><?php echo esc_html( get_the_date() ); ?></time><?php if ( get_the_author() ) { ?> · <?php the_author_posts_link(); ?><?php } ?></div>
<?php the_title( sprintf( '<h2 class="entry-title"><a href="%s">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
<?php // Avoid an empty category container when no categories are assigned.
if ( has_category() ) { ?><div class="taxonomy post-categories"><?php the_category( ' ' ); ?></div><?php } ?>
</header>
<?php // This repeats the title link, so exclude it from keyboard and assistive-tech navigation.
if ( has_post_thumbnail() ) { ?><a class="entry-thumbnail" href="<?php the_permalink(); ?>" aria-hidden="true" tabindex="-1"><?php the_post_thumbnail( 'large' ); ?></a><?php } ?>
<div class="entry-summary"><?php the_excerpt(); ?></div>
</article>