| [ Index ] |
PHP Cross Reference of WordPress 2.7.1 |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Post advanced form for inclusion in the administration panels. 4 * 5 * @package WordPress 6 * @subpackage Administration 7 */ 8 9 /** 10 * Post ID global 11 * @name $post_ID 12 * @var int 13 */ 14 if ( ! isset( $post_ID ) ) 15 $post_ID = 0; 16 else 17 $post_ID = (int) $post_ID; 18 19 $action = isset($action) ? $action : ''; 20 if ( isset($_GET['message']) ) 21 $_GET['message'] = absint( $_GET['message'] ); 22 $messages[1] = sprintf( __( 'Post updated. Continue editing below or <a href="%s">go back</a>.' ), attribute_escape( stripslashes( ( isset( $_GET['_wp_original_http_referer'] ) ? $_GET['_wp_original_http_referer'] : '') ) ) ); 23 $messages[2] = __('Custom field updated.'); 24 $messages[3] = __('Custom field deleted.'); 25 $messages[4] = __('Post updated.'); 26 $messages[6] = sprintf(__('Post published. <a href="%s">View post</a>'), get_permalink($post_ID)); 27 $messages[7] = __('Post saved.'); 28 $messages[8] = sprintf(__('Post submitted. <a href="%s">Preview post</a>'), add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ); 29 30 if ( isset($_GET['revision']) ) 31 $messages[5] = sprintf( __('Post restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ); 32 33 $notice = false; 34 $notices[1] = __( 'There is an autosave of this post that is more recent than the version below. <a href="%s">View the autosave</a>.' ); 35 36 if ( 0 == $post_ID ) { 37 $form_action = 'post'; 38 $temp_ID = -1 * time(); // don't change this formula without looking at wp_write_post() 39 $form_extra = "<input type='hidden' id='post_ID' name='temp_ID' value='$temp_ID' />"; 40 $autosave = false; 41 } else { 42 $form_action = 'editpost'; 43 $form_extra = "<input type='hidden' id='post_ID' name='post_ID' value='$post_ID' />"; 44 $autosave = wp_get_post_autosave( $post_ID ); 45 46 // Detect if there exists an autosave newer than the post and if that autosave is different than the post 47 if ( $autosave && mysql2date( 'U', $autosave->post_modified_gmt ) > mysql2date( 'U', $post->post_modified_gmt ) ) { 48 foreach ( _wp_post_revision_fields() as $autosave_field => $_autosave_field ) { 49 if ( normalize_whitespace( $autosave->$autosave_field ) != normalize_whitespace( $post->$autosave_field ) ) { 50 $notice = sprintf( $notices[1], get_edit_post_link( $autosave->ID ) ); 51 break; 52 } 53 } 54 unset($autosave_field, $_autosave_field); 55 } 56 } 57 58 // All meta boxes should be defined and added before the first do_meta_boxes() call (or potentially during the do_meta_boxes action). 59 60 /** 61 * Display post submit form fields. 62 * 63 * @since 2.7.0 64 * 65 * @param object $post 66 */ 67 function post_submit_meta_box($post) { 68 global $action; 69 70 $can_publish = current_user_can('publish_posts'); 71 ?> 72 <div class="submitbox" id="submitpost"> 73 74 <div id="minor-publishing"> 75 76 <?php // Hidden submit button early on so that the browser chooses the right button when form is submitted with Return key ?> 77 <div style="display:none;"> 78 <input type="submit" name="save" value="<?php echo attribute_escape( __('Save') ); ?>" /> 79 </div> 80 81 <div id="minor-publishing-actions"> 82 <div id="save-action"> 83 <?php if ( 'publish' != $post->post_status && 'future' != $post->post_status && 'pending' != $post->post_status ) { ?> 84 <input <?php if ( 'private' == $post->post_status ) { ?>style="display:none"<?php } ?> type="submit" name="save" id="save-post" value="<?php echo attribute_escape( __('Save Draft') ); ?>" tabindex="4" class="button button-highlighted" /> 85 <?php } elseif ( 'pending' == $post->post_status && $can_publish ) { ?> 86 <input type="submit" name="save" id="save-post" value="<?php echo attribute_escape( __('Save as Pending') ); ?>" tabindex="4" class="button button-highlighted" /> 87 <?php } ?> 88 </div> 89 90 <div id="preview-action"> 91 <?php $preview_link = 'publish' == $post->post_status ? clean_url(get_permalink($post->ID)) : clean_url(apply_filters('preview_post_link', add_query_arg('preview', 'true', get_permalink($post->ID)))); ?> 92 93 <a class="preview button" href="<?php echo $preview_link; ?>" target="wp-preview" id="post-preview" tabindex="4"><?php _e('Preview'); ?></a> 94 <input type="hidden" name="wp-preview" id="wp-preview" value="" /> 95 </div> 96 97 <div class="clear"></div> 98 </div><?php // /minor-publishing-actions ?> 99 100 <div id="misc-publishing-actions"> 101 102 <div class="misc-pub-section<?php if ( !$can_publish ) { echo ' misc-pub-section-last'; } ?>"><label for="post_status"><?php _e('Status:') ?></label> 103 <b><span id="post-status-display"> 104 <?php 105 switch ( $post->post_status ) { 106 case 'private': 107 _e('Privately Published'); 108 break; 109 case 'publish': 110 _e('Published'); 111 break; 112 case 'future': 113 _e('Scheduled'); 114 break; 115 case 'pending': 116 _e('Pending Review'); 117 break; 118 case 'draft': 119 _e('Draft'); 120 break; 121 } 122 ?> 123 </span></b> 124 <?php if ( 'publish' == $post->post_status || 'private' == $post->post_status || $can_publish ) { ?> 125 <a href="#post_status" <?php if ( 'private' == $post->post_status ) { ?>style="display:none;" <?php } ?>class="edit-post-status hide-if-no-js" tabindex='4'><?php _e('Edit') ?></a> 126 127 <div id="post-status-select" class="hide-if-js"> 128 <input type="hidden" name="hidden_post_status" id="hidden_post_status" value="<?php echo $post->post_status; ?>" /> 129 <select name='post_status' id='post_status' tabindex='4'> 130 <?php if ( 'publish' == $post->post_status ) : ?> 131 <option<?php selected( $post->post_status, 'publish' ); ?> value='publish'><?php _e('Published') ?></option> 132 <?php elseif ( 'private' == $post->post_status ) : ?> 133 <option<?php selected( $post->post_status, 'private' ); ?> value='publish'><?php _e('Privately Published') ?></option> 134 <?php elseif ( 'future' == $post->post_status ) : ?> 135 <option<?php selected( $post->post_status, 'future' ); ?> value='future'><?php _e('Scheduled') ?></option> 136 <?php endif; ?> 137 <option<?php selected( $post->post_status, 'pending' ); ?> value='pending'><?php _e('Pending Review') ?></option> 138 <option<?php selected( $post->post_status, 'draft' ); ?> value='draft'><?php _e('Draft') ?></option> 139 </select> 140 <a href="#post_status" class="save-post-status hide-if-no-js button"><?php _e('OK'); ?></a> 141 <a href="#post_status" class="cancel-post-status hide-if-no-js"><?php _e('Cancel'); ?></a> 142 </div> 143 144 <?php } ?> 145 </div><?php // /misc-pub-section ?> 146 147 <div class="misc-pub-section " id="visibility"> 148 <?php _e('Visibility:'); ?> <b><span id="post-visibility-display"><?php 149 150 if ( 'private' == $post->post_status ) { 151 $post->post_password = ''; 152 $visibility = 'private'; 153 $visibility_trans = __('Private'); 154 } elseif ( !empty( $post->post_password ) ) { 155 $visibility = 'password'; 156 $visibility_trans = __('Password protected'); 157 } elseif ( is_sticky( $post->ID ) ) { 158 $visibility = 'public'; 159 $visibility_trans = __('Public, Sticky'); 160 } else { 161 $visibility = 'public'; 162 $visibility_trans = __('Public'); 163 } 164 165 ?><?php echo wp_specialchars( $visibility_trans ); ?></span></b> <?php if ( $can_publish ) { ?> <a href="#visibility" class="edit-visibility hide-if-no-js"><?php _e('Edit'); ?></a> 166 167 <div id="post-visibility-select" class="hide-if-js"> 168 <input type="hidden" name="hidden_post_password" id="hidden-post-password" value="<?php echo attribute_escape($post->post_password); ?>" /> 169 <input type="checkbox" style="display:none" name="hidden_post_sticky" id="hidden-post-sticky" value="sticky" <?php checked(is_sticky($post->ID), true); ?> /> 170 <input type="hidden" name="hidden_post_visibility" id="hidden-post-visibility" value="<?php echo attribute_escape( $visibility ); ?>" /> 171 172 173 <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 /> 174 <span id="sticky-span"><input id="sticky" name="sticky" type="checkbox" value="sticky" <?php checked(is_sticky($post->ID), true); ?> tabindex="4" /> <label for="sticky" class="selectit"><?php _e('Stick this post to the front page') ?></label><br /></span> 175 <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 /> 176 <span id="password-span"><label for="post_password"><?php _e('Password:'); ?></label> <input type="text" name="post_password" id="post_password" value="<?php echo attribute_escape($post->post_password); ?>" /><br /></span> 177 <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 /> 178 179 <p> 180 <a href="#visibility" class="save-post-visibility hide-if-no-js button"><?php _e('OK'); ?></a> 181 <a href="#visibility" class="cancel-post-visibility hide-if-no-js"><?php _e('Cancel'); ?></a> 182 </p> 183 </div> 184 <?php } ?> 185 186 </div><?php // /misc-pub-section ?> 187 188 189 <?php 190 $datef = _c( 'M j, Y @ G:i|Publish box date format'); 191 if ( 0 != $post->ID ) { 192 if ( 'future' == $post->post_status ) { // scheduled for publishing at a future date 193 $stamp = __('Scheduled for: <b>%1$s</b>'); 194 } else if ( 'publish' == $post->post_status || 'private' == $post->post_status ) { // already published 195 $stamp = __('Published on: <b>%1$s</b>'); 196 } else if ( '0000-00-00 00:00:00' == $post->post_date_gmt ) { // draft, 1 or more saves, no date specified 197 $stamp = __('Publish <b>immediately</b>'); 198 } else if ( time() < strtotime( $post->post_date_gmt . ' +0000' ) ) { // draft, 1 or more saves, future date specified 199 $stamp = __('Schedule for: <b>%1$s</b>'); 200 } else { // draft, 1 or more saves, date specified 201 $stamp = __('Publish on: <b>%1$s</b>'); 202 } 203 $date = date_i18n( $datef, strtotime( $post->post_date ) ); 204 } else { // draft (no saves, and thus no date specified) 205 $stamp = __('Publish <b>immediately</b>'); 206 $date = date_i18n( $datef, strtotime( current_time('mysql') ) ); 207 } 208 ?> 209 <?php if ( $can_publish ) : // Contributors don't get to choose the date of publish ?> 210 <div class="misc-pub-section curtime misc-pub-section-last"> 211 <span id="timestamp"> 212 <?php printf($stamp, $date); ?></span> 213 <a href="#edit_timestamp" class="edit-timestamp hide-if-no-js" tabindex='4'><?php _e('Edit') ?></a> 214 <div id="timestampdiv" class="hide-if-js"><?php touch_time(($action == 'edit'),1,4); ?></div> 215 </div><?php // /misc-pub-section ?> 216 <?php endif; ?> 217 218 </div> 219 <div class="clear"></div> 220 </div> 221 222 <div id="major-publishing-actions"> 223 <?php do_action('post_submitbox_start'); ?> 224 <div id="delete-action"> 225 <?php 226 if ( ( 'edit' == $action ) && current_user_can('delete_post', $post->ID) ) { ?> 227 <a class="submitdelete deletion" href="<?php echo wp_nonce_url("post.php?action=delete&post=$post->ID", 'delete-post_' . $post->ID); ?>" onclick="if ( confirm('<?php echo js_escape(sprintf( ('draft' == $post->post_status) ? __("You are about to delete this draft '%s'\n 'Cancel' to stop, 'OK' to delete.") : __("You are about to delete this post '%s'\n 'Cancel' to stop, 'OK' to delete."), $post->post_title )); ?>') ) {return true;}return false;"><?php _e('Delete'); ?></a> 228 <?php } ?> 229 </div> 230 231 <div id="publishing-action"> 232 <?php 233 if ( !in_array( $post->post_status, array('publish', 'future', 'private') ) || 0 == $post->ID ) { ?> 234 <?php if ( current_user_can('publish_posts') ) : ?> 235 <?php if ( !empty($post->post_date_gmt) && time() < strtotime( $post->post_date_gmt . ' +0000' ) ) : ?> 236 <input name="original_publish" type="hidden" id="original_publish" value="<?php _e('Schedule') ?>" /> 237 <input name="publish" type="submit" class="button-primary" id="publish" tabindex="5" accesskey="p" value="<?php _e('Schedule') ?>" /> 238 <?php else : ?> 239 <input name="original_publish" type="hidden" id="original_publish" value="<?php _e('Publish') ?>" /> 240 <input name="publish" type="submit" class="button-primary" id="publish" tabindex="5" accesskey="p" value="<?php _e('Publish') ?>" /> 241 <?php endif; ?> 242 <?php else : ?> 243 <input name="original_publish" type="hidden" id="original_publish" value="<?php _e('Submit for Review') ?>" /> 244 <input name="publish" type="submit" class="button-primary" id="publish" tabindex="5" accesskey="p" value="<?php _e('Submit for Review') ?>" /> 245 <?php endif; ?> 246 <?php } else { ?> 247 <input name="original_publish" type="hidden" id="original_publish" value="<?php _e('Update Post') ?>" /> 248 <input name="save" type="submit" class="button-primary" id="publish" tabindex="5" accesskey="p" value="<?php _e('Update Post') ?>" /> 249 <?php } ?> 250 </div> 251 <div class="clear"></div> 252 </div> 253 </div> 254 255 <?php 256 } 257 add_meta_box('submitdiv', __('Publish'), 'post_submit_meta_box', 'post', 'side', 'core'); 258 259 /** 260 * Display post tags form fields. 261 * 262 * @since 2.6.0 263 * 264 * @param object $post 265 */ 266 function post_tags_meta_box($post) { 267 ?> 268 <p id="jaxtag"><label class="hidden" for="newtag"><?php _e('Tags'); ?></label><input type="text" name="tags_input" class="tags-input" id="tags-input" size="40" tabindex="3" value="<?php echo get_tags_to_edit( $post->ID ); ?>" /></p> 269 <div id="tagchecklist"></div> 270 <p id="tagcloud-link" class="hide-if-no-js"><a href='#'><?php _e( 'Choose from the most popular tags' ); ?></a></p> 271 <?php 272 } 273 add_meta_box('tagsdiv', __('Tags'), 'post_tags_meta_box', 'post', 'side', 'core'); 274 275 /** 276 * Display post categories form fields. 277 * 278 * @since 2.6.0 279 * 280 * @param object $post 281 */ 282 function post_categories_meta_box($post) { 283 ?> 284 <ul id="category-tabs"> 285 <li class="ui-tabs-selected"><a href="#categories-all" tabindex="3"><?php _e( 'All Categories' ); ?></a></li> 286 <li class="hide-if-no-js"><a href="#categories-pop" tabindex="3"><?php _e( 'Most Used' ); ?></a></li> 287 </ul> 288 289 <div id="categories-pop" class="ui-tabs-panel" style="display: none;"> 290 <ul id="categorychecklist-pop" class="categorychecklist form-no-clear" > 291 <?php $popular_ids = wp_popular_terms_checklist('category'); ?> 292 </ul> 293 </div> 294 295 <div id="categories-all" class="ui-tabs-panel"> 296 <ul id="categorychecklist" class="list:category categorychecklist form-no-clear"> 297 <?php wp_category_checklist($post->ID, false, false, $popular_ids) ?> 298 </ul> 299 </div> 300 301 <?php if ( current_user_can('manage_categories') ) : ?> 302 <div id="category-adder" class="wp-hidden-children"> 303 <h4><a id="category-add-toggle" href="#category-add" class="hide-if-no-js" tabindex="3"><?php _e( '+ Add New Category' ); ?></a></h4> 304 <p id="category-add" class="wp-hidden-child"> 305 <label class="hidden" for="newcat"><?php _e( 'Add New Category' ); ?></label><input type="text" name="newcat" id="newcat" class="form-required form-input-tip" value="<?php _e( 'New category name' ); ?>" tabindex="3" aria-required="true"/> 306 <label class="hidden" for="newcat_parent"><?php _e('Parent category'); ?>:</label><?php wp_dropdown_categories( array( 'hide_empty' => 0, 'name' => 'newcat_parent', 'orderby' => 'name', 'hierarchical' => 1, 'show_option_none' => __('Parent category'), 'tab_index' => 3 ) ); ?> 307 <input type="button" id="category-add-sumbit" class="add:categorychecklist:category-add button" value="<?php _e( 'Add' ); ?>" tabindex="3" /> 308 <?php wp_nonce_field( 'add-category', '_ajax_nonce', false ); ?> 309 <span id="category-ajax-response"></span> 310 </p> 311 </div> 312 <?php 313 endif; 314 315 } 316 add_meta_box('categorydiv', __('Categories'), 'post_categories_meta_box', 'post', 'side', 'core'); 317 318 /** 319 * Display post password form fields. 320 * 321 * @since 2.6.0 322 * 323 * @param object $post 324 */ 325 function post_password_meta_box($post) { 326 ?> 327 <p> 328 <label for="post_status_private" class="selectit"><input id="post_status_private" name="post_status" type="checkbox" value="private" <?php checked($post->post_status, 'private'); ?> tabindex="4" /> <?php _e('Keep this post private') ?></label> 329 </p> 330 <h4><?php _e( 'Post Password' ); ?></h4> 331 <p><label class="hidden" for="post_password"><?php _e('Password Protect This Post') ?></label><input name="post_password" type="text" size="25" id="post_password" value="<?php the_post_password(); ?>" /></p> 332 <p><?php _e('Setting a password will require people who visit your blog to enter the above password to view this post and its comments.'); ?></p> 333 <?php 334 } 335 // add_meta_box('passworddiv', __('Privacy Options'), 'post_password_meta_box', 'post', 'side', 'core'); 336 337 /** 338 * Display post excerpt form fields. 339 * 340 * @since 2.6.0 341 * 342 * @param object $post 343 */ 344 function post_excerpt_meta_box($post) { 345 ?> 346 <label class="hidden" for="excerpt"><?php _e('Excerpt') ?></label><textarea rows="1" cols="40" name="excerpt" tabindex="6" id="excerpt"><?php echo $post->post_excerpt ?></textarea> 347 <p><?php _e('Excerpts are optional hand-crafted summaries of your content. You can <a href="http://codex.wordpress.org/Template_Tags/the_excerpt" target="_blank">use them in your template</a>'); ?></p> 348 <?php 349 } 350 add_meta_box('postexcerpt', __('Excerpt'), 'post_excerpt_meta_box', 'post', 'normal', 'core'); 351 352 /** 353 * Display trackback links form fields. 354 * 355 * @since 2.6.0 356 * 357 * @param object $post 358 */ 359 function post_trackback_meta_box($post) { 360 $form_trackback = '<input type="text" name="trackback_url" id="trackback_url" tabindex="7" value="'. attribute_escape( str_replace("\n", ' ', $post->to_ping) ) .'" />'; 361 if ('' != $post->pinged) { 362 $pings = '<p>'. __('Already pinged:') . '</p><ul>'; 363 $already_pinged = explode("\n", trim($post->pinged)); 364 foreach ($already_pinged as $pinged_url) { 365 $pings .= "\n\t<li>" . wp_specialchars($pinged_url) . "</li>"; 366 } 367 $pings .= '</ul>'; 368 } 369 370 ?> 371 <p><label for="trackback_url"><?php _e('Send trackbacks to:'); ?></label> <?php echo $form_trackback; ?><br /> (<?php _e('Separate multiple URLs with spaces'); ?>)</p> 372 <p><?php _e('Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress blogs 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> 373 <?php 374 if ( ! empty($pings) ) 375 echo $pings; 376 } 377 add_meta_box('trackbacksdiv', __('Send Trackbacks'), 'post_trackback_meta_box', 'post', 'normal', 'core'); 378 379 /** 380 * Display custom fields for the post form fields. 381 * 382 * @since 2.6.0 383 * 384 * @param object $post 385 */ 386 function post_custom_meta_box($post) { 387 ?> 388 <div id="postcustomstuff"> 389 <div id="ajax-response"></div> 390 <?php 391 $metadata = has_meta($post->ID); 392 list_meta($metadata); 393 meta_form(); 394 ?> 395 </div> 396 <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> 397 <?php 398 } 399 add_meta_box('postcustom', __('Custom Fields'), 'post_custom_meta_box', 'post', 'normal', 'core'); 400 401 do_action('dbx_post_advanced'); 402 403 /** 404 * Display comment status for post form fields. 405 * 406 * @since 2.6.0 407 * 408 * @param object $post 409 */ 410 function post_comment_status_meta_box($post) { 411 global $wpdb, $post_ID; 412 ?> 413 <input name="advanced_view" type="hidden" value="1" /> 414 <p class="meta-options"> 415 <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 on this post') ?></label><br /> 416 <label for="ping_status" class="selectit"><input name="ping_status" type="checkbox" id="ping_status" value="open" <?php checked($post->ping_status, 'open'); ?> /> <?php _e('Allow <a href="http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" target="_blank">trackbacks and pingbacks</a> on this post') ?></label> 417 </p> 418 <?php 419 $total = $wpdb->get_var($wpdb->prepare("SELECT count(1) FROM $wpdb->comments WHERE comment_post_ID = '%d' AND ( comment_approved = '0' OR comment_approved = '1')", $post_ID)); 420 421 if ( !$post_ID || $post_ID < 0 || 1 > $total ) 422 return; 423 424 wp_nonce_field( 'get-comments', 'add_comment_nonce', false ); 425 ?> 426 427 <table class="widefat comments-box fixed" cellspacing="0" style="display:none;"> 428 <thead> 429 <tr> 430 <th scope="col" class="column-author"><?php _e('Author') ?></th> 431 <th scope="col" class="column-comment"><?php echo _c('Comment|noun') ?></th> 432 </tr> 433 </thead> 434 <tbody id="the-comment-list" class="list:comment"> 435 </tbody> 436 </table> 437 <p class="hide-if-no-js"><a href="#commentstatusdiv" id="show-comments" onclick="commentsBox.get(<?php echo $total; ?>);return false;"><?php _e('Show comments'); ?></a> <img class="waiting" style="display:none;" src="images/loading.gif" alt="" /></p> 438 <?php 439 $hidden = get_hidden_meta_boxes('post'); 440 if ( ! in_array('commentstatusdiv', $hidden) ) { ?> 441 <script type="text/javascript">commentsBox.get(<?php echo $total; ?>, 10);</script> 442 <?php 443 } 444 } 445 add_meta_box('commentstatusdiv', __('Discussion'), 'post_comment_status_meta_box', 'post', 'normal', 'core'); 446 447 /** 448 * Display post slug form fields. 449 * 450 * @since 2.6.0 451 * 452 * @param object $post 453 */ 454 function post_slug_meta_box($post) { 455 ?> 456 <label class="hidden" for="post_name"><?php _e('Post Slug') ?></label><input name="post_name" type="text" size="13" id="post_name" value="<?php echo attribute_escape( $post->post_name ); ?>" /> 457 <?php 458 } 459 if ( !( 'pending' == $post->post_status && !current_user_can( 'publish_posts' ) ) ) 460 add_meta_box('slugdiv', __('Post Slug'), 'post_slug_meta_box', 'post', 'normal', 'core'); 461 462 $authors = get_editable_user_ids( $current_user->id ); // TODO: ROLE SYSTEM 463 if ( $post->post_author && !in_array($post->post_author, $authors) ) 464 $authors[] = $post->post_author; 465 if ( $authors && count( $authors ) > 1 ) : 466 /** 467 * Display form field with list of authors. 468 * 469 * @since 2.6.0 470 * 471 * @param object $post 472 */ 473 function post_author_meta_box($post) { 474 global $current_user, $user_ID; 475 $authors = get_editable_user_ids( $current_user->id ); // TODO: ROLE SYSTEM 476 if ( $post->post_author && !in_array($post->post_author, $authors) ) 477 $authors[] = $post->post_author; 478 ?> 479 <label class="hidden" for="post_author_override"><?php _e('Post Author'); ?></label><?php wp_dropdown_users( array('include' => $authors, 'name' => 'post_author_override', 'selected' => empty($post->ID) ? $user_ID : $post->post_author) ); ?> 480 <?php 481 } 482 add_meta_box('authordiv', __('Post Author'), 'post_author_meta_box', 'post', 'normal', 'core'); 483 endif; 484 485 if ( 0 < $post_ID && wp_get_post_revisions( $post_ID ) ) : 486 /** 487 * Display list of post revisions. 488 * 489 * @since 2.6.0 490 * 491 * @param object $post 492 */ 493 function post_revisions_meta_box($post) { 494 wp_list_post_revisions(); 495 } 496 add_meta_box('revisionsdiv', __('Post Revisions'), 'post_revisions_meta_box', 'post', 'normal', 'core'); 497 endif; 498 499 do_action('do_meta_boxes', 'post', 'normal', $post); 500 do_action('do_meta_boxes', 'post', 'advanced', $post); 501 do_action('do_meta_boxes', 'post', 'side', $post); 502 503 require_once ('admin-header.php'); 504 505 ?> 506 507 <?php if ( (isset($mode) && 'bookmarklet' == $mode) || isset($_GET['popupurl']) ): ?> 508 <input type="hidden" name="mode" value="bookmarklet" /> 509 <?php endif; ?> 510 511 <div class="wrap"> 512 <?php screen_icon(); ?> 513 <h2><?php echo wp_specialchars( $title ); ?></h2> 514 <?php if ( $notice ) : ?> 515 <div id="notice" class="error"><p><?php echo $notice ?></p></div> 516 <?php endif; ?> 517 <?php if (isset($_GET['message'])) : ?> 518 <div id="message" class="updated fade"><p><?php echo $messages[$_GET['message']]; ?></p></div> 519 <?php endif; ?> 520 <form name="post" action="post.php" method="post" id="post"> 521 <?php 522 523 if ( 0 == $post_ID) 524 wp_nonce_field('add-post'); 525 else 526 wp_nonce_field('update-post_' . $post_ID); 527 528 ?> 529 530 <input type="hidden" id="user-id" name="user_ID" value="<?php echo (int) $user_ID ?>" /> 531 <input type="hidden" id="hiddenaction" name="action" value="<?php echo $form_action ?>" /> 532 <input type="hidden" id="originalaction" name="originalaction" value="<?php echo $form_action ?>" /> 533 <input type="hidden" id="post_author" name="post_author" value="<?php echo attribute_escape( $post->post_author ); ?>" /> 534 <input type="hidden" id="post_type" name="post_type" value="<?php echo $post->post_type ?>" /> 535 <input type="hidden" id="original_post_status" name="original_post_status" value="<?php echo $post->post_status ?>" /> 536 <input name="referredby" type="hidden" id="referredby" value="<?php echo clean_url(stripslashes(wp_get_referer())); ?>" /> 537 <?php if ( 'draft' != $post->post_status ) wp_original_referer_field(true, 'previous'); ?> 538 539 <?php echo $form_extra ?> 540 541 <div id="poststuff" class="metabox-holder"> 542 543 <div id="side-info-column" class="inner-sidebar"> 544 545 <?php do_action('submitpost_box'); ?> 546 547 <?php $side_meta_boxes = do_meta_boxes('post', 'side', $post); ?> 548 </div> 549 550 <div id="post-body" class="<?php echo $side_meta_boxes ? 'has-sidebar' : ''; ?>"> 551 <div id="post-body-content" class="has-sidebar-content"> 552 <div id="titlediv"> 553 <div id="titlewrap"> 554 <input type="text" name="post_title" size="30" tabindex="1" value="<?php echo attribute_escape($post->post_title); ?>" id="title" autocomplete="off" /> 555 </div> 556 <div class="inside"> 557 <?php $sample_permalink_html = get_sample_permalink_html($post->ID); ?> 558 <?php if ( !( 'pending' == $post->post_status && !current_user_can( 'publish_posts' ) ) ) { ?> 559 <div id="edit-slug-box"> 560 <?php if ( ! empty($post->ID) && ! empty($sample_permalink_html) ) : 561 echo $sample_permalink_html; 562 endif; ?> 563 </div> 564 <?php } ?> 565 </div> 566 </div> 567 568 <div id="<?php echo user_can_richedit() ? 'postdivrich' : 'postdiv'; ?>" class="postarea"> 569 570 <?php the_editor($post->post_content); ?> 571 572 <div id="post-status-info"> 573 <span id="wp-word-count" class="alignleft"></span> 574 <span class="alignright"> 575 <span id="autosave"> </span> 576 <?php 577 if ( $post_ID ) { 578 echo '<span id="last-edit">'; 579 if ( $last_id = get_post_meta($post_ID, '_edit_last', true) ) { 580 $last_user = get_userdata($last_id); 581 printf(__('Last edited by %1$s on %2$s at %3$s'), wp_specialchars( $last_user->display_name ), mysql2date(get_option('date_format'), $post->post_modified), mysql2date(get_option('time_format'), $post->post_modified)); 582 } else { 583 printf(__('Last edited on %1$s at %2$s'), mysql2date(get_option('date_format'), $post->post_modified), mysql2date(get_option('time_format'), $post->post_modified)); 584 } 585 echo '</span>'; 586 } 587 ?> 588 </span> 589 <br class="clear" /> 590 </div> 591 592 593 <?php wp_nonce_field( 'autosave', 'autosavenonce', false ); ?> 594 <?php wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); ?> 595 <?php wp_nonce_field( 'getpermalink', 'getpermalinknonce', false ); ?> 596 <?php wp_nonce_field( 'samplepermalink', 'samplepermalinknonce', false ); ?> 597 <?php wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false ); ?> 598 </div> 599 600 <?php 601 602 do_meta_boxes('post', 'normal', $post); 603 604 do_action('edit_form_advanced'); 605 606 do_meta_boxes('post', 'advanced', $post); 607 608 do_action('dbx_post_sidebar'); 609 610 ?> 611 612 </div> 613 </div> 614 <br class="clear" /> 615 </div><!-- /poststuff --> 616 </form> 617 </div> 618 619 <?php wp_comment_reply(); ?> 620 621 <?php if ((isset($post->post_title) && '' == $post->post_title) || (isset($_GET['message']) && 2 > $_GET['message'])) : ?> 622 <script type="text/javascript"> 623 try{document.post.title.focus();}catch(e){} 624 </script> 625 <?php endif; ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Tue Mar 17 22:41:04 2009 | Cross-referenced by PHPXref 0.7 |