This repository has been archived by the owner on May 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
image.php
75 lines (60 loc) · 2.23 KB
/
image.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
/**
* The template for displaying image attachments.
*
* @package Alien Ship
*/
get_header(); ?>
<div id="primary" class="image-attachment">
<main id="main" class="site-main" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
<div class="entry-meta">
<?php
$metadata = wp_get_attachment_metadata();
printf( __( 'Published <span class="entry-date"><abbr class="published" title="%1$s">%2$s</abbr></span> at <a href="%3$s" title="Link to full-size image">%4$s × %5$s</a> in <a href="%6$s" title="Return to %7$s" rel="gallery">%8$s</a>', 'alienship' ),
esc_attr( get_the_time() ),
get_the_date(),
wp_get_attachment_url(),
esc_html( $metadata['width'] ),
esc_html( $metadata['height'] ),
esc_url( get_permalink( $post->post_parent ) ),
esc_attr( strip_tags( get_the_title( $post->post_parent ) ) ),
get_the_title( $post->post_parent )
);
?>
</div><!-- .entry-meta -->
</header>
<div class="entry-content">
<div class="entry-attachment">
<div class="attachment">
<?php alienship_the_attached_image(); ?>
</div><!-- .attachment -->
<?php if ( has_excerpt() ) : ?>
<div class="entry-caption">
<?php the_excerpt(); ?>
</div>
<?php endif; ?>
</div><!-- .entry-attachment -->
<?php
the_content();
wp_link_pages();
?>
</div><!-- .entry-content -->
<nav role="navigation" id="image-navigation" class="image-navigation">
<ul class="pager">
<li><?php previous_image_link( false, __( '« Previous', 'alienship' ) ); ?></li>
<li><?php next_image_link( false, __( 'Next »', 'alienship' ) ); ?></li>
</ul>
</nav>
<footer class="entry-meta">
<?php edit_post_link( __( 'Edit', 'alienship' ), ' <span class="edit-link">', '</span>' ); ?>
</footer>
</article>
<?php comments_template(); ?>
<?php endwhile; // end of the loop. ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_footer(); ?>