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