2010-03-29 18:03:15 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2013-09-25 13:04:10 -04:00
|
|
|
* The loop that displays an attachment
|
2010-10-09 05:17:42 -04:00
|
|
|
*
|
2011-12-16 12:13:16 -05:00
|
|
|
* The loop displays the posts and the post content. See
|
2019-07-25 18:46:55 -04:00
|
|
|
* https://developer.wordpress.org/themes/basics/the-loop/ to understand it and
|
|
|
|
* https://developer.wordpress.org/themes/basics/template-tags/ to understand
|
2010-10-09 05:17:42 -04:00
|
|
|
* the tags used in it.
|
|
|
|
*
|
|
|
|
* This can be overridden in child themes with loop-attachment.php.
|
2010-03-29 18:03:15 -04:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2010-05-16 13:10:21 -04:00
|
|
|
* @subpackage Twenty_Ten
|
2010-10-09 05:17:42 -04:00
|
|
|
* @since Twenty Ten 1.2
|
2010-03-29 18:03:15 -04:00
|
|
|
*/
|
2010-10-09 05:17:42 -04:00
|
|
|
?>
|
2010-02-07 11:16:26 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
<?php
|
|
|
|
if ( have_posts() ) {
|
|
|
|
while ( have_posts() ) :
|
|
|
|
the_post();
|
2018-08-16 21:51:36 -04:00
|
|
|
?>
|
2010-02-07 11:16:26 -05:00
|
|
|
|
2019-07-08 21:10:00 -04:00
|
|
|
<?php
|
|
|
|
if ( ! empty( $post->post_parent ) ) :
|
2019-09-02 20:41:05 -04:00
|
|
|
/* translators: %s: Post title. */
|
2019-07-08 21:10:00 -04:00
|
|
|
$post_tile = sprintf( __( 'Return to %s', 'twentyten' ), strip_tags( get_the_title( $post->post_parent ) ) );
|
|
|
|
?>
|
|
|
|
<p class="page-title"><a href="<?php echo esc_url( get_permalink( $post->post_parent ) ); ?>" title="<?php echo esc_attr( $post_title ); ?>" rel="gallery">
|
2019-09-02 20:41:05 -04:00
|
|
|
<?php
|
|
|
|
/* translators: %s: Title of parent post. */
|
|
|
|
printf( __( '<span class="meta-nav">←</span> %s', 'twentyten' ), get_the_title( $post->post_parent ) );
|
|
|
|
?>
|
2017-11-30 18:11:00 -05:00
|
|
|
</a></p>
|
2010-07-12 15:40:21 -04:00
|
|
|
<?php endif; ?>
|
2010-02-08 13:02:23 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
2010-02-07 11:16:26 -05:00
|
|
|
<h2 class="entry-title"><?php the_title(); ?></h2>
|
2010-02-08 13:02:23 -05:00
|
|
|
|
2010-02-07 11:16:26 -05:00
|
|
|
<div class="entry-meta">
|
2010-02-28 06:43:04 -05:00
|
|
|
<?php
|
2017-11-30 18:11:00 -05:00
|
|
|
printf(
|
2019-09-02 20:41:05 -04:00
|
|
|
/* translators: %s: Author display name. */
|
2017-11-30 18:11:00 -05:00
|
|
|
__( '<span class="%1$s">By</span> %2$s', 'twentyten' ),
|
2010-05-10 01:11:11 -04:00
|
|
|
'meta-prep meta-prep-author',
|
2017-11-30 18:11:00 -05:00
|
|
|
sprintf(
|
|
|
|
'<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>',
|
2010-05-10 01:11:11 -04:00
|
|
|
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', 'twentyten' ), get_the_author() ) ),
|
2010-05-10 01:11:11 -04:00
|
|
|
get_the_author()
|
|
|
|
)
|
2010-02-28 06:43:04 -05:00
|
|
|
);
|
2018-08-16 21:51:36 -04:00
|
|
|
?>
|
2017-11-30 18:11:00 -05:00
|
|
|
<span class="meta-sep">|</span>
|
|
|
|
<?php
|
|
|
|
printf(
|
2019-09-02 20:41:05 -04:00
|
|
|
/* translators: 1: CSS classes, 2: Date. */
|
2017-11-30 18:11:00 -05:00
|
|
|
__( '<span class="%1$s">Published</span> %2$s', 'twentyten' ),
|
2010-05-10 01:11:11 -04:00
|
|
|
'meta-prep meta-prep-entry-date',
|
2017-11-30 18:11:00 -05:00
|
|
|
sprintf(
|
|
|
|
'<span class="entry-date"><abbr class="published" title="%1$s">%2$s</abbr></span>',
|
2010-05-10 01:11:11 -04:00
|
|
|
esc_attr( get_the_time() ),
|
|
|
|
get_the_date()
|
|
|
|
)
|
2010-02-28 06:43:04 -05:00
|
|
|
);
|
2010-05-03 15:16:47 -04:00
|
|
|
if ( wp_attachment_is_image() ) {
|
2010-05-10 01:11:11 -04:00
|
|
|
echo ' <span class="meta-sep">|</span> ';
|
2010-05-16 17:02:34 -04:00
|
|
|
$metadata = wp_get_attachment_metadata();
|
2017-11-30 18:11:00 -05:00
|
|
|
printf(
|
2019-09-02 20:41:05 -04:00
|
|
|
/* translators: %s: Image dimensions. */
|
2017-11-30 18:11:00 -05:00
|
|
|
__( 'Full size is %s pixels', 'twentyten' ),
|
|
|
|
sprintf(
|
|
|
|
'<a href="%1$s" title="%2$s">%3$s × %4$s</a>',
|
2014-05-16 18:44:15 -04:00
|
|
|
esc_url( wp_get_attachment_url() ),
|
2010-11-19 00:37:47 -05:00
|
|
|
esc_attr( __( 'Link to full-size image', 'twentyten' ) ),
|
2010-05-16 17:02:34 -04:00
|
|
|
$metadata['width'],
|
|
|
|
$metadata['height']
|
2010-05-10 01:11:11 -04:00
|
|
|
)
|
2010-05-03 15:16:47 -04:00
|
|
|
);
|
2010-05-21 14:56:27 -04:00
|
|
|
}
|
2017-11-30 18:11:00 -05:00
|
|
|
?>
|
|
|
|
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
|
|
|
|
</div><!-- .entry-meta -->
|
2010-02-08 13:02:23 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
<div class="entry-content">
|
2010-02-08 13:02:23 -05:00
|
|
|
<div class="entry-attachment">
|
2018-08-16 21:51:36 -04:00
|
|
|
<?php
|
|
|
|
if ( wp_attachment_is_image() ) :
|
|
|
|
$attachments = array_values(
|
|
|
|
get_children(
|
|
|
|
array(
|
|
|
|
'post_parent' => $post->post_parent,
|
|
|
|
'post_status' => 'inherit',
|
|
|
|
'post_type' => 'attachment',
|
|
|
|
'post_mime_type' => 'image',
|
|
|
|
'order' => 'ASC',
|
|
|
|
'orderby' => 'menu_order ID',
|
|
|
|
)
|
2017-11-30 18:11:00 -05:00
|
|
|
)
|
2018-08-16 21:51:36 -04:00
|
|
|
);
|
|
|
|
foreach ( $attachments as $k => $attachment ) {
|
|
|
|
if ( $attachment->ID == $post->ID ) {
|
|
|
|
break;
|
|
|
|
}
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
2014-05-27 06:55:30 -04:00
|
|
|
|
2018-08-16 21:51:36 -04:00
|
|
|
// If there is more than 1 image attachment in a gallery
|
|
|
|
if ( count( $attachments ) > 1 ) {
|
|
|
|
$k++;
|
|
|
|
if ( isset( $attachments[ $k ] ) ) {
|
|
|
|
// get the URL of the next image attachment
|
|
|
|
$next_attachment_url = get_attachment_link( $attachments[ $k ]->ID );
|
|
|
|
} else { // or get the URL of the first image attachment
|
|
|
|
$next_attachment_url = get_attachment_link( $attachments[0]->ID );
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// or, if there's only 1 image attachment, get the URL of the image
|
|
|
|
$next_attachment_url = wp_get_attachment_url();
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
2018-08-16 21:51:36 -04:00
|
|
|
?>
|
2017-11-30 18:11:00 -05:00
|
|
|
<p class="attachment"><a href="<?php echo esc_url( $next_attachment_url ); ?>" title="<?php the_title_attribute(); ?>" rel="attachment">
|
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Filter the Twenty Ten default attachment width.
|
|
|
|
*
|
|
|
|
* @since Twenty Ten 1.0
|
|
|
|
*
|
|
|
|
* @param int The default attachment width in pixels. Default 900.
|
|
|
|
*/
|
|
|
|
$attachment_width = apply_filters( 'twentyten_attachment_size', 900 );
|
|
|
|
/**
|
|
|
|
* Filter the Twenty Ten default attachment height.
|
|
|
|
*
|
|
|
|
* @since Twenty Ten 1.0
|
|
|
|
*
|
|
|
|
* @param int The default attachment height in pixels. Default 900.
|
|
|
|
*/
|
|
|
|
$attachment_height = apply_filters( 'twentyten_attachment_height', 900 );
|
|
|
|
echo wp_get_attachment_image( $post->ID, array( $attachment_width, $attachment_height ) ); // filterable image width with, essentially, no limit for image height.
|
2018-08-16 21:51:36 -04:00
|
|
|
?>
|
2017-11-30 18:11:00 -05:00
|
|
|
</a></p>
|
2010-02-14 16:39:20 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
<div id="nav-below" class="navigation">
|
2010-02-14 16:39:20 -05:00
|
|
|
<div class="nav-previous"><?php previous_image_link( false ); ?></div>
|
|
|
|
<div class="nav-next"><?php next_image_link( false ); ?></div>
|
|
|
|
</div><!-- #nav-below -->
|
2018-08-16 21:51:36 -04:00
|
|
|
<?php else : ?>
|
2019-03-01 15:58:52 -05:00
|
|
|
<a href="<?php echo esc_url( wp_get_attachment_url() ); ?>" title="<?php the_title_attribute(); ?>" rel="attachment"><?php echo esc_html( wp_basename( get_permalink() ) ); ?></a>
|
2017-11-30 18:11:00 -05:00
|
|
|
<?php endif; ?>
|
2010-05-21 14:56:27 -04:00
|
|
|
</div><!-- .entry-attachment -->
|
2017-11-30 18:11:00 -05:00
|
|
|
<div class="entry-caption">
|
|
|
|
<?php
|
|
|
|
if ( ! empty( $post->post_excerpt ) ) {
|
|
|
|
the_excerpt();}
|
2018-08-16 21:51:36 -04:00
|
|
|
?>
|
2017-11-30 18:11:00 -05:00
|
|
|
</div>
|
2010-02-07 11:16:26 -05:00
|
|
|
|
2018-08-16 21:51:36 -04:00
|
|
|
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?>
|
|
|
|
<?php
|
|
|
|
wp_link_pages(
|
|
|
|
array(
|
|
|
|
'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ),
|
|
|
|
'after' => '</div>',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
?>
|
2010-02-07 11:16:26 -05:00
|
|
|
|
|
|
|
</div><!-- .entry-content -->
|
2010-02-08 13:02:23 -05:00
|
|
|
|
2010-02-07 11:16:26 -05:00
|
|
|
<div class="entry-utility">
|
2010-05-16 16:53:36 -04:00
|
|
|
<?php twentyten_posted_in(); ?>
|
2010-05-10 15:06:22 -04:00
|
|
|
<?php edit_post_link( __( 'Edit', 'twentyten' ), ' <span class="edit-link">', '</span>' ); ?>
|
2010-02-07 11:16:26 -05:00
|
|
|
</div><!-- .entry-utility -->
|
2019-04-15 21:30:53 -04:00
|
|
|
</div><!-- #post-<?php the_ID(); ?> -->
|
2010-02-07 11:16:26 -05:00
|
|
|
|
2018-08-16 21:51:36 -04:00
|
|
|
<?php comments_template(); ?>
|
2010-02-07 11:16:26 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
<?php endwhile;
|
|
|
|
}; // end of the loop. ?>
|