-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathattachment.php
More file actions
executable file
·100 lines (66 loc) · 3.41 KB
/
Copy pathattachment.php
File metadata and controls
executable file
·100 lines (66 loc) · 3.41 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?php
/**
* Attachment Template
*
* This is the default attachment template. It is used when visiting the singular view of a post attachment page (images, videos, audio, etc.).
*
* @package Murmur
* @subpackage Functions
* @version 0.1.0
* @author Tung Do <tung@devpress.com>
* @copyright Copyright (c) 2012, Tung Do
* @link http://devpress.com/themes/murmur
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*/
get_header(); // Loads the header.php template. ?>
<?php do_atomic( 'before_content' ); // murmur_before_content ?>
<?php if( hybrid_get_setting( 'murmur_site_description_extended' ) ) { ?>
<div id="site-description-extended">
<?php echo hybrid_get_setting( 'murmur_site_description_extended' ); ?>
</div><!-- #site-description-extended -->
<?php } ?>
<?php if ( current_theme_supports( 'breadcrumb-trail' ) ) breadcrumb_trail( array( 'separator' => '»' ) ); ?>
<div id="content">
<?php do_atomic( 'open_content' ); // murmur_open_content ?>
<div class="hfeed">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php do_atomic( 'before_entry' ); // murmur_before_entry ?>
<div id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
<?php do_atomic( 'open_entry' ); // murmur_open_entry ?>
<?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?>
<div class="entry-content">
<?php if ( wp_attachment_is_image( get_the_ID() ) ) : ?>
<p class="attachment-image">
<?php echo wp_get_attachment_image( get_the_ID(), 'full', false, array( 'class' => 'aligncenter' ) ); ?>
</p><!-- .attachment-image -->
<?php else : ?>
<p>
<?php hybrid_attachment(); // Function for handling non-image attachments. ?>
</p>
<p class="download">
<a href="<?php echo wp_get_attachment_url(); ?>" title="<?php the_title_attribute(); ?>" rel="enclosure" type="<?php echo get_post_mime_type(); ?>"><?php printf( __( 'Download "%s";', 'murmur' ), the_title( '<span class="fn">', '</span>', false) ); ?></a>
</p><!-- .download -->
<?php endif; ?>
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'murmur' ) ); ?>
<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'murmur' ), 'after' => '</p>' ) ); ?>
<?php if ( wp_attachment_is_image( get_the_ID() ) ) {
$gallery = do_shortcode( sprintf( '[gallery id="%1$s" exclude="%2$s" columns="5" numberposts="16" orderby="rand"]', $post->post_parent, get_the_ID() ) );
if ( !empty( $gallery ) )
echo '<h3>' . __( 'Gallery', 'murmur' ) . '</h3>' . $gallery;
}
?>
</div><!-- .entry-content -->
<?php do_atomic( 'close_entry' ); // murmur_close_entry ?>
</div><!-- .hentry -->
<?php do_atomic( 'after_entry' ); // murmur_after_entry ?>
<?php do_atomic( 'after_singular' ); // murmur_after_singular ?>
<?php comments_template( '/comments.php', true ); // Loads the comments.php template. ?>
<?php endwhile; ?>
<?php endif; ?>
</div><!-- .hfeed -->
<?php do_atomic( 'close_content' ); // murmur_close_content ?>
<?php get_template_part( 'loop-nav' ); // Loads the loop-nav.php template. ?>
</div><!-- #content -->
<?php do_atomic( 'after_content' ); // murmur_after_content ?>
<?php get_footer(); // Loads the footer.php template. ?>