-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathimage.php
65 lines (63 loc) · 2.12 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
<?php get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post() ?>
<div <?php post_class(); ?>>
<?php easel_display_post_thumbnail(); ?>
<div class="post-head"></div>
<div class="post-content">
<div class="imagenav-wrap">
<div class="imagenav-left">
<div class="imagenav-bg">
<?php previous_image_link(); ?>
</div>
<div class="imagenav-arrow">
‹
</div>
<div class="imagenav-link">
<?php previous_image_link() ?>
</div>
</div>
<div class="imagenav-center">
<a href="<?php echo wp_get_attachment_url($post->ID) ?>" target="_blank" title="Click for full size." class="imagetitle"><?php the_title() ?></a><br />
<a href="<?php echo get_permalink($post->post_parent) ?>" rel="attachment"><?php _e( '← Back to Gallery', 'easel' ); ?></a>
</div>
<div class="imagenav-right">
<div class="imagenav-bg">
<?php next_image_link() ?>
</div>
<div class="imagenav-arrow">
›
</div>
<div class="imagenav-link">
<?php next_image_link() ?>
</div>
</div>
<div class="clear"></div>
</div>
<div class="clear"></div>
<div class="gallery-image">
<a href="<?php echo wp_get_attachment_url($post->ID) ?>" target="_blank" title="<?php _e( 'Click for full size.', 'easel' ); ?>" ><img src="<?php echo wp_get_attachment_url($post->ID) ?>" alt="<?php the_title() ?>" /></a>
</div>
<div class="gallery-caption">
<?php the_excerpt(); ?>
</div>
<div class="gallery-content">
<?php the_content(); ?>
<div class="clear"></div>
</div>
<div class="clear"></div>
</div>
<div class="post-foot"></div>
</div>
<?php edit_post_link(__( 'Edit this attachment.', 'easel' ), '', ''); ?>
<?php if ('open' == $post->comment_status) { comments_template('', true); } ?>
<?php endwhile; else: ?>
<div <?php post_class(); ?>>
<div class="post-head"></div>
<div class="post-content">
<p><?php _e( 'Sorry, no image matched your criteria.', 'easel' ); ?></p>
<div class="clear"></div>
</div>
<div class="post-foot"></div>
</div>
<?php endif; ?>
<?php get_footer() ?>