|
1 <?php |
|
2 |
|
3 // -- Post related Meta Boxes |
|
4 |
|
5 /** |
|
6 * Display post submit form fields. |
|
7 * |
|
8 * @since 2.7.0 |
|
9 * |
|
10 * @param object $post |
|
11 */ |
|
12 function post_submit_meta_box($post, $args = array() ) { |
|
13 global $action; |
|
14 |
|
15 $post_type = $post->post_type; |
|
16 $post_type_object = get_post_type_object($post_type); |
|
17 $can_publish = current_user_can($post_type_object->cap->publish_posts); |
|
18 ?> |
|
19 <div class="submitbox" id="submitpost"> |
|
20 |
|
21 <div id="minor-publishing"> |
|
22 |
|
23 <?php // Hidden submit button early on so that the browser chooses the right button when form is submitted with Return key ?> |
|
24 <div style="display:none;"> |
|
25 <?php submit_button( __( 'Save' ), 'button', 'save' ); ?> |
|
26 </div> |
|
27 |
|
28 <div id="minor-publishing-actions"> |
|
29 <div id="save-action"> |
|
30 <?php if ( 'publish' != $post->post_status && 'future' != $post->post_status && 'pending' != $post->post_status ) { ?> |
|
31 <input <?php if ( 'private' == $post->post_status ) { ?>style="display:none"<?php } ?> type="submit" name="save" id="save-post" value="<?php esc_attr_e('Save Draft'); ?>" class="button" /> |
|
32 <?php } elseif ( 'pending' == $post->post_status && $can_publish ) { ?> |
|
33 <input type="submit" name="save" id="save-post" value="<?php esc_attr_e('Save as Pending'); ?>" class="button" /> |
|
34 <?php } ?> |
|
35 <span class="spinner"></span> |
|
36 </div> |
|
37 <?php if ( $post_type_object->public ) : ?> |
|
38 <div id="preview-action"> |
|
39 <?php |
|
40 if ( 'publish' == $post->post_status ) { |
|
41 $preview_link = esc_url( get_permalink( $post->ID ) ); |
|
42 $preview_button = __( 'Preview Changes' ); |
|
43 } else { |
|
44 $preview_link = set_url_scheme( get_permalink( $post->ID ) ); |
|
45 $preview_link = esc_url( apply_filters( 'preview_post_link', add_query_arg( 'preview', 'true', $preview_link ) ) ); |
|
46 $preview_button = __( 'Preview' ); |
|
47 } |
|
48 ?> |
|
49 <a class="preview button" href="<?php echo $preview_link; ?>" target="wp-preview" id="post-preview"><?php echo $preview_button; ?></a> |
|
50 <input type="hidden" name="wp-preview" id="wp-preview" value="" /> |
|
51 </div> |
|
52 <?php endif; // public post type ?> |
|
53 <div class="clear"></div> |
|
54 </div><!-- #minor-publishing-actions --> |
|
55 |
|
56 <div id="misc-publishing-actions"> |
|
57 |
|
58 <div class="misc-pub-section misc-pub-post-status"><label for="post_status"><?php _e('Status:') ?></label> |
|
59 <span id="post-status-display"> |
|
60 <?php |
|
61 switch ( $post->post_status ) { |
|
62 case 'private': |
|
63 _e('Privately Published'); |
|
64 break; |
|
65 case 'publish': |
|
66 _e('Published'); |
|
67 break; |
|
68 case 'future': |
|
69 _e('Scheduled'); |
|
70 break; |
|
71 case 'pending': |
|
72 _e('Pending Review'); |
|
73 break; |
|
74 case 'draft': |
|
75 case 'auto-draft': |
|
76 _e('Draft'); |
|
77 break; |
|
78 } |
|
79 ?> |
|
80 </span> |
|
81 <?php if ( 'publish' == $post->post_status || 'private' == $post->post_status || $can_publish ) { ?> |
|
82 <a href="#post_status" <?php if ( 'private' == $post->post_status ) { ?>style="display:none;" <?php } ?>class="edit-post-status hide-if-no-js"><?php _e('Edit') ?></a> |
|
83 |
|
84 <div id="post-status-select" class="hide-if-js"> |
|
85 <input type="hidden" name="hidden_post_status" id="hidden_post_status" value="<?php echo esc_attr( ('auto-draft' == $post->post_status ) ? 'draft' : $post->post_status); ?>" /> |
|
86 <select name='post_status' id='post_status'> |
|
87 <?php if ( 'publish' == $post->post_status ) : ?> |
|
88 <option<?php selected( $post->post_status, 'publish' ); ?> value='publish'><?php _e('Published') ?></option> |
|
89 <?php elseif ( 'private' == $post->post_status ) : ?> |
|
90 <option<?php selected( $post->post_status, 'private' ); ?> value='publish'><?php _e('Privately Published') ?></option> |
|
91 <?php elseif ( 'future' == $post->post_status ) : ?> |
|
92 <option<?php selected( $post->post_status, 'future' ); ?> value='future'><?php _e('Scheduled') ?></option> |
|
93 <?php endif; ?> |
|
94 <option<?php selected( $post->post_status, 'pending' ); ?> value='pending'><?php _e('Pending Review') ?></option> |
|
95 <?php if ( 'auto-draft' == $post->post_status ) : ?> |
|
96 <option<?php selected( $post->post_status, 'auto-draft' ); ?> value='draft'><?php _e('Draft') ?></option> |
|
97 <?php else : ?> |
|
98 <option<?php selected( $post->post_status, 'draft' ); ?> value='draft'><?php _e('Draft') ?></option> |
|
99 <?php endif; ?> |
|
100 </select> |
|
101 <a href="#post_status" class="save-post-status hide-if-no-js button"><?php _e('OK'); ?></a> |
|
102 <a href="#post_status" class="cancel-post-status hide-if-no-js"><?php _e('Cancel'); ?></a> |
|
103 </div> |
|
104 |
|
105 <?php } ?> |
|
106 </div><!-- .misc-pub-section --> |
|
107 |
|
108 <div class="misc-pub-section misc-pub-visibility" id="visibility"> |
|
109 <?php _e('Visibility:'); ?> <span id="post-visibility-display"><?php |
|
110 |
|
111 if ( 'private' == $post->post_status ) { |
|
112 $post->post_password = ''; |
|
113 $visibility = 'private'; |
|
114 $visibility_trans = __('Private'); |
|
115 } elseif ( !empty( $post->post_password ) ) { |
|
116 $visibility = 'password'; |
|
117 $visibility_trans = __('Password protected'); |
|
118 } elseif ( $post_type == 'post' && is_sticky( $post->ID ) ) { |
|
119 $visibility = 'public'; |
|
120 $visibility_trans = __('Public, Sticky'); |
|
121 } else { |
|
122 $visibility = 'public'; |
|
123 $visibility_trans = __('Public'); |
|
124 } |
|
125 |
|
126 echo esc_html( $visibility_trans ); ?></span> |
|
127 <?php if ( $can_publish ) { ?> |
|
128 <a href="#visibility" class="edit-visibility hide-if-no-js"><?php _e('Edit'); ?></a> |
|
129 |
|
130 <div id="post-visibility-select" class="hide-if-js"> |
|
131 <input type="hidden" name="hidden_post_password" id="hidden-post-password" value="<?php echo esc_attr($post->post_password); ?>" /> |
|
132 <?php if ($post_type == 'post'): ?> |
|
133 <input type="checkbox" style="display:none" name="hidden_post_sticky" id="hidden-post-sticky" value="sticky" <?php checked(is_sticky($post->ID)); ?> /> |
|
134 <?php endif; ?> |
|
135 <input type="hidden" name="hidden_post_visibility" id="hidden-post-visibility" value="<?php echo esc_attr( $visibility ); ?>" /> |
|
136 <input type="radio" name="visibility" id="visibility-radio-public" value="public" <?php checked( $visibility, 'public' ); ?> /> <label for="visibility-radio-public" class="selectit"><?php _e('Public'); ?></label><br /> |
|
137 <?php if ( $post_type == 'post' && current_user_can( 'edit_others_posts' ) ) : ?> |
|
138 <span id="sticky-span"><input id="sticky" name="sticky" type="checkbox" value="sticky" <?php checked( is_sticky( $post->ID ) ); ?> /> <label for="sticky" class="selectit"><?php _e( 'Stick this post to the front page' ); ?></label><br /></span> |
|
139 <?php endif; ?> |
|
140 <input type="radio" name="visibility" id="visibility-radio-password" value="password" <?php checked( $visibility, 'password' ); ?> /> <label for="visibility-radio-password" class="selectit"><?php _e('Password protected'); ?></label><br /> |
|
141 <span id="password-span"><label for="post_password"><?php _e('Password:'); ?></label> <input type="text" name="post_password" id="post_password" value="<?php echo esc_attr($post->post_password); ?>" maxlength="20" /><br /></span> |
|
142 <input type="radio" name="visibility" id="visibility-radio-private" value="private" <?php checked( $visibility, 'private' ); ?> /> <label for="visibility-radio-private" class="selectit"><?php _e('Private'); ?></label><br /> |
|
143 |
|
144 <p> |
|
145 <a href="#visibility" class="save-post-visibility hide-if-no-js button"><?php _e('OK'); ?></a> |
|
146 <a href="#visibility" class="cancel-post-visibility hide-if-no-js"><?php _e('Cancel'); ?></a> |
|
147 </p> |
|
148 </div> |
|
149 <?php } ?> |
|
150 |
|
151 </div><!-- .misc-pub-section --> |
|
152 |
|
153 <?php |
|
154 // translators: Publish box date format, see http://php.net/date |
|
155 $datef = __( 'M j, Y @ G:i' ); |
|
156 if ( 0 != $post->ID ) { |
|
157 if ( 'future' == $post->post_status ) { // scheduled for publishing at a future date |
|
158 $stamp = __('Scheduled for: <b>%1$s</b>'); |
|
159 } else if ( 'publish' == $post->post_status || 'private' == $post->post_status ) { // already published |
|
160 $stamp = __('Published on: <b>%1$s</b>'); |
|
161 } else if ( '0000-00-00 00:00:00' == $post->post_date_gmt ) { // draft, 1 or more saves, no date specified |
|
162 $stamp = __('Publish <b>immediately</b>'); |
|
163 } else if ( time() < strtotime( $post->post_date_gmt . ' +0000' ) ) { // draft, 1 or more saves, future date specified |
|
164 $stamp = __('Schedule for: <b>%1$s</b>'); |
|
165 } else { // draft, 1 or more saves, date specified |
|
166 $stamp = __('Publish on: <b>%1$s</b>'); |
|
167 } |
|
168 $date = date_i18n( $datef, strtotime( $post->post_date ) ); |
|
169 } else { // draft (no saves, and thus no date specified) |
|
170 $stamp = __('Publish <b>immediately</b>'); |
|
171 $date = date_i18n( $datef, strtotime( current_time('mysql') ) ); |
|
172 } |
|
173 |
|
174 if ( ! empty( $args['args']['revisions_count'] ) ) : |
|
175 $revisions_to_keep = wp_revisions_to_keep( $post ); |
|
176 ?> |
|
177 <div class="misc-pub-section misc-pub-revisions"> |
|
178 <?php |
|
179 if ( $revisions_to_keep > 0 && $revisions_to_keep <= $args['args']['revisions_count'] ) { |
|
180 echo '<span title="' . esc_attr( sprintf( __( 'Your site is configured to keep only the last %s revisions.' ), |
|
181 number_format_i18n( $revisions_to_keep ) ) ) . '">'; |
|
182 printf( __( 'Revisions: %s' ), '<b>' . number_format_i18n( $args['args']['revisions_count'] ) . '+</b>' ); |
|
183 echo '</span>'; |
|
184 } else { |
|
185 printf( __( 'Revisions: %s' ), '<b>' . number_format_i18n( $args['args']['revisions_count'] ) . '</b>' ); |
|
186 } |
|
187 ?> |
|
188 <a class="hide-if-no-js" href="<?php echo esc_url( get_edit_post_link( $args['args']['revision_id'] ) ); ?>"><?php _ex( 'Browse', 'revisions' ); ?></a> |
|
189 </div> |
|
190 <?php endif; |
|
191 |
|
192 if ( $can_publish ) : // Contributors don't get to choose the date of publish ?> |
|
193 <div class="misc-pub-section curtime misc-pub-curtime"> |
|
194 <span id="timestamp"> |
|
195 <?php printf($stamp, $date); ?></span> |
|
196 <a href="#edit_timestamp" class="edit-timestamp hide-if-no-js"><?php _e('Edit') ?></a> |
|
197 <div id="timestampdiv" class="hide-if-js"><?php touch_time(($action == 'edit'), 1); ?></div> |
|
198 </div><?php // /misc-pub-section ?> |
|
199 <?php endif; ?> |
|
200 |
|
201 <?php do_action('post_submitbox_misc_actions'); ?> |
|
202 </div> |
|
203 <div class="clear"></div> |
|
204 </div> |
|
205 |
|
206 <div id="major-publishing-actions"> |
|
207 <?php do_action('post_submitbox_start'); ?> |
|
208 <div id="delete-action"> |
|
209 <?php |
|
210 if ( current_user_can( "delete_post", $post->ID ) ) { |
|
211 if ( !EMPTY_TRASH_DAYS ) |
|
212 $delete_text = __('Delete Permanently'); |
|
213 else |
|
214 $delete_text = __('Move to Trash'); |
|
215 ?> |
|
216 <a class="submitdelete deletion" href="<?php echo get_delete_post_link($post->ID); ?>"><?php echo $delete_text; ?></a><?php |
|
217 } ?> |
|
218 </div> |
|
219 |
|
220 <div id="publishing-action"> |
|
221 <span class="spinner"></span> |
|
222 <?php |
|
223 if ( !in_array( $post->post_status, array('publish', 'future', 'private') ) || 0 == $post->ID ) { |
|
224 if ( $can_publish ) : |
|
225 if ( !empty($post->post_date_gmt) && time() < strtotime( $post->post_date_gmt . ' +0000' ) ) : ?> |
|
226 <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Schedule') ?>" /> |
|
227 <?php submit_button( __( 'Schedule' ), 'primary button-large', 'publish', false, array( 'accesskey' => 'p' ) ); ?> |
|
228 <?php else : ?> |
|
229 <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Publish') ?>" /> |
|
230 <?php submit_button( __( 'Publish' ), 'primary button-large', 'publish', false, array( 'accesskey' => 'p' ) ); ?> |
|
231 <?php endif; |
|
232 else : ?> |
|
233 <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Submit for Review') ?>" /> |
|
234 <?php submit_button( __( 'Submit for Review' ), 'primary button-large', 'publish', false, array( 'accesskey' => 'p' ) ); ?> |
|
235 <?php |
|
236 endif; |
|
237 } else { ?> |
|
238 <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Update') ?>" /> |
|
239 <input name="save" type="submit" class="button button-primary button-large" id="publish" accesskey="p" value="<?php esc_attr_e('Update') ?>" /> |
|
240 <?php |
|
241 } ?> |
|
242 </div> |
|
243 <div class="clear"></div> |
|
244 </div> |
|
245 </div> |
|
246 |
|
247 <?php |
|
248 } |
|
249 |
|
250 /** |
|
251 * Display attachment submit form fields. |
|
252 * |
|
253 * @since 3.5.0 |
|
254 * |
|
255 * @param object $post |
|
256 */ |
|
257 function attachment_submit_meta_box( $post ) { |
|
258 global $action; |
|
259 |
|
260 $post_type = $post->post_type; |
|
261 $post_type_object = get_post_type_object($post_type); |
|
262 $can_publish = current_user_can($post_type_object->cap->publish_posts); |
|
263 ?> |
|
264 <div class="submitbox" id="submitpost"> |
|
265 |
|
266 <div id="minor-publishing"> |
|
267 |
|
268 <?php // Hidden submit button early on so that the browser chooses the right button when form is submitted with Return key ?> |
|
269 <div style="display:none;"> |
|
270 <?php submit_button( __( 'Save' ), 'button', 'save' ); ?> |
|
271 </div> |
|
272 |
|
273 |
|
274 <div id="misc-publishing-actions"> |
|
275 <?php |
|
276 // translators: Publish box date format, see http://php.net/date |
|
277 $datef = __( 'M j, Y @ G:i' ); |
|
278 $stamp = __('Uploaded on: <b>%1$s</b>'); |
|
279 $date = date_i18n( $datef, strtotime( $post->post_date ) ); |
|
280 ?> |
|
281 <div class="misc-pub-section curtime misc-pub-curtime"> |
|
282 <span id="timestamp"><?php printf($stamp, $date); ?></span> |
|
283 </div><!-- .misc-pub-section --> |
|
284 |
|
285 <?php do_action('attachment_submitbox_misc_actions'); ?> |
|
286 </div><!-- #misc-publishing-actions --> |
|
287 <div class="clear"></div> |
|
288 </div><!-- #minor-publishing --> |
|
289 |
|
290 <div id="major-publishing-actions"> |
|
291 <div id="delete-action"> |
|
292 <?php |
|
293 if ( current_user_can( 'delete_post', $post->ID ) ) |
|
294 if ( EMPTY_TRASH_DAYS && MEDIA_TRASH ) { |
|
295 echo "<a class='submitdelete deletion' href='" . get_delete_post_link( $post->ID ) . "'>" . __( 'Trash' ) . "</a>"; |
|
296 } else { |
|
297 $delete_ays = ! MEDIA_TRASH ? " onclick='return showNotice.warn();'" : ''; |
|
298 echo "<a class='submitdelete deletion'$delete_ays href='" . get_delete_post_link( $post->ID, null, true ) . "'>" . __( 'Delete Permanently' ) . "</a>"; |
|
299 } |
|
300 ?> |
|
301 </div> |
|
302 |
|
303 <div id="publishing-action"> |
|
304 <span class="spinner"></span> |
|
305 <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Update') ?>" /> |
|
306 <input name="save" type="submit" class="button-primary button-large" id="publish" accesskey="p" value="<?php esc_attr_e('Update') ?>" /> |
|
307 </div> |
|
308 <div class="clear"></div> |
|
309 </div><!-- #major-publishing-actions --> |
|
310 |
|
311 </div> |
|
312 |
|
313 <?php |
|
314 } |
|
315 |
|
316 /** |
|
317 * Display post format form elements. |
|
318 * |
|
319 * @since 3.1.0 |
|
320 * |
|
321 * @param object $post |
|
322 */ |
|
323 function post_format_meta_box( $post, $box ) { |
|
324 if ( current_theme_supports( 'post-formats' ) && post_type_supports( $post->post_type, 'post-formats' ) ) : |
|
325 $post_formats = get_theme_support( 'post-formats' ); |
|
326 |
|
327 if ( is_array( $post_formats[0] ) ) : |
|
328 $post_format = get_post_format( $post->ID ); |
|
329 if ( !$post_format ) |
|
330 $post_format = '0'; |
|
331 // Add in the current one if it isn't there yet, in case the current theme doesn't support it |
|
332 if ( $post_format && !in_array( $post_format, $post_formats[0] ) ) |
|
333 $post_formats[0][] = $post_format; |
|
334 ?> |
|
335 <div id="post-formats-select"> |
|
336 <input type="radio" name="post_format" class="post-format" id="post-format-0" value="0" <?php checked( $post_format, '0' ); ?> /> <label for="post-format-0" class="post-format-icon post-format-standard"><?php echo get_post_format_string( 'standard' ); ?></label> |
|
337 <?php foreach ( $post_formats[0] as $format ) : ?> |
|
338 <br /><input type="radio" name="post_format" class="post-format" id="post-format-<?php echo esc_attr( $format ); ?>" value="<?php echo esc_attr( $format ); ?>" <?php checked( $post_format, $format ); ?> /> <label for="post-format-<?php echo esc_attr( $format ); ?>" class="post-format-icon post-format-<?php echo esc_attr( $format ); ?>"><?php echo esc_html( get_post_format_string( $format ) ); ?></label> |
|
339 <?php endforeach; ?><br /> |
|
340 </div> |
|
341 <?php endif; endif; |
|
342 } |
|
343 |
|
344 /** |
|
345 * Display post tags form fields. |
|
346 * |
|
347 * @since 2.6.0 |
|
348 * |
|
349 * @param object $post |
|
350 */ |
|
351 function post_tags_meta_box($post, $box) { |
|
352 $defaults = array('taxonomy' => 'post_tag'); |
|
353 if ( !isset($box['args']) || !is_array($box['args']) ) |
|
354 $args = array(); |
|
355 else |
|
356 $args = $box['args']; |
|
357 extract( wp_parse_args($args, $defaults), EXTR_SKIP ); |
|
358 $tax_name = esc_attr($taxonomy); |
|
359 $taxonomy = get_taxonomy($taxonomy); |
|
360 $user_can_assign_terms = current_user_can( $taxonomy->cap->assign_terms ); |
|
361 $comma = _x( ',', 'tag delimiter' ); |
|
362 ?> |
|
363 <div class="tagsdiv" id="<?php echo $tax_name; ?>"> |
|
364 <div class="jaxtag"> |
|
365 <div class="nojs-tags hide-if-js"> |
|
366 <p><?php echo $taxonomy->labels->add_or_remove_items; ?></p> |
|
367 <textarea name="<?php echo "tax_input[$tax_name]"; ?>" rows="3" cols="20" class="the-tags" id="tax-input-<?php echo $tax_name; ?>" <?php disabled( ! $user_can_assign_terms ); ?>><?php echo str_replace( ',', $comma . ' ', get_terms_to_edit( $post->ID, $tax_name ) ); // textarea_escaped by esc_attr() ?></textarea></div> |
|
368 <?php if ( $user_can_assign_terms ) : ?> |
|
369 <div class="ajaxtag hide-if-no-js"> |
|
370 <label class="screen-reader-text" for="new-tag-<?php echo $tax_name; ?>"><?php echo $box['title']; ?></label> |
|
371 <div class="taghint"><?php echo $taxonomy->labels->add_new_item; ?></div> |
|
372 <p><input type="text" id="new-tag-<?php echo $tax_name; ?>" name="newtag[<?php echo $tax_name; ?>]" class="newtag form-input-tip" size="16" autocomplete="off" value="" /> |
|
373 <input type="button" class="button tagadd" value="<?php esc_attr_e('Add'); ?>" /></p> |
|
374 </div> |
|
375 <p class="howto"><?php echo $taxonomy->labels->separate_items_with_commas; ?></p> |
|
376 <?php endif; ?> |
|
377 </div> |
|
378 <div class="tagchecklist"></div> |
|
379 </div> |
|
380 <?php if ( $user_can_assign_terms ) : ?> |
|
381 <p class="hide-if-no-js"><a href="#titlediv" class="tagcloud-link" id="link-<?php echo $tax_name; ?>"><?php echo $taxonomy->labels->choose_from_most_used; ?></a></p> |
|
382 <?php endif; ?> |
|
383 <?php |
|
384 } |
|
385 |
|
386 /** |
|
387 * Display post categories form fields. |
|
388 * |
|
389 * @since 2.6.0 |
|
390 * |
|
391 * @param object $post |
|
392 */ |
|
393 function post_categories_meta_box( $post, $box ) { |
|
394 $defaults = array('taxonomy' => 'category'); |
|
395 if ( !isset($box['args']) || !is_array($box['args']) ) |
|
396 $args = array(); |
|
397 else |
|
398 $args = $box['args']; |
|
399 extract( wp_parse_args($args, $defaults), EXTR_SKIP ); |
|
400 $tax = get_taxonomy($taxonomy); |
|
401 |
|
402 ?> |
|
403 <div id="taxonomy-<?php echo $taxonomy; ?>" class="categorydiv"> |
|
404 <ul id="<?php echo $taxonomy; ?>-tabs" class="category-tabs"> |
|
405 <li class="tabs"><a href="#<?php echo $taxonomy; ?>-all"><?php echo $tax->labels->all_items; ?></a></li> |
|
406 <li class="hide-if-no-js"><a href="#<?php echo $taxonomy; ?>-pop"><?php _e( 'Most Used' ); ?></a></li> |
|
407 </ul> |
|
408 |
|
409 <div id="<?php echo $taxonomy; ?>-pop" class="tabs-panel" style="display: none;"> |
|
410 <ul id="<?php echo $taxonomy; ?>checklist-pop" class="categorychecklist form-no-clear" > |
|
411 <?php $popular_ids = wp_popular_terms_checklist($taxonomy); ?> |
|
412 </ul> |
|
413 </div> |
|
414 |
|
415 <div id="<?php echo $taxonomy; ?>-all" class="tabs-panel"> |
|
416 <?php |
|
417 $name = ( $taxonomy == 'category' ) ? 'post_category' : 'tax_input[' . $taxonomy . ']'; |
|
418 echo "<input type='hidden' name='{$name}[]' value='0' />"; // Allows for an empty term set to be sent. 0 is an invalid Term ID and will be ignored by empty() checks. |
|
419 ?> |
|
420 <ul id="<?php echo $taxonomy; ?>checklist" data-wp-lists="list:<?php echo $taxonomy?>" class="categorychecklist form-no-clear"> |
|
421 <?php wp_terms_checklist($post->ID, array( 'taxonomy' => $taxonomy, 'popular_cats' => $popular_ids ) ) ?> |
|
422 </ul> |
|
423 </div> |
|
424 <?php if ( current_user_can($tax->cap->edit_terms) ) : ?> |
|
425 <div id="<?php echo $taxonomy; ?>-adder" class="wp-hidden-children"> |
|
426 <h4> |
|
427 <a id="<?php echo $taxonomy; ?>-add-toggle" href="#<?php echo $taxonomy; ?>-add" class="hide-if-no-js"> |
|
428 <?php |
|
429 /* translators: %s: add new taxonomy label */ |
|
430 printf( __( '+ %s' ), $tax->labels->add_new_item ); |
|
431 ?> |
|
432 </a> |
|
433 </h4> |
|
434 <p id="<?php echo $taxonomy; ?>-add" class="category-add wp-hidden-child"> |
|
435 <label class="screen-reader-text" for="new<?php echo $taxonomy; ?>"><?php echo $tax->labels->add_new_item; ?></label> |
|
436 <input type="text" name="new<?php echo $taxonomy; ?>" id="new<?php echo $taxonomy; ?>" class="form-required form-input-tip" value="<?php echo esc_attr( $tax->labels->new_item_name ); ?>" aria-required="true"/> |
|
437 <label class="screen-reader-text" for="new<?php echo $taxonomy; ?>_parent"> |
|
438 <?php echo $tax->labels->parent_item_colon; ?> |
|
439 </label> |
|
440 <?php wp_dropdown_categories( array( 'taxonomy' => $taxonomy, 'hide_empty' => 0, 'name' => 'new'.$taxonomy.'_parent', 'orderby' => 'name', 'hierarchical' => 1, 'show_option_none' => '— ' . $tax->labels->parent_item . ' —' ) ); ?> |
|
441 <input type="button" id="<?php echo $taxonomy; ?>-add-submit" data-wp-lists="add:<?php echo $taxonomy ?>checklist:<?php echo $taxonomy ?>-add" class="button category-add-submit" value="<?php echo esc_attr( $tax->labels->add_new_item ); ?>" /> |
|
442 <?php wp_nonce_field( 'add-'.$taxonomy, '_ajax_nonce-add-'.$taxonomy, false ); ?> |
|
443 <span id="<?php echo $taxonomy; ?>-ajax-response"></span> |
|
444 </p> |
|
445 </div> |
|
446 <?php endif; ?> |
|
447 </div> |
|
448 <?php |
|
449 } |
|
450 |
|
451 /** |
|
452 * Display post excerpt form fields. |
|
453 * |
|
454 * @since 2.6.0 |
|
455 * |
|
456 * @param object $post |
|
457 */ |
|
458 function post_excerpt_meta_box($post) { |
|
459 ?> |
|
460 <label class="screen-reader-text" for="excerpt"><?php _e('Excerpt') ?></label><textarea rows="1" cols="40" name="excerpt" id="excerpt"><?php echo $post->post_excerpt; // textarea_escaped ?></textarea> |
|
461 <p><?php _e('Excerpts are optional hand-crafted summaries of your content that can be used in your theme. <a href="http://codex.wordpress.org/Excerpt" target="_blank">Learn more about manual excerpts.</a>'); ?></p> |
|
462 <?php |
|
463 } |
|
464 |
|
465 /** |
|
466 * Display trackback links form fields. |
|
467 * |
|
468 * @since 2.6.0 |
|
469 * |
|
470 * @param object $post |
|
471 */ |
|
472 function post_trackback_meta_box($post) { |
|
473 $form_trackback = '<input type="text" name="trackback_url" id="trackback_url" class="code" value="'. esc_attr( str_replace("\n", ' ', $post->to_ping) ) .'" />'; |
|
474 if ('' != $post->pinged) { |
|
475 $pings = '<p>'. __('Already pinged:') . '</p><ul>'; |
|
476 $already_pinged = explode("\n", trim($post->pinged)); |
|
477 foreach ($already_pinged as $pinged_url) { |
|
478 $pings .= "\n\t<li>" . esc_html($pinged_url) . "</li>"; |
|
479 } |
|
480 $pings .= '</ul>'; |
|
481 } |
|
482 |
|
483 ?> |
|
484 <p><label for="trackback_url"><?php _e('Send trackbacks to:'); ?></label> <?php echo $form_trackback; ?><br /> (<?php _e('Separate multiple URLs with spaces'); ?>)</p> |
|
485 <p><?php _e('Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites they’ll be notified automatically using <a href="http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" target="_blank">pingbacks</a>, no other action necessary.'); ?></p> |
|
486 <?php |
|
487 if ( ! empty($pings) ) |
|
488 echo $pings; |
|
489 } |
|
490 |
|
491 /** |
|
492 * Display custom fields form fields. |
|
493 * |
|
494 * @since 2.6.0 |
|
495 * |
|
496 * @param object $post |
|
497 */ |
|
498 function post_custom_meta_box($post) { |
|
499 ?> |
|
500 <div id="postcustomstuff"> |
|
501 <div id="ajax-response"></div> |
|
502 <?php |
|
503 $metadata = has_meta($post->ID); |
|
504 foreach ( $metadata as $key => $value ) { |
|
505 if ( is_protected_meta( $metadata[ $key ][ 'meta_key' ], 'post' ) || ! current_user_can( 'edit_post_meta', $post->ID, $metadata[ $key ][ 'meta_key' ] ) ) |
|
506 unset( $metadata[ $key ] ); |
|
507 } |
|
508 list_meta( $metadata ); |
|
509 meta_form( $post ); ?> |
|
510 </div> |
|
511 <p><?php _e('Custom fields can be used to add extra metadata to a post that you can <a href="http://codex.wordpress.org/Using_Custom_Fields" target="_blank">use in your theme</a>.'); ?></p> |
|
512 <?php |
|
513 } |
|
514 |
|
515 /** |
|
516 * Display comments status form fields. |
|
517 * |
|
518 * @since 2.6.0 |
|
519 * |
|
520 * @param object $post |
|
521 */ |
|
522 function post_comment_status_meta_box($post) { |
|
523 ?> |
|
524 <input name="advanced_view" type="hidden" value="1" /> |
|
525 <p class="meta-options"> |
|
526 <label for="comment_status" class="selectit"><input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> /> <?php _e( 'Allow comments.' ) ?></label><br /> |
|
527 <label for="ping_status" class="selectit"><input name="ping_status" type="checkbox" id="ping_status" value="open" <?php checked($post->ping_status, 'open'); ?> /> <?php printf( __( 'Allow <a href="%s" target="_blank">trackbacks and pingbacks</a> on this page.' ), __( 'http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments' ) ); ?></label> |
|
528 <?php do_action('post_comment_status_meta_box-options', $post); ?> |
|
529 </p> |
|
530 <?php |
|
531 } |
|
532 |
|
533 /** |
|
534 * Display comments for post table header |
|
535 * |
|
536 * @since 3.0.0 |
|
537 * |
|
538 * @param array $result table header rows |
|
539 * @return array |
|
540 */ |
|
541 function post_comment_meta_box_thead($result) { |
|
542 unset($result['cb'], $result['response']); |
|
543 return $result; |
|
544 } |
|
545 |
|
546 /** |
|
547 * Display comments for post. |
|
548 * |
|
549 * @since 2.8.0 |
|
550 * |
|
551 * @param object $post |
|
552 */ |
|
553 function post_comment_meta_box( $post ) { |
|
554 global $wpdb; |
|
555 |
|
556 wp_nonce_field( 'get-comments', 'add_comment_nonce', false ); |
|
557 ?> |
|
558 <p class="hide-if-no-js" id="add-new-comment"><a href="#commentstatusdiv" onclick="commentReply.addcomment(<?php echo $post->ID; ?>);return false;"><?php _e('Add comment'); ?></a></p> |
|
559 <?php |
|
560 |
|
561 $total = get_comments( array( 'post_id' => $post->ID, 'number' => 1, 'count' => true ) ); |
|
562 $wp_list_table = _get_list_table('WP_Post_Comments_List_Table'); |
|
563 $wp_list_table->display( true ); |
|
564 |
|
565 if ( 1 > $total ) { |
|
566 echo '<p id="no-comments">' . __('No comments yet.') . '</p>'; |
|
567 } else { |
|
568 $hidden = get_hidden_meta_boxes( get_current_screen() ); |
|
569 if ( ! in_array('commentsdiv', $hidden) ) { |
|
570 ?> |
|
571 <script type="text/javascript">jQuery(document).ready(function(){commentsBox.get(<?php echo $total; ?>, 10);});</script> |
|
572 <?php |
|
573 } |
|
574 |
|
575 ?> |
|
576 <p class="hide-if-no-js" id="show-comments"><a href="#commentstatusdiv" onclick="commentsBox.get(<?php echo $total; ?>);return false;"><?php _e('Show comments'); ?></a> <span class="spinner"></span></p> |
|
577 <?php |
|
578 } |
|
579 |
|
580 wp_comment_trashnotice(); |
|
581 } |
|
582 |
|
583 /** |
|
584 * Display slug form fields. |
|
585 * |
|
586 * @since 2.6.0 |
|
587 * |
|
588 * @param object $post |
|
589 */ |
|
590 function post_slug_meta_box($post) { |
|
591 ?> |
|
592 <label class="screen-reader-text" for="post_name"><?php _e('Slug') ?></label><input name="post_name" type="text" size="13" id="post_name" value="<?php echo esc_attr( apply_filters('editable_slug', $post->post_name) ); ?>" /> |
|
593 <?php |
|
594 } |
|
595 |
|
596 /** |
|
597 * Display form field with list of authors. |
|
598 * |
|
599 * @since 2.6.0 |
|
600 * |
|
601 * @param object $post |
|
602 */ |
|
603 function post_author_meta_box($post) { |
|
604 global $user_ID; |
|
605 ?> |
|
606 <label class="screen-reader-text" for="post_author_override"><?php _e('Author'); ?></label> |
|
607 <?php |
|
608 wp_dropdown_users( array( |
|
609 'who' => 'authors', |
|
610 'name' => 'post_author_override', |
|
611 'selected' => empty($post->ID) ? $user_ID : $post->post_author, |
|
612 'include_selected' => true |
|
613 ) ); |
|
614 } |
|
615 |
|
616 /** |
|
617 * Display list of revisions. |
|
618 * |
|
619 * @since 2.6.0 |
|
620 * |
|
621 * @param object $post |
|
622 */ |
|
623 function post_revisions_meta_box( $post ) { |
|
624 wp_list_post_revisions( $post ); |
|
625 } |
|
626 |
|
627 // -- Page related Meta Boxes |
|
628 |
|
629 /** |
|
630 * Display page attributes form fields. |
|
631 * |
|
632 * @since 2.7.0 |
|
633 * |
|
634 * @param object $post |
|
635 */ |
|
636 function page_attributes_meta_box($post) { |
|
637 $post_type_object = get_post_type_object($post->post_type); |
|
638 if ( $post_type_object->hierarchical ) { |
|
639 $dropdown_args = array( |
|
640 'post_type' => $post->post_type, |
|
641 'exclude_tree' => $post->ID, |
|
642 'selected' => $post->post_parent, |
|
643 'name' => 'parent_id', |
|
644 'show_option_none' => __('(no parent)'), |
|
645 'sort_column' => 'menu_order, post_title', |
|
646 'echo' => 0, |
|
647 ); |
|
648 |
|
649 $dropdown_args = apply_filters( 'page_attributes_dropdown_pages_args', $dropdown_args, $post ); |
|
650 $pages = wp_dropdown_pages( $dropdown_args ); |
|
651 if ( ! empty($pages) ) { |
|
652 ?> |
|
653 <p><strong><?php _e('Parent') ?></strong></p> |
|
654 <label class="screen-reader-text" for="parent_id"><?php _e('Parent') ?></label> |
|
655 <?php echo $pages; ?> |
|
656 <?php |
|
657 } // end empty pages check |
|
658 } // end hierarchical check. |
|
659 if ( 'page' == $post->post_type && 0 != count( get_page_templates() ) ) { |
|
660 $template = !empty($post->page_template) ? $post->page_template : false; |
|
661 ?> |
|
662 <p><strong><?php _e('Template') ?></strong></p> |
|
663 <label class="screen-reader-text" for="page_template"><?php _e('Page Template') ?></label><select name="page_template" id="page_template"> |
|
664 <option value='default'><?php _e('Default Template'); ?></option> |
|
665 <?php page_template_dropdown($template); ?> |
|
666 </select> |
|
667 <?php |
|
668 } ?> |
|
669 <p><strong><?php _e('Order') ?></strong></p> |
|
670 <p><label class="screen-reader-text" for="menu_order"><?php _e('Order') ?></label><input name="menu_order" type="text" size="4" id="menu_order" value="<?php echo esc_attr($post->menu_order) ?>" /></p> |
|
671 <p><?php if ( 'page' == $post->post_type ) _e( 'Need help? Use the Help tab in the upper right of your screen.' ); ?></p> |
|
672 <?php |
|
673 } |
|
674 |
|
675 // -- Link related Meta Boxes |
|
676 |
|
677 /** |
|
678 * Display link create form fields. |
|
679 * |
|
680 * @since 2.7.0 |
|
681 * |
|
682 * @param object $link |
|
683 */ |
|
684 function link_submit_meta_box($link) { |
|
685 ?> |
|
686 <div class="submitbox" id="submitlink"> |
|
687 |
|
688 <div id="minor-publishing"> |
|
689 |
|
690 <?php // Hidden submit button early on so that the browser chooses the right button when form is submitted with Return key ?> |
|
691 <div style="display:none;"> |
|
692 <?php submit_button( __( 'Save' ), 'button', 'save', false ); ?> |
|
693 </div> |
|
694 |
|
695 <div id="minor-publishing-actions"> |
|
696 <div id="preview-action"> |
|
697 <?php if ( !empty($link->link_id) ) { ?> |
|
698 <a class="preview button" href="<?php echo $link->link_url; ?>" target="_blank"><?php _e('Visit Link'); ?></a> |
|
699 <?php } ?> |
|
700 </div> |
|
701 <div class="clear"></div> |
|
702 </div> |
|
703 |
|
704 <div id="misc-publishing-actions"> |
|
705 <div class="misc-pub-section misc-pub-private"> |
|
706 <label for="link_private" class="selectit"><input id="link_private" name="link_visible" type="checkbox" value="N" <?php checked($link->link_visible, 'N'); ?> /> <?php _e('Keep this link private') ?></label> |
|
707 </div> |
|
708 </div> |
|
709 |
|
710 </div> |
|
711 |
|
712 <div id="major-publishing-actions"> |
|
713 <?php do_action('post_submitbox_start'); ?> |
|
714 <div id="delete-action"> |
|
715 <?php |
|
716 if ( !empty($_GET['action']) && 'edit' == $_GET['action'] && current_user_can('manage_links') ) { ?> |
|
717 <a class="submitdelete deletion" href="<?php echo wp_nonce_url("link.php?action=delete&link_id=$link->link_id", 'delete-bookmark_' . $link->link_id); ?>" onclick="if ( confirm('<?php echo esc_js(sprintf(__("You are about to delete this link '%s'\n 'Cancel' to stop, 'OK' to delete."), $link->link_name )); ?>') ) {return true;}return false;"><?php _e('Delete'); ?></a> |
|
718 <?php } ?> |
|
719 </div> |
|
720 |
|
721 <div id="publishing-action"> |
|
722 <?php if ( !empty($link->link_id) ) { ?> |
|
723 <input name="save" type="submit" class="button-large button-primary" id="publish" accesskey="p" value="<?php esc_attr_e('Update Link') ?>" /> |
|
724 <?php } else { ?> |
|
725 <input name="save" type="submit" class="button-large button-primary" id="publish" accesskey="p" value="<?php esc_attr_e('Add Link') ?>" /> |
|
726 <?php } ?> |
|
727 </div> |
|
728 <div class="clear"></div> |
|
729 </div> |
|
730 <?php do_action('submitlink_box'); ?> |
|
731 <div class="clear"></div> |
|
732 </div> |
|
733 <?php |
|
734 } |
|
735 |
|
736 /** |
|
737 * Display link categories form fields. |
|
738 * |
|
739 * @since 2.6.0 |
|
740 * |
|
741 * @param object $link |
|
742 */ |
|
743 function link_categories_meta_box($link) { |
|
744 ?> |
|
745 <div id="taxonomy-linkcategory" class="categorydiv"> |
|
746 <ul id="category-tabs" class="category-tabs"> |
|
747 <li class="tabs"><a href="#categories-all"><?php _e( 'All Categories' ); ?></a></li> |
|
748 <li class="hide-if-no-js"><a href="#categories-pop"><?php _e( 'Most Used' ); ?></a></li> |
|
749 </ul> |
|
750 |
|
751 <div id="categories-all" class="tabs-panel"> |
|
752 <ul id="categorychecklist" data-wp-lists="list:category" class="categorychecklist form-no-clear"> |
|
753 <?php |
|
754 if ( isset($link->link_id) ) |
|
755 wp_link_category_checklist($link->link_id); |
|
756 else |
|
757 wp_link_category_checklist(); |
|
758 ?> |
|
759 </ul> |
|
760 </div> |
|
761 |
|
762 <div id="categories-pop" class="tabs-panel" style="display: none;"> |
|
763 <ul id="categorychecklist-pop" class="categorychecklist form-no-clear"> |
|
764 <?php wp_popular_terms_checklist('link_category'); ?> |
|
765 </ul> |
|
766 </div> |
|
767 |
|
768 <div id="category-adder" class="wp-hidden-children"> |
|
769 <h4><a id="category-add-toggle" href="#category-add"><?php _e( '+ Add New Category' ); ?></a></h4> |
|
770 <p id="link-category-add" class="wp-hidden-child"> |
|
771 <label class="screen-reader-text" for="newcat"><?php _e( '+ Add New Category' ); ?></label> |
|
772 <input type="text" name="newcat" id="newcat" class="form-required form-input-tip" value="<?php esc_attr_e( 'New category name' ); ?>" aria-required="true" /> |
|
773 <input type="button" id="link-category-add-submit" data-wp-lists="add:categorychecklist:link-category-add" class="button" value="<?php esc_attr_e( 'Add' ); ?>" /> |
|
774 <?php wp_nonce_field( 'add-link-category', '_ajax_nonce', false ); ?> |
|
775 <span id="category-ajax-response"></span> |
|
776 </p> |
|
777 </div> |
|
778 </div> |
|
779 <?php |
|
780 } |
|
781 |
|
782 /** |
|
783 * Display form fields for changing link target. |
|
784 * |
|
785 * @since 2.6.0 |
|
786 * |
|
787 * @param object $link |
|
788 */ |
|
789 function link_target_meta_box($link) { ?> |
|
790 <fieldset><legend class="screen-reader-text"><span><?php _e('Target') ?></span></legend> |
|
791 <p><label for="link_target_blank" class="selectit"> |
|
792 <input id="link_target_blank" type="radio" name="link_target" value="_blank" <?php echo ( isset( $link->link_target ) && ($link->link_target == '_blank') ? 'checked="checked"' : ''); ?> /> |
|
793 <?php _e('<code>_blank</code> — new window or tab.'); ?></label></p> |
|
794 <p><label for="link_target_top" class="selectit"> |
|
795 <input id="link_target_top" type="radio" name="link_target" value="_top" <?php echo ( isset( $link->link_target ) && ($link->link_target == '_top') ? 'checked="checked"' : ''); ?> /> |
|
796 <?php _e('<code>_top</code> — current window or tab, with no frames.'); ?></label></p> |
|
797 <p><label for="link_target_none" class="selectit"> |
|
798 <input id="link_target_none" type="radio" name="link_target" value="" <?php echo ( isset( $link->link_target ) && ($link->link_target == '') ? 'checked="checked"' : ''); ?> /> |
|
799 <?php _e('<code>_none</code> — same window or tab.'); ?></label></p> |
|
800 </fieldset> |
|
801 <p><?php _e('Choose the target frame for your link.'); ?></p> |
|
802 <?php |
|
803 } |
|
804 |
|
805 /** |
|
806 * Display checked checkboxes attribute for xfn microformat options. |
|
807 * |
|
808 * @since 1.0.1 |
|
809 * |
|
810 * @param string $class |
|
811 * @param string $value |
|
812 * @param mixed $deprecated Never used. |
|
813 */ |
|
814 function xfn_check( $class, $value = '', $deprecated = '' ) { |
|
815 global $link; |
|
816 |
|
817 if ( !empty( $deprecated ) ) |
|
818 _deprecated_argument( __FUNCTION__, '0.0' ); // Never implemented |
|
819 |
|
820 $link_rel = isset( $link->link_rel ) ? $link->link_rel : ''; // In PHP 5.3: $link_rel = $link->link_rel ?: ''; |
|
821 $rels = preg_split('/\s+/', $link_rel); |
|
822 |
|
823 if ('' != $value && in_array($value, $rels) ) { |
|
824 echo ' checked="checked"'; |
|
825 } |
|
826 |
|
827 if ('' == $value) { |
|
828 if ('family' == $class && strpos($link_rel, 'child') === false && strpos($link_rel, 'parent') === false && strpos($link_rel, 'sibling') === false && strpos($link_rel, 'spouse') === false && strpos($link_rel, 'kin') === false) echo ' checked="checked"'; |
|
829 if ('friendship' == $class && strpos($link_rel, 'friend') === false && strpos($link_rel, 'acquaintance') === false && strpos($link_rel, 'contact') === false) echo ' checked="checked"'; |
|
830 if ('geographical' == $class && strpos($link_rel, 'co-resident') === false && strpos($link_rel, 'neighbor') === false) echo ' checked="checked"'; |
|
831 if ('identity' == $class && in_array('me', $rels) ) echo ' checked="checked"'; |
|
832 } |
|
833 } |
|
834 |
|
835 /** |
|
836 * Display xfn form fields. |
|
837 * |
|
838 * @since 2.6.0 |
|
839 * |
|
840 * @param object $link |
|
841 */ |
|
842 function link_xfn_meta_box($link) { |
|
843 ?> |
|
844 <table class="links-table" cellspacing="0"> |
|
845 <tr> |
|
846 <th scope="row"><label for="link_rel"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('rel:') ?></label></th> |
|
847 <td><input type="text" name="link_rel" id="link_rel" value="<?php echo ( isset( $link->link_rel ) ? esc_attr($link->link_rel) : ''); ?>" /></td> |
|
848 </tr> |
|
849 <tr> |
|
850 <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('identity') ?></th> |
|
851 <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('identity') ?></span></legend> |
|
852 <label for="me"> |
|
853 <input type="checkbox" name="identity" value="me" id="me" <?php xfn_check('identity', 'me'); ?> /> |
|
854 <?php _e('another web address of mine') ?></label> |
|
855 </fieldset></td> |
|
856 </tr> |
|
857 <tr> |
|
858 <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('friendship') ?></th> |
|
859 <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('friendship') ?></span></legend> |
|
860 <label for="contact"> |
|
861 <input class="valinp" type="radio" name="friendship" value="contact" id="contact" <?php xfn_check('friendship', 'contact'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('contact') ?> |
|
862 </label> |
|
863 <label for="acquaintance"> |
|
864 <input class="valinp" type="radio" name="friendship" value="acquaintance" id="acquaintance" <?php xfn_check('friendship', 'acquaintance'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('acquaintance') ?> |
|
865 </label> |
|
866 <label for="friend"> |
|
867 <input class="valinp" type="radio" name="friendship" value="friend" id="friend" <?php xfn_check('friendship', 'friend'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('friend') ?> |
|
868 </label> |
|
869 <label for="friendship"> |
|
870 <input name="friendship" type="radio" class="valinp" value="" id="friendship" <?php xfn_check('friendship'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('none') ?> |
|
871 </label> |
|
872 </fieldset></td> |
|
873 </tr> |
|
874 <tr> |
|
875 <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('physical') ?> </th> |
|
876 <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('physical') ?></span></legend> |
|
877 <label for="met"> |
|
878 <input class="valinp" type="checkbox" name="physical" value="met" id="met" <?php xfn_check('physical', 'met'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('met') ?> |
|
879 </label> |
|
880 </fieldset></td> |
|
881 </tr> |
|
882 <tr> |
|
883 <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('professional') ?> </th> |
|
884 <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('professional') ?></span></legend> |
|
885 <label for="co-worker"> |
|
886 <input class="valinp" type="checkbox" name="professional" value="co-worker" id="co-worker" <?php xfn_check('professional', 'co-worker'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('co-worker') ?> |
|
887 </label> |
|
888 <label for="colleague"> |
|
889 <input class="valinp" type="checkbox" name="professional" value="colleague" id="colleague" <?php xfn_check('professional', 'colleague'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('colleague') ?> |
|
890 </label> |
|
891 </fieldset></td> |
|
892 </tr> |
|
893 <tr> |
|
894 <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('geographical') ?></th> |
|
895 <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('geographical') ?> </span></legend> |
|
896 <label for="co-resident"> |
|
897 <input class="valinp" type="radio" name="geographical" value="co-resident" id="co-resident" <?php xfn_check('geographical', 'co-resident'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('co-resident') ?> |
|
898 </label> |
|
899 <label for="neighbor"> |
|
900 <input class="valinp" type="radio" name="geographical" value="neighbor" id="neighbor" <?php xfn_check('geographical', 'neighbor'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('neighbor') ?> |
|
901 </label> |
|
902 <label for="geographical"> |
|
903 <input class="valinp" type="radio" name="geographical" value="" id="geographical" <?php xfn_check('geographical'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('none') ?> |
|
904 </label> |
|
905 </fieldset></td> |
|
906 </tr> |
|
907 <tr> |
|
908 <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('family') ?></th> |
|
909 <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('family') ?> </span></legend> |
|
910 <label for="child"> |
|
911 <input class="valinp" type="radio" name="family" value="child" id="child" <?php xfn_check('family', 'child'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('child') ?> |
|
912 </label> |
|
913 <label for="kin"> |
|
914 <input class="valinp" type="radio" name="family" value="kin" id="kin" <?php xfn_check('family', 'kin'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('kin') ?> |
|
915 </label> |
|
916 <label for="parent"> |
|
917 <input class="valinp" type="radio" name="family" value="parent" id="parent" <?php xfn_check('family', 'parent'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('parent') ?> |
|
918 </label> |
|
919 <label for="sibling"> |
|
920 <input class="valinp" type="radio" name="family" value="sibling" id="sibling" <?php xfn_check('family', 'sibling'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('sibling') ?> |
|
921 </label> |
|
922 <label for="spouse"> |
|
923 <input class="valinp" type="radio" name="family" value="spouse" id="spouse" <?php xfn_check('family', 'spouse'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('spouse') ?> |
|
924 </label> |
|
925 <label for="family"> |
|
926 <input class="valinp" type="radio" name="family" value="" id="family" <?php xfn_check('family'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('none') ?> |
|
927 </label> |
|
928 </fieldset></td> |
|
929 </tr> |
|
930 <tr> |
|
931 <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('romantic') ?></th> |
|
932 <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('romantic') ?> </span></legend> |
|
933 <label for="muse"> |
|
934 <input class="valinp" type="checkbox" name="romantic" value="muse" id="muse" <?php xfn_check('romantic', 'muse'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('muse') ?> |
|
935 </label> |
|
936 <label for="crush"> |
|
937 <input class="valinp" type="checkbox" name="romantic" value="crush" id="crush" <?php xfn_check('romantic', 'crush'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('crush') ?> |
|
938 </label> |
|
939 <label for="date"> |
|
940 <input class="valinp" type="checkbox" name="romantic" value="date" id="date" <?php xfn_check('romantic', 'date'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('date') ?> |
|
941 </label> |
|
942 <label for="romantic"> |
|
943 <input class="valinp" type="checkbox" name="romantic" value="sweetheart" id="romantic" <?php xfn_check('romantic', 'sweetheart'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('sweetheart') ?> |
|
944 </label> |
|
945 </fieldset></td> |
|
946 </tr> |
|
947 |
|
948 </table> |
|
949 <p><?php _e('If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out <a href="http://gmpg.org/xfn/">XFN</a>.'); ?></p> |
|
950 <?php |
|
951 } |
|
952 |
|
953 /** |
|
954 * Display advanced link options form fields. |
|
955 * |
|
956 * @since 2.6.0 |
|
957 * |
|
958 * @param object $link |
|
959 */ |
|
960 function link_advanced_meta_box($link) { |
|
961 ?> |
|
962 <table class="links-table" cellpadding="0"> |
|
963 <tr> |
|
964 <th scope="row"><label for="link_image"><?php _e('Image Address') ?></label></th> |
|
965 <td><input type="text" name="link_image" class="code" id="link_image" maxlength="255" value="<?php echo ( isset( $link->link_image ) ? esc_attr($link->link_image) : ''); ?>" /></td> |
|
966 </tr> |
|
967 <tr> |
|
968 <th scope="row"><label for="rss_uri"><?php _e('RSS Address') ?></label></th> |
|
969 <td><input name="link_rss" class="code" type="text" id="rss_uri" maxlength="255" value="<?php echo ( isset( $link->link_rss ) ? esc_attr($link->link_rss) : ''); ?>" /></td> |
|
970 </tr> |
|
971 <tr> |
|
972 <th scope="row"><label for="link_notes"><?php _e('Notes') ?></label></th> |
|
973 <td><textarea name="link_notes" id="link_notes" rows="10"><?php echo ( isset( $link->link_notes ) ? $link->link_notes : ''); // textarea_escaped ?></textarea></td> |
|
974 </tr> |
|
975 <tr> |
|
976 <th scope="row"><label for="link_rating"><?php _e('Rating') ?></label></th> |
|
977 <td><select name="link_rating" id="link_rating" size="1"> |
|
978 <?php |
|
979 for ( $r = 0; $r <= 10; $r++ ) { |
|
980 echo '<option value="' . $r . '"'; |
|
981 if ( isset($link->link_rating) && $link->link_rating == $r ) |
|
982 echo ' selected="selected"'; |
|
983 echo('>' . $r . '</option>'); |
|
984 } |
|
985 ?></select> <?php _e('(Leave at 0 for no rating.)') ?> |
|
986 </td> |
|
987 </tr> |
|
988 </table> |
|
989 <?php |
|
990 } |
|
991 |
|
992 /** |
|
993 * Display post thumbnail meta box. |
|
994 * |
|
995 * @since 2.9.0 |
|
996 */ |
|
997 function post_thumbnail_meta_box( $post ) { |
|
998 $thumbnail_id = get_post_meta( $post->ID, '_thumbnail_id', true ); |
|
999 echo _wp_post_thumbnail_html( $thumbnail_id, $post->ID ); |
|
1000 } |