2011-04-29 18:33:04 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2013-09-25 12:50:11 -04:00
|
|
|
* Template for displaying posts in the Image Post Format
|
2011-05-02 17:04:44 -04:00
|
|
|
*
|
2013-09-25 12:50:11 -04:00
|
|
|
* Used on index and archive pages.
|
|
|
|
*
|
2024-03-11 10:00:12 -04:00
|
|
|
* @link https://developer.wordpress.org/advanced-administration/wordpress/post-formats/
|
2011-05-03 20:45:50 -04:00
|
|
|
*
|
2011-04-29 18:33:04 -04:00
|
|
|
* @package WordPress
|
2011-05-18 15:06:09 -04:00
|
|
|
* @subpackage Twenty_Eleven
|
2011-05-02 17:04:44 -04:00
|
|
|
* @since Twenty Eleven 1.0
|
2011-04-29 18:33:04 -04:00
|
|
|
*/
|
|
|
|
?>
|
2011-06-03 17:11:41 -04:00
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class( 'indexed' ); ?>>
|
2011-04-29 18:33:04 -04:00
|
|
|
<header class="entry-header">
|
2011-05-02 17:11:32 -04:00
|
|
|
<hgroup>
|
2013-04-29 12:57:30 -04:00
|
|
|
<h2 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
|
2011-06-23 19:03:46 -04:00
|
|
|
<h3 class="entry-format"><?php _e( 'Image', 'twentyeleven' ); ?></h3>
|
2011-05-02 17:11:32 -04:00
|
|
|
</hgroup>
|
2011-04-29 18:33:04 -04:00
|
|
|
|
2011-07-11 13:58:43 -04:00
|
|
|
<?php if ( comments_open() && ! post_password_required() ) : ?>
|
2011-04-29 18:33:04 -04:00
|
|
|
<div class="comments-link">
|
2015-01-21 19:42:23 -05:00
|
|
|
<?php comments_popup_link( '<span class="leave-reply">' . __( 'Reply', 'twentyeleven' ) . '</span>', _x( '1', 'comments number', 'twentyeleven' ), _x( '%', 'comments number', 'twentyeleven' ) ); ?>
|
2011-04-29 18:33:04 -04:00
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
</header><!-- .entry-header -->
|
|
|
|
|
|
|
|
<div class="entry-content">
|
|
|
|
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?>
|
2017-11-30 18:11:00 -05:00
|
|
|
<?php
|
|
|
|
wp_link_pages(
|
|
|
|
array(
|
|
|
|
'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>',
|
|
|
|
'after' => '</div>',
|
|
|
|
)
|
|
|
|
);
|
2018-08-16 21:51:36 -04:00
|
|
|
?>
|
2011-04-29 18:33:04 -04:00
|
|
|
</div><!-- .entry-content -->
|
|
|
|
|
|
|
|
<footer class="entry-meta">
|
|
|
|
<div class="entry-meta">
|
|
|
|
<?php
|
2017-11-30 18:11:00 -05:00
|
|
|
printf(
|
2019-09-02 20:41:05 -04:00
|
|
|
/* translators: 1: The permalink, 2: Date and time, 3: Date and time, 4: Author link, 5: Author link title, 6: Author display name. */
|
2017-11-30 18:11:00 -05:00
|
|
|
__( '<a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s">%3$s</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s" rel="author">%6$s</a></span></span>', 'twentyeleven' ),
|
2011-06-10 17:57:18 -04:00
|
|
|
esc_url( get_permalink() ),
|
2011-04-29 18:33:04 -04:00
|
|
|
get_the_date( 'c' ),
|
|
|
|
get_the_date(),
|
2011-06-10 17:57:18 -04:00
|
|
|
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
|
2019-09-02 20:41:05 -04:00
|
|
|
/* translators: %s: Author display name. */
|
2011-12-10 14:18:51 -05:00
|
|
|
esc_attr( sprintf( __( 'View all posts by %s', 'twentyeleven' ), get_the_author() ) ),
|
2011-04-29 18:33:04 -04:00
|
|
|
get_the_author()
|
|
|
|
);
|
2018-08-16 21:51:36 -04:00
|
|
|
?>
|
2011-04-29 18:33:04 -04:00
|
|
|
</div><!-- .entry-meta -->
|
|
|
|
<div class="entry-meta">
|
2011-05-25 11:19:33 -04:00
|
|
|
<?php
|
2022-03-13 16:03:01 -04:00
|
|
|
$categories_list = get_the_category_list( wp_get_list_item_separator() );
|
2020-06-02 13:05:13 -04:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
if ( $categories_list ) :
|
2018-08-16 21:51:36 -04:00
|
|
|
?>
|
2011-05-25 11:19:33 -04:00
|
|
|
<span class="cat-links">
|
2019-07-05 04:04:57 -04:00
|
|
|
<?php
|
2019-09-02 20:41:05 -04:00
|
|
|
/* translators: 1: CSS classes, 2: Category list. */
|
2019-07-05 04:04:57 -04:00
|
|
|
printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list );
|
|
|
|
?>
|
2011-05-25 11:19:33 -04:00
|
|
|
</span>
|
2020-01-28 19:45:18 -05:00
|
|
|
<?php endif; // End if categories. ?>
|
2020-06-02 13:05:13 -04:00
|
|
|
|
2011-05-25 11:19:33 -04:00
|
|
|
<?php
|
2022-03-13 16:03:01 -04:00
|
|
|
$tags_list = get_the_tag_list( '', wp_get_list_item_separator() );
|
2020-06-02 13:05:13 -04:00
|
|
|
|
|
|
|
if ( $tags_list && ! is_wp_error( $tags_list ) ) :
|
2017-11-30 18:11:00 -05:00
|
|
|
?>
|
2011-05-25 11:19:33 -04:00
|
|
|
<span class="tag-links">
|
2019-07-05 04:04:57 -04:00
|
|
|
<?php
|
2019-09-02 20:41:05 -04:00
|
|
|
/* translators: 1: CSS classes, 2: Tag list. */
|
2019-07-05 04:04:57 -04:00
|
|
|
printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list );
|
|
|
|
?>
|
2011-05-25 11:19:33 -04:00
|
|
|
</span>
|
2020-01-28 19:45:18 -05:00
|
|
|
<?php endif; // End if $tags_list. ?>
|
2011-05-25 11:19:33 -04:00
|
|
|
|
2011-05-03 20:45:50 -04:00
|
|
|
<?php if ( comments_open() ) : ?>
|
2011-11-21 10:40:13 -05:00
|
|
|
<span class="comments-link"><?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentyeleven' ) . '</span>', __( '<b>1</b> Reply', 'twentyeleven' ), __( '<b>%</b> Replies', 'twentyeleven' ) ); ?></span>
|
2020-01-28 19:45:18 -05:00
|
|
|
<?php endif; // End if comments_open(). ?>
|
2011-04-29 18:33:04 -04:00
|
|
|
</div><!-- .entry-meta -->
|
|
|
|
|
|
|
|
<?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
|
2012-07-30 15:45:58 -04:00
|
|
|
</footer><!-- .entry-meta -->
|
2011-04-29 18:33:04 -04:00
|
|
|
</article><!-- #post-<?php the_ID(); ?> -->
|