web/wp-admin/edit-form-advanced.php
changeset 194 32102edaa81b
parent 136 bde1974c263b
child 204 09a1c134465b
equal deleted inserted replaced
193:2f6f6f7551ca 194:32102edaa81b
     8 
     8 
     9 // don't load directly
     9 // don't load directly
    10 if ( !defined('ABSPATH') )
    10 if ( !defined('ABSPATH') )
    11 	die('-1');
    11 	die('-1');
    12 
    12 
       
    13 wp_enqueue_script('post');
       
    14 
       
    15 if ( wp_is_mobile() )
       
    16 	wp_enqueue_script( 'jquery-touch-punch' );
       
    17 
       
    18 if ( post_type_supports($post_type, 'editor') || post_type_supports($post_type, 'thumbnail') ) {
       
    19 	add_thickbox();
       
    20 	wp_enqueue_script('media-upload');
       
    21 }
       
    22 
    13 /**
    23 /**
    14  * Post ID global
    24  * Post ID global
    15  * @name $post_ID
    25  * @name $post_ID
    16  * @var int
    26  * @var int
    17  */
    27  */
    18 $post_ID = isset($post_ID) ? (int) $post_ID : 0;
    28 $post_ID = isset($post_ID) ? (int) $post_ID : 0;
    19 
    29 $user_ID = isset($user_ID) ? (int) $user_ID : 0;
    20 $action = isset($action) ? $action : '';
    30 $action = isset($action) ? $action : '';
       
    31 
       
    32 $messages = array();
       
    33 $messages['post'] = array(
       
    34 	 0 => '', // Unused. Messages start at index 1.
       
    35 	 1 => sprintf( __('Post updated. <a href="%s">View post</a>'), esc_url( get_permalink($post_ID) ) ),
       
    36 	 2 => __('Custom field updated.'),
       
    37 	 3 => __('Custom field deleted.'),
       
    38 	 4 => __('Post updated.'),
       
    39 	/* translators: %s: date and time of the revision */
       
    40 	 5 => isset($_GET['revision']) ? sprintf( __('Post restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
       
    41 	 6 => sprintf( __('Post published. <a href="%s">View post</a>'), esc_url( get_permalink($post_ID) ) ),
       
    42 	 7 => __('Post saved.'),
       
    43 	 8 => sprintf( __('Post submitted. <a target="_blank" href="%s">Preview post</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
       
    44 	 9 => sprintf( __('Post scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview post</a>'),
       
    45 		// translators: Publish box date format, see http://php.net/date
       
    46 		date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post->post_date ) ), esc_url( get_permalink($post_ID) ) ),
       
    47 	10 => sprintf( __('Post draft updated. <a target="_blank" href="%s">Preview post</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
       
    48 );
       
    49 $messages['page'] = array(
       
    50 	 0 => '', // Unused. Messages start at index 1.
       
    51 	 1 => sprintf( __('Page updated. <a href="%s">View page</a>'), esc_url( get_permalink($post_ID) ) ),
       
    52 	 2 => __('Custom field updated.'),
       
    53 	 3 => __('Custom field deleted.'),
       
    54 	 4 => __('Page updated.'),
       
    55 	 5 => isset($_GET['revision']) ? sprintf( __('Page restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
       
    56 	 6 => sprintf( __('Page published. <a href="%s">View page</a>'), esc_url( get_permalink($post_ID) ) ),
       
    57 	 7 => __('Page saved.'),
       
    58 	 8 => sprintf( __('Page submitted. <a target="_blank" href="%s">Preview page</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
       
    59 	 9 => sprintf( __('Page scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview page</a>'), date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post->post_date ) ), esc_url( get_permalink($post_ID) ) ),
       
    60 	10 => sprintf( __('Page draft updated. <a target="_blank" href="%s">Preview page</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
       
    61 );
       
    62 
       
    63 $messages = apply_filters( 'post_updated_messages', $messages );
    21 
    64 
    22 $message = false;
    65 $message = false;
    23 if ( isset($_GET['message']) ) {
    66 if ( isset($_GET['message']) ) {
    24 	$_GET['message'] = absint( $_GET['message'] );
    67 	$_GET['message'] = absint( $_GET['message'] );
    25 
    68 	if ( isset($messages[$post_type][$_GET['message']]) )
    26 	switch ( $_GET['message'] ) {
    69 		$message = $messages[$post_type][$_GET['message']];
    27 		case 1:
    70 	elseif ( !isset($messages[$post_type]) && isset($messages['post'][$_GET['message']]) )
    28 			$message = sprintf( __('Post updated. <a href="%s">View post</a>'), get_permalink($post_ID) );
    71 		$message = $messages['post'][$_GET['message']];
       
    72 }
       
    73 
       
    74 $notice = false;
       
    75 $form_extra = '';
       
    76 if ( 'auto-draft' == $post->post_status ) {
       
    77 	if ( 'edit' == $action )
       
    78 		$post->post_title = '';
       
    79 	$autosave = false;
       
    80 	$form_extra .= "<input type='hidden' id='auto_draft' name='auto_draft' value='1' />";
       
    81 } else {
       
    82 	$autosave = wp_get_post_autosave( $post_ID );
       
    83 }
       
    84 
       
    85 $form_action = 'editpost';
       
    86 $nonce_action = 'update-' . $post_type . '_' . $post_ID;
       
    87 $form_extra .= "<input type='hidden' id='post_ID' name='post_ID' value='" . esc_attr($post_ID) . "' />";
       
    88 
       
    89 // Detect if there exists an autosave newer than the post and if that autosave is different than the post
       
    90 if ( $autosave && mysql2date( 'U', $autosave->post_modified_gmt, false ) > mysql2date( 'U', $post->post_modified_gmt, false ) ) {
       
    91 	foreach ( _wp_post_revision_fields() as $autosave_field => $_autosave_field ) {
       
    92 		if ( normalize_whitespace( $autosave->$autosave_field ) != normalize_whitespace( $post->$autosave_field ) ) {
       
    93 			$notice = sprintf( __( 'There is an autosave of this post that is more recent than the version below. <a href="%s">View the autosave</a>' ), get_edit_post_link( $autosave->ID ) );
    29 			break;
    94 			break;
    30 		case 2:
    95 		}
    31 			$message = __('Custom field updated.');
       
    32 			break;
       
    33 		case 3:
       
    34 			$message = __('Custom field deleted.');
       
    35 			break;
       
    36 		case 4:
       
    37 			$message = __('Post updated.');
       
    38 			break;
       
    39 		case 5:
       
    40 			if ( isset($_GET['revision']) )
       
    41 				$message = sprintf( __('Post restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) );
       
    42 			break;
       
    43 		case 6:
       
    44 			$message = sprintf( __('Post published. <a href="%s">View post</a>'), get_permalink($post_ID) );
       
    45 			break;
       
    46 		case 7:
       
    47 			$message = __('Post saved.');
       
    48 			break;
       
    49 		case 8:
       
    50 			$message = sprintf( __('Post submitted. <a target="_blank" href="%s">Preview post</a>'), add_query_arg( 'preview', 'true', get_permalink($post_ID) ) );
       
    51 			break;
       
    52 		case 9:
       
    53 			// translators: Publish box date formt, see http://php.net/date - Same as in meta-boxes.php
       
    54 			$message = sprintf( __('Post scheduled for: <b>%1$s</b>. <a target="_blank" href="%2$s">Preview post</a>'), date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post->post_date ) ), get_permalink($post_ID) );
       
    55 			break;
       
    56 		case 10:
       
    57 			$message = sprintf( __('Post draft updated. <a target="_blank" href="%s">Preview post</a>'), add_query_arg( 'preview', 'true', get_permalink($post_ID) ) );
       
    58 			break;
       
    59 	}
    96 	}
    60 }
    97 	unset($autosave_field, $_autosave_field);
    61 
    98 }
    62 $notice = false;
    99 
    63 if ( 0 == $post_ID ) {
   100 $post_type_object = get_post_type_object($post_type);
    64 	$form_action = 'post';
   101 
    65 	$temp_ID = -1 * time(); // don't change this formula without looking at wp_write_post()
   102 // All meta boxes should be defined and added before the first do_meta_boxes() call (or potentially during the do_meta_boxes action).
    66 	$form_extra = "<input type='hidden' id='post_ID' name='temp_ID' value='" . esc_attr($temp_ID) . "' />";
   103 require_once('./includes/meta-boxes.php');
    67 	$autosave = false;
   104 
    68 } else {
   105 add_meta_box('submitdiv', __('Publish'), 'post_submit_meta_box', null, 'side', 'core');
    69 	$form_action = 'editpost';
   106 
    70 	$form_extra = "<input type='hidden' id='post_ID' name='post_ID' value='" . esc_attr($post_ID) . "' />";
   107 if ( current_theme_supports( 'post-formats' ) && post_type_supports( $post_type, 'post-formats' ) )
    71 	$autosave = wp_get_post_autosave( $post_ID );
   108 	add_meta_box( 'formatdiv', _x( 'Format', 'post format' ), 'post_format_meta_box', null, 'side', 'core' );
    72 
   109 
    73 	// Detect if there exists an autosave newer than the post and if that autosave is different than the post
   110 // all taxonomies
    74 	if ( $autosave && mysql2date( 'U', $autosave->post_modified_gmt, false ) > mysql2date( 'U', $post->post_modified_gmt, false ) ) {
   111 foreach ( get_object_taxonomies($post_type) as $tax_name ) {
    75 		foreach ( _wp_post_revision_fields() as $autosave_field => $_autosave_field ) {
   112 	$taxonomy = get_taxonomy($tax_name);
    76 			if ( normalize_whitespace( $autosave->$autosave_field ) != normalize_whitespace( $post->$autosave_field ) ) {
   113 	if ( ! $taxonomy->show_ui )
    77 				$notice = sprintf( __( 'There is an autosave of this post that is more recent than the version below.  <a href="%s">View the autosave</a>.' ), get_edit_post_link( $autosave->ID ) );
   114 		continue;
    78 				break;
   115 
    79 			}
   116 	$label = $taxonomy->labels->name;
    80 		}
   117 
    81 		unset($autosave_field, $_autosave_field);
   118 	if ( !is_taxonomy_hierarchical($tax_name) )
       
   119 		add_meta_box('tagsdiv-' . $tax_name, $label, 'post_tags_meta_box', null, 'side', 'core', array( 'taxonomy' => $tax_name ));
       
   120 	else
       
   121 		add_meta_box($tax_name . 'div', $label, 'post_categories_meta_box', null, 'side', 'core', array( 'taxonomy' => $tax_name ));
       
   122 }
       
   123 
       
   124 if ( post_type_supports($post_type, 'page-attributes') )
       
   125 	add_meta_box('pageparentdiv', 'page' == $post_type ? __('Page Attributes') : __('Attributes'), 'page_attributes_meta_box', null, 'side', 'core');
       
   126 
       
   127 if ( current_theme_supports( 'post-thumbnails', $post_type ) && post_type_supports( $post_type, 'thumbnail' ) )
       
   128 		add_meta_box('postimagediv', __('Featured Image'), 'post_thumbnail_meta_box', null, 'side', 'low');
       
   129 
       
   130 if ( post_type_supports($post_type, 'excerpt') )
       
   131 	add_meta_box('postexcerpt', __('Excerpt'), 'post_excerpt_meta_box', null, 'normal', 'core');
       
   132 
       
   133 if ( post_type_supports($post_type, 'trackbacks') )
       
   134 	add_meta_box('trackbacksdiv', __('Send Trackbacks'), 'post_trackback_meta_box', null, 'normal', 'core');
       
   135 
       
   136 if ( post_type_supports($post_type, 'custom-fields') )
       
   137 	add_meta_box('postcustom', __('Custom Fields'), 'post_custom_meta_box', null, 'normal', 'core');
       
   138 
       
   139 do_action('dbx_post_advanced');
       
   140 if ( post_type_supports($post_type, 'comments') )
       
   141 	add_meta_box('commentstatusdiv', __('Discussion'), 'post_comment_status_meta_box', null, 'normal', 'core');
       
   142 
       
   143 if ( ('publish' == $post->post_status || 'private' == $post->post_status) && post_type_supports($post_type, 'comments') )
       
   144 	add_meta_box('commentsdiv', __('Comments'), 'post_comment_meta_box', null, 'normal', 'core');
       
   145 
       
   146 if ( !( 'pending' == $post->post_status && !current_user_can( $post_type_object->cap->publish_posts ) ) )
       
   147 	add_meta_box('slugdiv', __('Slug'), 'post_slug_meta_box', null, 'normal', 'core');
       
   148 
       
   149 if ( post_type_supports($post_type, 'author') ) {
       
   150 	if ( is_super_admin() || current_user_can( $post_type_object->cap->edit_others_posts ) )
       
   151 		add_meta_box('authordiv', __('Author'), 'post_author_meta_box', null, 'normal', 'core');
       
   152 }
       
   153 
       
   154 if ( post_type_supports($post_type, 'revisions') && 0 < $post_ID && wp_get_post_revisions( $post_ID ) )
       
   155 	add_meta_box('revisionsdiv', __('Revisions'), 'post_revisions_meta_box', null, 'normal', 'core');
       
   156 
       
   157 do_action('add_meta_boxes', $post_type, $post);
       
   158 do_action('add_meta_boxes_' . $post_type, $post);
       
   159 
       
   160 do_action('do_meta_boxes', $post_type, 'normal', $post);
       
   161 do_action('do_meta_boxes', $post_type, 'advanced', $post);
       
   162 do_action('do_meta_boxes', $post_type, 'side', $post);
       
   163 
       
   164 add_screen_option('layout_columns', array('max' => 2, 'default' => 2) );
       
   165 
       
   166 if ( 'post' == $post_type ) {
       
   167 	$customize_display = '<p>' . __('The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop, and can minimize or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen.') . '</p>';
       
   168 
       
   169 	get_current_screen()->add_help_tab( array(
       
   170 		'id'      => 'customize-display',
       
   171 		'title'   => __('Customizing This Display'),
       
   172 		'content' => $customize_display,
       
   173 	) );
       
   174 
       
   175 	$title_and_editor  = '<p>' . __('<strong>Title</strong> - Enter a title for your post. After you enter a title, you&#8217;ll see the permalink below, which you can edit.') . '</p>';
       
   176 	$title_and_editor .= '<p>' . __('<strong>Post editor</strong> - Enter the text for your post. There are two modes of editing: Visual and HTML. Choose the mode by clicking on the appropriate tab. Visual mode gives you a WYSIWYG editor. Click the last icon in the row to get a second row of controls. The HTML mode allows you to enter raw HTML along with your post text. You can insert media files by clicking the icons above the post editor and following the directions. You can go to the distraction-free writing screen via the Fullscreen icon in Visual mode (second to last in the top row) or the Fullscreen button in HTML mode (last in the row). Once there, you can make buttons visible by hovering over the top area. Exit Fullscreen back to the regular post editor.') . '</p>';
       
   177 
       
   178 	get_current_screen()->add_help_tab( array(
       
   179 		'id'      => 'title-post-editor',
       
   180 		'title'   => __('Title and Post Editor'),
       
   181 		'content' => $title_and_editor,
       
   182 	) );
       
   183 
       
   184 	$publish_box = '<p>' . __('<strong>Publish</strong> - You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post.') . '</p>';
       
   185 
       
   186 	if ( current_theme_supports( 'post-formats' ) && post_type_supports( 'post', 'post-formats' ) ) {
       
   187 		$publish_box .= '<p>' . __( '<strong>Post Format</strong> - This designates how your theme will display a specific post. For example, you could have a <em>standard</em> blog post with a title and paragraphs, or a short <em>aside</em> that omits the title and contains a short text blurb. Please refer to the Codex for <a href="http://codex.wordpress.org/Post_Formats#Supported_Formats">descriptions of each post format</a>. Your theme could enable all or some of 10 possible formats.' ) . '</p>';
    82 	}
   188 	}
    83 }
   189 
    84 
   190 	if ( current_theme_supports( 'post-thumbnails' ) && post_type_supports( 'post', 'thumbnail' ) ) {
    85 // All meta boxes should be defined and added before the first do_meta_boxes() call (or potentially during the do_meta_boxes action).
   191 		$publish_box .= '<p>' . __('<strong>Featured Image</strong> - This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the featured image as a post thumbnail on the home page, a custom header, etc.') . '</p>';
    86 require_once('includes/meta-boxes.php');
       
    87 
       
    88 add_meta_box('submitdiv', __('Publish'), 'post_submit_meta_box', 'post', 'side', 'core');
       
    89 
       
    90 // all tag-style post taxonomies
       
    91 foreach ( get_object_taxonomies('post') as $tax_name ) {
       
    92 	if ( !is_taxonomy_hierarchical($tax_name) ) {
       
    93 		$taxonomy = get_taxonomy($tax_name);
       
    94 		$label = isset($taxonomy->label) ? esc_attr($taxonomy->label) : $tax_name;
       
    95 
       
    96 		add_meta_box('tagsdiv-' . $tax_name, $label, 'post_tags_meta_box', 'post', 'side', 'core');
       
    97 	}
   192 	}
    98 }
   193 
    99 
   194 	get_current_screen()->add_help_tab( array(
   100 add_meta_box('categorydiv', __('Categories'), 'post_categories_meta_box', 'post', 'side', 'core');
   195 		'id'      => 'publish-box',
   101 if ( current_theme_supports( 'post-thumbnails', 'post' ) )
   196 		'title'   => __('Publish Box'),
   102 	add_meta_box('postimagediv', __('Post Thumbnail'), 'post_thumbnail_meta_box', 'post', 'side', 'low');
   197 		'content' => $publish_box,
   103 add_meta_box('postexcerpt', __('Excerpt'), 'post_excerpt_meta_box', 'post', 'normal', 'core');
   198 	) );
   104 add_meta_box('trackbacksdiv', __('Send Trackbacks'), 'post_trackback_meta_box', 'post', 'normal', 'core');
   199 
   105 add_meta_box('postcustom', __('Custom Fields'), 'post_custom_meta_box', 'post', 'normal', 'core');
   200 	$discussion_settings  = '<p>' . __('<strong>Send Trackbacks</strong> - Trackbacks are a way to notify legacy blog systems that you&#8217;ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they&#8217;ll be notified automatically using pingbacks, and this field is unnecessary.') . '</p>';
   106 do_action('dbx_post_advanced');
   201 	$discussion_settings .= '<p>' . __('<strong>Discussion</strong> - You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them.') . '</p>';
   107 add_meta_box('commentstatusdiv', __('Discussion'), 'post_comment_status_meta_box', 'post', 'normal', 'core');
   202 
   108 
   203 	get_current_screen()->add_help_tab( array(
   109 if ( 'publish' == $post->post_status || 'private' == $post->post_status )
   204 		'id'      => 'discussion-settings',
   110 	add_meta_box('commentsdiv', __('Comments'), 'post_comment_meta_box', 'post', 'normal', 'core');
   205 		'title'   => __('Discussion Settings'),
   111 
   206 		'content' => $discussion_settings,
   112 if ( !( 'pending' == $post->post_status && !current_user_can( 'publish_posts' ) ) )
   207 	) );
   113 	add_meta_box('slugdiv', __('Post Slug'), 'post_slug_meta_box', 'post', 'normal', 'core');
   208 
   114 
   209 	get_current_screen()->set_help_sidebar(
   115 $authors = get_editable_user_ids( $current_user->id ); // TODO: ROLE SYSTEM
   210 			'<p>' . sprintf(__('You can also create posts with the <a href="%s">Press This bookmarklet</a>.'), 'options-writing.php') . '</p>' .
   116 if ( $post->post_author && !in_array($post->post_author, $authors) )
   211 			'<p><strong>' . __('For more information:') . '</strong></p>' .
   117 	$authors[] = $post->post_author;
   212 			'<p>' . __('<a href="http://codex.wordpress.org/Posts_Add_New_Screen" target="_blank">Documentation on Writing and Editing Posts</a>') . '</p>' .
   118 if ( $authors && count( $authors ) > 1 )
   213 			'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
   119 	add_meta_box('authordiv', __('Post Author'), 'post_author_meta_box', 'post', 'normal', 'core');
   214 	);
   120 
   215 } elseif ( 'page' == $post_type ) {
   121 if ( 0 < $post_ID && wp_get_post_revisions( $post_ID ) )
   216 	$about_pages = '<p>' . __('Pages are similar to Posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest Pages under other Pages by making one the &#8220;Parent&#8221; of the other, creating a group of Pages.') . '</p>' .
   122 	add_meta_box('revisionsdiv', __('Post Revisions'), 'post_revisions_meta_box', 'post', 'normal', 'core');
   217 		'<p>' . __('Creating a Page is very similar to creating a Post, and the screens can be customized in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and HTML modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box:') . '</p>';
   123 
   218 
   124 do_action('do_meta_boxes', 'post', 'normal', $post);
   219 	get_current_screen()->add_help_tab( array(
   125 do_action('do_meta_boxes', 'post', 'advanced', $post);
   220 		'id'      => 'about-pages',
   126 do_action('do_meta_boxes', 'post', 'side', $post);
   221 		'title'   => __('About Pages'),
   127 
   222 		'content' => $about_pages,
   128 require_once('admin-header.php');
   223 	) );
   129 
   224 
       
   225 	$page_attributes = '<p>' . __('<strong>Parent</strong> - You can arrange your pages in hierarchies. For example, you could have an &#8220;About&#8221; page that has &#8220;Life Story&#8221; and &#8220;My Dog&#8221; pages under it. There are no limits to how many levels you can nest pages.') . '</p>' .
       
   226 		'<p>' . __('<strong>Template</strong> - Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you&#8217;ll see them in this dropdown menu.') . '</p>' .
       
   227 		'<p>' . __('<strong>Order</strong> - Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field.') . '</p>';
       
   228 
       
   229 	get_current_screen()->add_help_tab( array(
       
   230 		'id' => 'page-attributes',
       
   231 		'title' => __('Page Attributes'),
       
   232 		'content' => $page_attributes,
       
   233 	) );
       
   234 
       
   235 	get_current_screen()->set_help_sidebar(
       
   236 			'<p><strong>' . __('For more information:') . '</strong></p>' .
       
   237 			'<p>' . __('<a href="http://codex.wordpress.org/Pages_Add_New_Screen" target="_blank">Documentation on Adding New Pages</a>') . '</p>' .
       
   238 			'<p>' . __('<a href="http://codex.wordpress.org/Pages_Screen#Editing_Individual_Pages" target="_blank">Documentation on Editing Pages</a>') . '</p>' .
       
   239 			'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
       
   240 	);
       
   241 }
       
   242 
       
   243 require_once('./admin-header.php');
   130 ?>
   244 ?>
   131 
   245 
   132 <div class="wrap">
   246 <div class="wrap">
   133 <?php screen_icon(); ?>
   247 <?php screen_icon(); ?>
   134 <h2><?php echo esc_html( $title ); ?></h2>
   248 <h2><?php echo esc_html( $title ); ?><?php if ( isset( $post_new_file ) ) : ?> <a href="<?php echo esc_url( $post_new_file ) ?>" class="add-new-h2"><?php echo esc_html($post_type_object->labels->add_new); ?></a><?php endif; ?></h2>
   135 <?php if ( $notice ) : ?>
   249 <?php if ( $notice ) : ?>
   136 <div id="notice" class="error"><p><?php echo $notice ?></p></div>
   250 <div id="notice" class="error"><p><?php echo $notice ?></p></div>
   137 <?php endif; ?>
   251 <?php endif; ?>
   138 <?php if ( $message ) : ?>
   252 <?php if ( $message ) : ?>
   139 <div id="message" class="updated fade"><p><?php echo $message; ?></p></div>
   253 <div id="message" class="updated"><p><?php echo $message; ?></p></div>
   140 <?php endif; ?>
   254 <?php endif; ?>
   141 <form name="post" action="post.php" method="post" id="post">
   255 <form name="post" action="post.php" method="post" id="post"<?php do_action('post_edit_form_tag'); ?>>
   142 <?php
   256 <?php wp_nonce_field($nonce_action); ?>
   143 
       
   144 if ( 0 == $post_ID)
       
   145 	wp_nonce_field('add-post');
       
   146 else
       
   147 	wp_nonce_field('update-post_' .  $post_ID);
       
   148 
       
   149 ?>
       
   150 
       
   151 <input type="hidden" id="user-id" name="user_ID" value="<?php echo (int) $user_ID ?>" />
   257 <input type="hidden" id="user-id" name="user_ID" value="<?php echo (int) $user_ID ?>" />
   152 <input type="hidden" id="hiddenaction" name="action" value="<?php echo esc_attr($form_action) ?>" />
   258 <input type="hidden" id="hiddenaction" name="action" value="<?php echo esc_attr( $form_action ) ?>" />
   153 <input type="hidden" id="originalaction" name="originalaction" value="<?php echo esc_attr($form_action) ?>" />
   259 <input type="hidden" id="originalaction" name="originalaction" value="<?php echo esc_attr( $form_action ) ?>" />
   154 <input type="hidden" id="post_author" name="post_author" value="<?php echo esc_attr( $post->post_author ); ?>" />
   260 <input type="hidden" id="post_author" name="post_author" value="<?php echo esc_attr( $post->post_author ); ?>" />
   155 <input type="hidden" id="post_type" name="post_type" value="<?php echo esc_attr($post->post_type) ?>" />
   261 <input type="hidden" id="post_type" name="post_type" value="<?php echo esc_attr( $post_type ) ?>" />
   156 <input type="hidden" id="original_post_status" name="original_post_status" value="<?php echo esc_attr($post->post_status) ?>" />
   262 <input type="hidden" id="original_post_status" name="original_post_status" value="<?php echo esc_attr( $post->post_status) ?>" />
   157 <input name="referredby" type="hidden" id="referredby" value="<?php echo esc_url(stripslashes(wp_get_referer())); ?>" />
   263 <input type="hidden" id="referredby" name="referredby" value="<?php echo esc_url(stripslashes(wp_get_referer())); ?>" />
   158 <?php
   264 <?php if ( ! empty( $active_post_lock ) ) { ?>
       
   265 <input type="hidden" id="active_post_lock" value="<?php echo esc_attr( implode( ':', $active_post_lock ) ); ?>" />
       
   266 <?php
       
   267 }
   159 if ( 'draft' != $post->post_status )
   268 if ( 'draft' != $post->post_status )
   160 	wp_original_referer_field(true, 'previous');
   269 	wp_original_referer_field(true, 'previous');
   161 
   270 
   162 echo $form_extra ?>
   271 echo $form_extra;
   163 
   272 
   164 <div id="poststuff" class="metabox-holder<?php echo 2 == $screen_layout_columns ? ' has-right-sidebar' : ''; ?>">
   273 wp_nonce_field( 'autosave', 'autosavenonce', false );
   165 <div id="side-info-column" class="inner-sidebar">
   274 wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
   166 
   275 wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
   167 <?php do_action('submitpost_box'); ?>
   276 ?>
   168 
   277 
   169 <?php $side_meta_boxes = do_meta_boxes('post', 'side', $post); ?>
   278 <div id="poststuff">
   170 </div>
   279 
   171 
   280 <div id="post-body" class="metabox-holder columns-<?php echo 1 == get_current_screen()->get_columns() ? '1' : '2'; ?>">
   172 <div id="post-body">
       
   173 <div id="post-body-content">
   281 <div id="post-body-content">
       
   282 <?php if ( post_type_supports($post_type, 'title') ) { ?>
   174 <div id="titlediv">
   283 <div id="titlediv">
   175 <div id="titlewrap">
   284 <div id="titlewrap">
   176 	<label class="screen-reader-text" for="title"><?php _e('Title') ?></label>
   285 	<label class="hide-if-no-js" style="visibility:hidden" id="title-prompt-text" for="title"><?php echo apply_filters( 'enter_title_here', __( 'Enter title here' ), $post ); ?></label>
   177 	<input type="text" name="post_title" size="30" tabindex="1" value="<?php echo esc_attr( htmlspecialchars( $post->post_title ) ); ?>" id="title" autocomplete="off" />
   286 	<input type="text" name="post_title" size="30" tabindex="1" value="<?php echo esc_attr( htmlspecialchars( $post->post_title ) ); ?>" id="title" autocomplete="off" />
   178 </div>
   287 </div>
   179 <div class="inside">
   288 <div class="inside">
   180 <?php
   289 <?php
   181 $sample_permalink_html = get_sample_permalink_html($post->ID);
   290 $sample_permalink_html = $post_type_object->public ? get_sample_permalink_html($post->ID) : '';
   182 if ( !( 'pending' == $post->post_status && !current_user_can( 'publish_posts' ) ) ) { ?>
   291 $shortlink = wp_get_shortlink($post->ID, 'post');
       
   292 if ( !empty($shortlink) )
       
   293     $sample_permalink_html .= '<input id="shortlink" type="hidden" value="' . esc_attr($shortlink) . '" /><a href="#" class="button" onclick="prompt(&#39;URL:&#39;, jQuery(\'#shortlink\').val()); return false;">' . __('Get Shortlink') . '</a>';
       
   294 
       
   295 if ( $post_type_object->public && ! ( 'pending' == $post->post_status && !current_user_can( $post_type_object->cap->publish_posts ) ) ) { ?>
   183 	<div id="edit-slug-box">
   296 	<div id="edit-slug-box">
   184 <?php
   297 	<?php
   185 	if ( ! empty($post->ID) && ! empty($sample_permalink_html) ) :
   298 		if ( ! empty($post->ID) && ! empty($sample_permalink_html) && 'auto-draft' != $post->post_status )
   186 		echo $sample_permalink_html;
   299 			echo $sample_permalink_html;
   187 endif; ?>
   300 	?>
   188 	</div>
   301 	</div>
   189 <?php
   302 <?php
   190 } ?>
   303 }
   191 </div>
   304 ?>
   192 </div>
   305 </div>
   193 
   306 <?php
   194 <div id="<?php echo user_can_richedit() ? 'postdivrich' : 'postdiv'; ?>" class="postarea">
   307 wp_nonce_field( 'samplepermalink', 'samplepermalinknonce', false );
   195 
   308 ?>
   196 <?php the_editor($post->post_content); ?>
   309 </div>
       
   310 <?php } ?>
       
   311 
       
   312 <?php if ( post_type_supports($post_type, 'editor') ) { ?>
       
   313 <div id="postdivrich" class="postarea">
       
   314 
       
   315 <?php wp_editor($post->post_content, 'content', array('dfw' => true, 'tabindex' => 1) ); ?>
   197 
   316 
   198 <table id="post-status-info" cellspacing="0"><tbody><tr>
   317 <table id="post-status-info" cellspacing="0"><tbody><tr>
   199 	<td id="wp-word-count"></td>
   318 	<td id="wp-word-count"><?php printf( __( 'Word count: %s' ), '<span class="word-count">0</span>' ); ?></td>
   200 	<td class="autosave-info">
   319 	<td class="autosave-info">
   201 	<span id="autosave">&nbsp;</span>
   320 	<span class="autosave-message">&nbsp;</span>
   202 <?php
   321 <?php
   203 	if ( $post_ID ) {
   322 	if ( 'auto-draft' != $post->post_status ) {
   204 		echo '<span id="last-edit">';
   323 		echo '<span id="last-edit">';
   205 		if ( $last_id = get_post_meta($post_ID, '_edit_last', true) ) {
   324 		if ( $last_id = get_post_meta($post_ID, '_edit_last', true) ) {
   206 			$last_user = get_userdata($last_id);
   325 			$last_user = get_userdata($last_id);
   207 			printf(__('Last edited by %1$s on %2$s at %3$s'), esc_html( $last_user->display_name ), mysql2date(get_option('date_format'), $post->post_modified), mysql2date(get_option('time_format'), $post->post_modified));
   326 			printf(__('Last edited by %1$s on %2$s at %3$s'), esc_html( $last_user->display_name ), mysql2date(get_option('date_format'), $post->post_modified), mysql2date(get_option('time_format'), $post->post_modified));
   208 		} else {
   327 		} else {
   211 		echo '</span>';
   330 		echo '</span>';
   212 	} ?>
   331 	} ?>
   213 	</td>
   332 	</td>
   214 </tr></tbody></table>
   333 </tr></tbody></table>
   215 
   334 
   216 <?php
   335 </div>
   217 wp_nonce_field( 'autosave', 'autosavenonce', false );
   336 <?php } ?>
   218 wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
   337 </div><!-- /post-body-content -->
   219 wp_nonce_field( 'getpermalink', 'getpermalinknonce', false );
   338 
   220 wp_nonce_field( 'samplepermalink', 'samplepermalinknonce', false );
   339 <div id="postbox-container-1" class="postbox-container">
   221 wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false ); ?>
   340 <?php
   222 </div>
   341 
   223 
   342 if ( 'page' == $post_type )
   224 <?php
   343 	do_action('submitpage_box');
   225 
   344 else
   226 do_meta_boxes('post', 'normal', $post);
   345 	do_action('submitpost_box');
   227 
   346 
   228 do_action('edit_form_advanced');
   347 do_meta_boxes($post_type, 'side', $post);
   229 
   348 
   230 do_meta_boxes('post', 'advanced', $post);
   349 ?>
   231 
   350 </div>
   232 do_action('dbx_post_sidebar'); ?>
   351 <div id="postbox-container-2" class="postbox-container">
   233 
   352 <?php
   234 </div>
   353 
   235 </div>
   354 do_meta_boxes(null, 'normal', $post);
       
   355 
       
   356 if ( 'page' == $post_type )
       
   357 	do_action('edit_page_form');
       
   358 else
       
   359 	do_action('edit_form_advanced');
       
   360 
       
   361 do_meta_boxes(null, 'advanced', $post);
       
   362 
       
   363 ?>
       
   364 </div>
       
   365 <?php
       
   366 
       
   367 do_action('dbx_post_sidebar');
       
   368 
       
   369 ?>
       
   370 </div><!-- /post-body -->
   236 <br class="clear" />
   371 <br class="clear" />
   237 </div><!-- /poststuff -->
   372 </div><!-- /poststuff -->
   238 </form>
   373 </form>
   239 </div>
   374 </div>
   240 
   375 
   241 <?php wp_comment_reply(); ?>
   376 <?php
       
   377 if ( post_type_supports( $post_type, 'comments' ) )
       
   378 	wp_comment_reply();
       
   379 ?>
   242 
   380 
   243 <?php if ((isset($post->post_title) && '' == $post->post_title) || (isset($_GET['message']) && 2 > $_GET['message'])) : ?>
   381 <?php if ((isset($post->post_title) && '' == $post->post_title) || (isset($_GET['message']) && 2 > $_GET['message'])) : ?>
   244 <script type="text/javascript">
   382 <script type="text/javascript">
   245 try{document.post.title.focus();}catch(e){}
   383 try{document.post.title.focus();}catch(e){}
   246 </script>
   384 </script>