-
Notifications
You must be signed in to change notification settings - Fork 6
/
image.php
63 lines (62 loc) · 2.35 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
<?php
/**
* The template for displaying image attachments.
*
* @package Radix
* @since Radix 1.0
*/
get_header(); ?>
<div class="col-md-12">
<?php while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?> itemtype="http://schema.org/BlogPosting" itemscope="itemscope">
<header class="entry-header">
<h1 class="entry-title" itemprop="headline"><?php the_title(); ?></h1>
<div class="entry-meta">
<?php Radix_posted_on(); ?>
<?php
$metadata = wp_get_attachment_metadata();
$size_link = sprintf (
'<span class="attachment-meta full-size-link"><a href="%1$s" title="%2$s">' . __( '%3$s (%4$s × %5$s)', 'radix' ) . '</a></span>',
esc_url( wp_get_attachment_url() ),
esc_attr__( 'Link to full-size image', 'radix' ),
__( 'Full resolution', 'radix' ),
$metadata['width'],
$metadata['height']
);
?>
<?php echo $size_link; ?>
</div><!-- .entry-meta -->
<nav role="navigation" id="image-navigation" class="image-navigation">
<ul class="pager">
<li><?php previous_image_link( false, __( '<i class="fa fa-chevron-left" aria-hidden="true"></i> Previous', 'radix' ) ); ?></li>
<li><?php next_image_link( false, __( 'Next <i class="fa fa-chevron-right" aria-hidden="true"></i>', 'radix' ) ); ?></li>
</ul>
</nav> <!-- #image-navigation -->
</header><!-- .entry-header -->
<div class="entry-content">
<div class="entry-attachment">
<?php Radix_the_attached_image(); ?>
<?php if ( ! empty( $post->post_excerpt ) ) : ?>
<div class="entry-caption">
<?php the_excerpt(); ?>
</div><!-- .entry-caption -->
<?php endif; ?>
</div><!-- .entry-attachment -->
<?php the_content(); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'radix' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
'current_before' => '',
'current_after' => '',
'pagelink' => '%',
) );
?>
</div><!-- .entry-content -->
</article><!-- article -->
<?php comments_template(); ?>
<?php endwhile; // end of the loop. ?>
</div>
<?php get_footer(); ?>