-
Notifications
You must be signed in to change notification settings - Fork 0
/
attachment.php
161 lines (138 loc) · 6.21 KB
/
attachment.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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<?php
/**
* Displays a single attachment.
*
* @package P3
*/
?>
<?php get_header(); ?>
<div class="sleeve_main">
<div id="main">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="controls">
<a href="#" id="togglecomments"><?php _e( 'Hide threads', 'p3' ); ?></a>
<span class="sep"> | </span>
<a href="#directions" id="directions-keyboard"><?php _e( 'Keyboard Shortcuts', 'p3' ); ?></a>
<span class="single-action-links"><?php do_action( 'p3_action_links' ); ?></span>
</div>
<ul id="postlist">
<li id="prologue-<?php the_ID(); ?>" <?php post_class(); ?>>
<h2><a href="<?php echo get_permalink( $post->post_parent ); ?>" rev="attachment"><?php echo get_the_title( $post->post_parent ); ?></a> » <?php the_title(); ?></h2>
<?php
$author_posts_url = get_author_posts_url( get_the_author_meta( 'ID' ) );
$posts_by_title = sprintf(
__( 'Posts by %1$s ( @%2$s )', 'p3' ),
get_the_author_meta( 'display_name' ),
get_the_author_meta( 'user_nicename' )
); ?>
<a href="<?php echo esc_attr( $author_posts_url ); ?>" title="<?php echo esc_attr( $posts_by_title ); ?>" class="post-avatar">
<?php echo get_avatar( get_the_author_meta( 'user_email' ), 48 ); ?>
</a>
<h4>
<a href="<?php echo esc_attr( $author_posts_url ); ?>" title="<?php echo esc_attr( $posts_by_title ); ?>"><?php the_author(); ?></a>
<span class="meta">
<?php echo p3_date_time_with_microformat(); ?>
<?php
$metadata = wp_get_attachment_metadata();
if ( wp_attachment_is_image() ) {
echo " | "; // Pipe separator.
printf( __( 'Full size is %s pixels', 'p3' ),
sprintf( '<a href="%1$s" title="%2$s">%3$s × %4$s</a>',
wp_get_attachment_url(),
esc_attr( __( 'Link to full-size image', 'p3' ) ),
$metadata['width'],
$metadata['height']
)
);
}
?>
<span class="actions">
<?php
if ( comments_open() && ! post_password_required() ) {
echo post_reply_link( array(
'before' => isset( $before_reply_link ) ? $before_reply_link : '',
'after' => '',
'reply_text' => __( 'Reply', 'p3' ),
'add_below' => 'comments'
), get_the_ID() );
}
if ( current_user_can( 'edit_post', get_the_ID() ) ) : ?> | <a href="<?php echo ( get_edit_post_link( get_the_ID() ) ); ?>" rel="<?php the_ID(); ?>" title="<?php esc_attr_e( 'Edit', 'p3' ); ?>"><?php _e( 'Edit', 'p3' ); ?></a>
<?php endif; ?>
<?php do_action( 'p3_action_links' ); ?>
</span>
</span>
</h4>
<div id="content-<?php the_ID(); ?>" class="postcontent">
<?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' ) ) );
foreach ( $attachments as $k => $attachment ) {
if ( $attachment->ID == $post->ID )
break;
}
$k++;
// If there is more than 1 image attachment in a gallery
if ( count( $attachments ) > 1 ) {
if ( isset( $attachments[ $k ] ) )
$next_attachment_url = get_attachment_link( $attachments[ $k ]->ID );
else
$next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID );
} else {
$next_attachment_url = wp_get_attachment_url();
}
?>
<div class="attachment-image">
<p><a href="<?php echo $next_attachment_url; ?>" title="<?php echo esc_attr( get_the_title() ); ?>" rel="attachment"><?php echo wp_get_attachment_image( $post->ID, array( $content_width - 8, 700 ) ); ?></a></p>
<div class="caption"><?php if ( !empty($post->post_excerpt) ) the_excerpt(); ?></div>
<div class="image-description"><?php if ( !empty($post->post_content) ) the_content(); ?></div>
</div>
<?php else : ?>
<p><?php _e( 'View file:', 'p3' ); ?> <a href="<?php echo wp_get_attachment_url(); ?>" title="<?php echo esc_attr( get_the_title() ); ?>" rel="attachment"><?php echo basename( get_permalink() ); ?></a></p>
<?php the_content( __( '(More ...)' , 'p3' ) ); ?>
<?php wp_link_pages(); ?>
<?php endif; ?>
</div><!-- /.postcontent -->
<?php
$comment_field = '<div class="form"><textarea id="comment" class="expand50-100" name="comment" cols="45" rows="3"></textarea></div> <label class="post-error" for="comment" id="commenttext_error"></label>';
$comment_notes_before = '<p class="comment-notes">' . ( get_option( 'require_name_email' ) ? sprintf( ' ' . __( 'Required fields are marked %s', 'p3' ), '<span class="required">*</span>' ) : '' ) . '</p>';
$p3_comment_args = array(
'title_reply' => __( 'Reply', 'p3' ),
'comment_field' => $comment_field,
'comment_notes_before' => $comment_notes_before,
'comment_notes_after' => '<span class="progress spinner-comment-new"></span>',
'label_submit' => __( 'Reply', 'p3' ),
'id_submit' => 'comment-submit',
);
?>
<?php if ( get_comments_number() > 0 && ! post_password_required() ) : ?>
<div class="discussion" style="display: none">
<p>
<?php p3_discussion_links(); ?>
<a href="#" class="show-comments"><?php _e( 'Toggle Comments', 'p3' ); ?></a>
</p>
</div>
<?php endif; ?>
<div class="bottom-of-entry"> </div>
<?php if ( p3_is_ajax_request() ) : ?>
<ul id="comments-<?php the_ID(); ?>" class="commentlist inlinecomments"></ul>
<?php else :
comments_template();
$pc = 0;
if ( p3_show_comment_form() && $pc == 0 && ! post_password_required() ) :
$pc++; ?>
<div class="respond-wrap" <?php echo ( ! is_singular() ) ? 'style="display: none; "' : ''; ?>>
<?php comment_form( $p3_comment_args ); ?>
</div><?php
endif;
endif; ?>
</li>
</ul>
<?php endwhile; ?>
<?php endif; ?>
<div class="navigation attachment">
<div class="alignleft"><?php previous_image_link(); ?></div>
<div class="alignright"><?php next_image_link(); ?></div>
</div>
</div> <!-- #main -->
</div> <!-- sleeve -->
<?php get_footer(); ?>