wp/wp-admin/edit-form-advanced.php
changeset 5 5e2f62d02dcd
parent 0 d970ebf37754
child 7 cf61fcea0001
equal deleted inserted replaced
4:346c88efed21 5:5e2f62d02dcd
     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 global $post_type, $post_type_object, $post;
       
    14 
    13 wp_enqueue_script('post');
    15 wp_enqueue_script('post');
       
    16 $_wp_editor_expand = $_content_editor_dfw = false;
       
    17 
       
    18 /**
       
    19  * Filter whether to enable the 'expand' functionality in the post editor.
       
    20  *
       
    21  * @since 4.0.0
       
    22  * @since 4.1.0 Added the `$post_type` parameter.
       
    23  *
       
    24  * @param bool   $expand    Whether to enable the 'expand' functionality. Default true.
       
    25  * @param string $post_type Post type.
       
    26  */
       
    27 if ( post_type_supports( $post_type, 'editor' ) && ! wp_is_mobile() &&
       
    28 	 ! ( $is_IE && preg_match( '/MSIE [5678]/', $_SERVER['HTTP_USER_AGENT'] ) ) &&
       
    29 	 apply_filters( 'wp_editor_expand', true, $post_type ) ) {
       
    30 
       
    31 	wp_enqueue_script('editor-expand');
       
    32 	$_content_editor_dfw = true;
       
    33 	$_wp_editor_expand = ( get_user_setting( 'editor_expand', 'on' ) === 'on' );
       
    34 }
    14 
    35 
    15 if ( wp_is_mobile() )
    36 if ( wp_is_mobile() )
    16 	wp_enqueue_script( 'jquery-touch-punch' );
    37 	wp_enqueue_script( 'jquery-touch-punch' );
    17 
    38 
    18 /**
    39 /**
    22  */
    43  */
    23 $post_ID = isset($post_ID) ? (int) $post_ID : 0;
    44 $post_ID = isset($post_ID) ? (int) $post_ID : 0;
    24 $user_ID = isset($user_ID) ? (int) $user_ID : 0;
    45 $user_ID = isset($user_ID) ? (int) $user_ID : 0;
    25 $action = isset($action) ? $action : '';
    46 $action = isset($action) ? $action : '';
    26 
    47 
    27 if ( post_type_supports($post_type, 'editor') || post_type_supports($post_type, 'thumbnail') ) {
    48 if ( $post_ID == get_option( 'page_for_posts' ) && empty( $post->post_content ) ) {
       
    49 	add_action( 'edit_form_after_title', '_wp_posts_page_notice' );
       
    50 	remove_post_type_support( $post_type, 'editor' );
       
    51 }
       
    52 
       
    53 $thumbnail_support = current_theme_supports( 'post-thumbnails', $post_type ) && post_type_supports( $post_type, 'thumbnail' );
       
    54 if ( ! $thumbnail_support && 'attachment' === $post_type && $post->post_mime_type ) {
       
    55 	if ( wp_attachment_is( 'audio', $post ) ) {
       
    56 		$thumbnail_support = post_type_supports( 'attachment:audio', 'thumbnail' ) || current_theme_supports( 'post-thumbnails', 'attachment:audio' );
       
    57 	} elseif ( wp_attachment_is( 'video', $post ) ) {
       
    58 		$thumbnail_support = post_type_supports( 'attachment:video', 'thumbnail' ) || current_theme_supports( 'post-thumbnails', 'attachment:video' );
       
    59 	}
       
    60 }
       
    61 
       
    62 if ( $thumbnail_support ) {
    28 	add_thickbox();
    63 	add_thickbox();
    29 	wp_enqueue_media( array( 'post' => $post_ID ) );
    64 	wp_enqueue_media( array( 'post' => $post_ID ) );
    30 }
    65 }
    31 
    66 
    32 // Add the local autosave notice HTML
    67 // Add the local autosave notice HTML
    33 add_action( 'admin_footer', '_local_storage_notice' );
    68 add_action( 'admin_footer', '_local_storage_notice' );
    34 
    69 
    35 /*
    70 /*
    36  * @todo Document the $messages array(s).
    71  * @todo Document the $messages array(s).
    37  */
    72  */
       
    73 $permalink = get_permalink( $post_ID );
       
    74 if ( ! $permalink ) {
       
    75 	$permalink = '';
       
    76 }
       
    77 
    38 $messages = array();
    78 $messages = array();
    39 $messages['post'] = array(
    79 $messages['post'] = array(
    40 	 0 => '', // Unused. Messages start at index 1.
    80 	 0 => '', // Unused. Messages start at index 1.
    41 	 1 => sprintf( __('Post updated. <a href="%s">View post</a>'), esc_url( get_permalink($post_ID) ) ),
    81 	 1 => sprintf( __('Post updated. <a href="%s">View post</a>'), esc_url( $permalink ) ),
    42 	 2 => __('Custom field updated.'),
    82 	 2 => __('Custom field updated.'),
    43 	 3 => __('Custom field deleted.'),
    83 	 3 => __('Custom field deleted.'),
    44 	 4 => __('Post updated.'),
    84 	 4 => __('Post updated.'),
    45 	/* translators: %s: date and time of the revision */
    85 	/* translators: %s: date and time of the revision */
    46 	 5 => isset($_GET['revision']) ? sprintf( __('Post restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
    86 	 5 => isset($_GET['revision']) ? sprintf( __('Post restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
    47 	 6 => sprintf( __('Post published. <a href="%s">View post</a>'), esc_url( get_permalink($post_ID) ) ),
    87 	 6 => sprintf( __('Post published. <a href="%s">View post</a>'), esc_url( $permalink ) ),
    48 	 7 => __('Post saved.'),
    88 	 7 => __('Post saved.'),
    49 	 8 => sprintf( __('Post submitted. <a target="_blank" href="%s">Preview post</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
    89 	 8 => sprintf( __('Post submitted. <a target="_blank" href="%s">Preview post</a>'), esc_url( add_query_arg( 'preview', 'true', $permalink ) ) ),
    50 	 9 => sprintf( __('Post scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview post</a>'),
    90 	 9 => sprintf( __('Post scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview post</a>'),
    51 		// translators: Publish box date format, see http://php.net/date
    91 		/* translators: Publish box date format, see http://php.net/date */
    52 		date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post->post_date ) ), esc_url( get_permalink($post_ID) ) ),
    92 		date_i18n( __( 'M j, Y @ H:i' ), strtotime( $post->post_date ) ), esc_url( $permalink ) ),
    53 	10 => sprintf( __('Post draft updated. <a target="_blank" href="%s">Preview post</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
    93 	10 => sprintf( __('Post draft updated. <a target="_blank" href="%s">Preview post</a>'), esc_url( add_query_arg( 'preview', 'true', $permalink ) ) ),
    54 );
    94 );
    55 $messages['page'] = array(
    95 $messages['page'] = array(
    56 	 0 => '', // Unused. Messages start at index 1.
    96 	 0 => '', // Unused. Messages start at index 1.
    57 	 1 => sprintf( __('Page updated. <a href="%s">View page</a>'), esc_url( get_permalink($post_ID) ) ),
    97 	 1 => sprintf( __('Page updated. <a href="%s">View page</a>'), esc_url( $permalink ) ),
    58 	 2 => __('Custom field updated.'),
    98 	 2 => __('Custom field updated.'),
    59 	 3 => __('Custom field deleted.'),
    99 	 3 => __('Custom field deleted.'),
    60 	 4 => __('Page updated.'),
   100 	 4 => __('Page updated.'),
    61 	 5 => isset($_GET['revision']) ? sprintf( __('Page restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
   101 	 5 => isset($_GET['revision']) ? sprintf( __('Page restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
    62 	 6 => sprintf( __('Page published. <a href="%s">View page</a>'), esc_url( get_permalink($post_ID) ) ),
   102 	 6 => sprintf( __('Page published. <a href="%s">View page</a>'), esc_url( $permalink ) ),
    63 	 7 => __('Page saved.'),
   103 	 7 => __('Page saved.'),
    64 	 8 => sprintf( __('Page submitted. <a target="_blank" href="%s">Preview page</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
   104 	 8 => sprintf( __('Page submitted. <a target="_blank" href="%s">Preview page</a>'), esc_url( add_query_arg( 'preview', 'true', $permalink ) ) ),
    65 	 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) ) ),
   105 	 9 => sprintf( __('Page scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview page</a>'), date_i18n( __( 'M j, Y @ H:i' ), strtotime( $post->post_date ) ), esc_url( $permalink ) ),
    66 	10 => sprintf( __('Page draft updated. <a target="_blank" href="%s">Preview page</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
   106 	10 => sprintf( __('Page draft updated. <a target="_blank" href="%s">Preview page</a>'), esc_url( add_query_arg( 'preview', 'true', $permalink ) ) ),
    67 );
   107 );
    68 $messages['attachment'] = array_fill( 1, 10, __( 'Media attachment updated.' ) ); // Hack, for now.
   108 $messages['attachment'] = array_fill( 1, 10, __( 'Media attachment updated.' ) ); // Hack, for now.
    69 
   109 
    70 /**
   110 /**
    71  * Filter the post updated messages.
   111  * Filter the post updated messages.
   135 if ( 'attachment' == $post_type ) {
   175 if ( 'attachment' == $post_type ) {
   136 	wp_enqueue_script( 'image-edit' );
   176 	wp_enqueue_script( 'image-edit' );
   137 	wp_enqueue_style( 'imgareaselect' );
   177 	wp_enqueue_style( 'imgareaselect' );
   138 	add_meta_box( 'submitdiv', __('Save'), 'attachment_submit_meta_box', null, 'side', 'core' );
   178 	add_meta_box( 'submitdiv', __('Save'), 'attachment_submit_meta_box', null, 'side', 'core' );
   139 	add_action( 'edit_form_after_title', 'edit_form_image_editor' );
   179 	add_action( 'edit_form_after_title', 'edit_form_image_editor' );
       
   180 
       
   181 	if ( wp_attachment_is( 'audio', $post ) ) {
       
   182 		add_meta_box( 'attachment-id3', __( 'Metadata' ), 'attachment_id3_data_meta_box', null, 'normal', 'core' );
       
   183 	}
   140 } else {
   184 } else {
   141 	add_meta_box( 'submitdiv', __( 'Publish' ), 'post_submit_meta_box', null, 'side', 'core', $publish_callback_args );
   185 	add_meta_box( 'submitdiv', __( 'Publish' ), 'post_submit_meta_box', null, 'side', 'core', $publish_callback_args );
   142 }
   186 }
   143 
   187 
   144 if ( current_theme_supports( 'post-formats' ) && post_type_supports( $post_type, 'post-formats' ) )
   188 if ( current_theme_supports( 'post-formats' ) && post_type_supports( $post_type, 'post-formats' ) )
   145 	add_meta_box( 'formatdiv', _x( 'Format', 'post format' ), 'post_format_meta_box', null, 'side', 'core' );
   189 	add_meta_box( 'formatdiv', _x( 'Format', 'post format' ), 'post_format_meta_box', null, 'side', 'core' );
   146 
   190 
   147 // all taxonomies
   191 // all taxonomies
   148 foreach ( get_object_taxonomies( $post ) as $tax_name ) {
   192 foreach ( get_object_taxonomies( $post ) as $tax_name ) {
   149 	$taxonomy = get_taxonomy( $tax_name );
   193 	$taxonomy = get_taxonomy( $tax_name );
   150 	if ( ! $taxonomy->show_ui )
   194 	if ( ! $taxonomy->show_ui || false === $taxonomy->meta_box_cb )
   151 		continue;
   195 		continue;
   152 
   196 
   153 	$label = $taxonomy->labels->name;
   197 	$label = $taxonomy->labels->name;
   154 
   198 
   155 	if ( ! is_taxonomy_hierarchical( $tax_name ) )
   199 	if ( ! is_taxonomy_hierarchical( $tax_name ) )
   161 }
   205 }
   162 
   206 
   163 if ( post_type_supports($post_type, 'page-attributes') )
   207 if ( post_type_supports($post_type, 'page-attributes') )
   164 	add_meta_box('pageparentdiv', 'page' == $post_type ? __('Page Attributes') : __('Attributes'), 'page_attributes_meta_box', null, 'side', 'core');
   208 	add_meta_box('pageparentdiv', 'page' == $post_type ? __('Page Attributes') : __('Attributes'), 'page_attributes_meta_box', null, 'side', 'core');
   165 
   209 
   166 $audio_post_support = $video_post_support = false;
   210 if ( $thumbnail_support && current_user_can( 'upload_files' ) )
   167 $theme_support = current_theme_supports( 'post-thumbnails', $post_type ) && post_type_supports( $post_type, 'thumbnail' );
       
   168 if ( 'attachment' === $post_type && ! empty( $post->post_mime_type ) ) {
       
   169 	$audio_post_support = 0 === strpos( $post->post_mime_type, 'audio/' ) && current_theme_supports( 'post-thumbnails', 'attachment:audio' ) && post_type_supports( 'attachment:audio', 'thumbnail' );
       
   170 	$video_post_support = 0 === strpos( $post->post_mime_type, 'video/' ) && current_theme_supports( 'post-thumbnails', 'attachment:video' ) && post_type_supports( 'attachment:video', 'thumbnail' );
       
   171 }
       
   172 
       
   173 if ( $theme_support || $audio_post_support || $video_post_support )
       
   174 	add_meta_box('postimagediv', __('Featured Image'), 'post_thumbnail_meta_box', null, 'side', 'low');
   211 	add_meta_box('postimagediv', __('Featured Image'), 'post_thumbnail_meta_box', null, 'side', 'low');
   175 
   212 
   176 if ( post_type_supports($post_type, 'excerpt') )
   213 if ( post_type_supports($post_type, 'excerpt') )
   177 	add_meta_box('postexcerpt', __('Excerpt'), 'post_excerpt_meta_box', null, 'normal', 'core');
   214 	add_meta_box('postexcerpt', __('Excerpt'), 'post_excerpt_meta_box', null, 'normal', 'core');
   178 
   215 
   217 do_action( 'add_meta_boxes', $post_type, $post );
   254 do_action( 'add_meta_boxes', $post_type, $post );
   218 
   255 
   219 /**
   256 /**
   220  * Fires after all built-in meta boxes have been added, contextually for the given post type.
   257  * Fires after all built-in meta boxes have been added, contextually for the given post type.
   221  *
   258  *
   222  * The dynamic portion of the hook, $post_type, refers to the post type of the post.
   259  * The dynamic portion of the hook, `$post_type`, refers to the post type of the post.
   223  *
   260  *
   224  * @since 3.0.0
   261  * @since 3.0.0
   225  *
   262  *
   226  * @param WP_Post $post Post object.
   263  * @param WP_Post $post Post object.
   227  */
   264  */
   254 		'title'   => __('Customizing This Display'),
   291 		'title'   => __('Customizing This Display'),
   255 		'content' => $customize_display,
   292 		'content' => $customize_display,
   256 	) );
   293 	) );
   257 
   294 
   258 	$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>';
   295 	$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>';
   259 	$title_and_editor .= '<p>' . __('<strong>Post editor</strong> - Enter the text for your post. There are two modes of editing: Visual and Text. 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 Text mode allows you to enter HTML along with your post text. Line breaks will be converted to paragraphs automatically. 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 Text 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>';
   296 	$title_and_editor .= '<p>' . __( '<strong>Post editor</strong> - Enter the text for your post. There are two modes of editing: Visual and Text. Choose the mode by clicking on the appropriate tab.' ) . '</p>';
       
   297 	$title_and_editor .= '<p>' . __( 'Visual mode gives you a WYSIWYG editor. Click the last icon in the row to get a second row of controls. ') . '</p>';
       
   298 	$title_and_editor .= '<p>' . __( 'The Text mode allows you to enter HTML along with your post text. Line breaks will be converted to paragraphs automatically.' ) . '</p>';
       
   299 	$title_and_editor .= '<p>' . __( 'You can insert media files by clicking the icons above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode.' ) . '</p>';
       
   300 	$title_and_editor .= '<p>' . __( 'You can enable distraction-free writing mode using the icon to the right. This feature is not available for old browsers or devices with small screens, and requires that the full-height editor be enabled in Screen Options.' ) . '</p>';
       
   301 	$title_and_editor .= '<p>' . __( 'Keyboard users: When you&#8217;re working in the visual editor, you can use <kbd>Alt + F10</kbd> to access the toolbar.' ) . '</p>';
   260 
   302 
   261 	get_current_screen()->add_help_tab( array(
   303 	get_current_screen()->add_help_tab( array(
   262 		'id'      => 'title-post-editor',
   304 		'id'      => 'title-post-editor',
   263 		'title'   => __('Title and Post Editor'),
   305 		'title'   => __('Title and Post Editor'),
   264 		'content' => $title_and_editor,
   306 		'content' => $title_and_editor,
   265 	) );
   307 	) );
   266 
   308 
   267 	get_current_screen()->set_help_sidebar(
   309 	get_current_screen()->set_help_sidebar(
   268 			'<p>' . sprintf(__('You can also create posts with the <a href="%s">Press This bookmarklet</a>.'), 'options-writing.php') . '</p>' .
   310 			'<p>' . sprintf(__('You can also create posts with the <a href="%s">Press This bookmarklet</a>.'), 'options-writing.php') . '</p>' .
   269 			'<p><strong>' . __('For more information:') . '</strong></p>' .
   311 			'<p><strong>' . __('For more information:') . '</strong></p>' .
   270 			'<p>' . __('<a href="http://codex.wordpress.org/Posts_Add_New_Screen" target="_blank">Documentation on Writing and Editing Posts</a>') . '</p>' .
   312 			'<p>' . __('<a href="https://codex.wordpress.org/Posts_Add_New_Screen" target="_blank">Documentation on Writing and Editing Posts</a>') . '</p>' .
   271 			'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
   313 			'<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
   272 	);
   314 	);
   273 } elseif ( 'page' == $post_type ) {
   315 } elseif ( 'page' == $post_type ) {
   274 	$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>' .
   316 	$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>' .
   275 		'<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 Text 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>';
   317 		'<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 Text 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>';
   276 
   318 
   280 		'content' => $about_pages,
   322 		'content' => $about_pages,
   281 	) );
   323 	) );
   282 
   324 
   283 	get_current_screen()->set_help_sidebar(
   325 	get_current_screen()->set_help_sidebar(
   284 			'<p><strong>' . __('For more information:') . '</strong></p>' .
   326 			'<p><strong>' . __('For more information:') . '</strong></p>' .
   285 			'<p>' . __('<a href="http://codex.wordpress.org/Pages_Add_New_Screen" target="_blank">Documentation on Adding New Pages</a>') . '</p>' .
   327 			'<p>' . __('<a href="https://codex.wordpress.org/Pages_Add_New_Screen" target="_blank">Documentation on Adding New Pages</a>') . '</p>' .
   286 			'<p>' . __('<a href="http://codex.wordpress.org/Pages_Screen#Editing_Individual_Pages" target="_blank">Documentation on Editing Pages</a>') . '</p>' .
   328 			'<p>' . __('<a href="https://codex.wordpress.org/Pages_Screen#Editing_Individual_Pages" target="_blank">Documentation on Editing Pages</a>') . '</p>' .
   287 			'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
   329 			'<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
   288 	);
   330 	);
   289 } elseif ( 'attachment' == $post_type ) {
   331 } elseif ( 'attachment' == $post_type ) {
   290 	get_current_screen()->add_help_tab( array(
   332 	get_current_screen()->add_help_tab( array(
   291 		'id'      => 'overview',
   333 		'id'      => 'overview',
   292 		'title'   => __('Overview'),
   334 		'title'   => __('Overview'),
   297 			'<p>' . __('Remember to click Update Media to save metadata entered or changed.') . '</p>'
   339 			'<p>' . __('Remember to click Update Media to save metadata entered or changed.') . '</p>'
   298 	) );
   340 	) );
   299 
   341 
   300 	get_current_screen()->set_help_sidebar(
   342 	get_current_screen()->set_help_sidebar(
   301 	'<p><strong>' . __('For more information:') . '</strong></p>' .
   343 	'<p><strong>' . __('For more information:') . '</strong></p>' .
   302 	'<p>' . __('<a href="http://codex.wordpress.org/Media_Add_New_Screen#Edit_Media" target="_blank">Documentation on Edit Media</a>') . '</p>' .
   344 	'<p>' . __('<a href="https://codex.wordpress.org/Media_Add_New_Screen#Edit_Media" target="_blank">Documentation on Edit Media</a>') . '</p>' .
   303 	'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
   345 	'<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
   304 	);
   346 	);
   305 }
   347 }
   306 
   348 
   307 if ( 'post' == $post_type || 'page' == $post_type ) {
   349 if ( 'post' == $post_type || 'page' == $post_type ) {
   308 	$inserting_media = '<p>' . __( 'You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the &#8220;Create a new gallery&#8221; button.' ) . '</p>';
   350 	$inserting_media = '<p>' . __( 'You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the &#8220;Create a new gallery&#8221; button.' ) . '</p>';
   309 	$inserting_media .= '<p>' . __( 'You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Please refer to the Codex to <a href="http://codex.wordpress.org/Embeds">learn more about embeds</a>.' ) . '</p>';
   351 	$inserting_media .= '<p>' . __( 'You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Please refer to the Codex to <a href="https://codex.wordpress.org/Embeds">learn more about embeds</a>.' ) . '</p>';
   310 
   352 
   311 	get_current_screen()->add_help_tab( array(
   353 	get_current_screen()->add_help_tab( array(
   312 		'id'		=> 'inserting-media',
   354 		'id'		=> 'inserting-media',
   313 		'title'		=> __( 'Inserting Media' ),
   355 		'title'		=> __( 'Inserting Media' ),
   314 		'content' 	=> $inserting_media,
   356 		'content' 	=> $inserting_media,
   318 if ( 'post' == $post_type ) {
   360 if ( 'post' == $post_type ) {
   319 	$publish_box = '<p>' . __('Several boxes on this screen contain settings for how your content will be published, including:') . '</p>';
   361 	$publish_box = '<p>' . __('Several boxes on this screen contain settings for how your content will be published, including:') . '</p>';
   320 	$publish_box .= '<ul><li>' . __('<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.') . '</li>';
   362 	$publish_box .= '<ul><li>' . __('<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.') . '</li>';
   321 
   363 
   322 	if ( current_theme_supports( 'post-formats' ) && post_type_supports( 'post', 'post-formats' ) ) {
   364 	if ( current_theme_supports( 'post-formats' ) && post_type_supports( 'post', 'post-formats' ) ) {
   323 		$publish_box .= '<li>' . __( '<strong>Format</strong> - Post Formats designate 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.' ) . '</li>';
   365 		$publish_box .= '<li>' . __( '<strong>Format</strong> - Post Formats designate 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="https://codex.wordpress.org/Post_Formats#Supported_Formats">descriptions of each post format</a>. Your theme could enable all or some of 10 possible formats.' ) . '</li>';
   324 	}
   366 	}
   325 
   367 
   326 	if ( current_theme_supports( 'post-thumbnails' ) && post_type_supports( 'post', 'thumbnail' ) ) {
   368 	if ( current_theme_supports( 'post-thumbnails' ) && post_type_supports( 'post', 'thumbnail' ) ) {
   327 		$publish_box .= '<li>' . __('<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.') . '</li>';
   369 		$publish_box .= '<li>' . __('<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.') . '</li>';
   328 	}
   370 	}
   357 
   399 
   358 require_once( ABSPATH . 'wp-admin/admin-header.php' );
   400 require_once( ABSPATH . 'wp-admin/admin-header.php' );
   359 ?>
   401 ?>
   360 
   402 
   361 <div class="wrap">
   403 <div class="wrap">
   362 <?php screen_icon(); ?>
       
   363 <h2><?php
   404 <h2><?php
   364 echo esc_html( $title );
   405 echo esc_html( $title );
   365 if ( isset( $post_new_file ) && current_user_can( $post_type_object->cap->create_posts ) )
   406 if ( isset( $post_new_file ) && current_user_can( $post_type_object->cap->create_posts ) )
   366 	echo ' <a href="' . esc_url( admin_url( $post_new_file ) ) . '" class="add-new-h2">' . esc_html( $post_type_object->labels->add_new ) . '</a>';
   407 	echo ' <a href="' . esc_url( admin_url( $post_new_file ) ) . '" class="add-new-h2">' . esc_html( $post_type_object->labels->add_new ) . '</a>';
   367 ?></h2>
   408 ?></h2>
   368 <?php if ( $notice ) : ?>
   409 <?php if ( $notice ) : ?>
   369 <div id="notice" class="error"><p id="has-newer-autosave"><?php echo $notice ?></p></div>
   410 <div id="notice" class="notice notice-warning"><p id="has-newer-autosave"><?php echo $notice ?></p></div>
   370 <?php endif; ?>
   411 <?php endif; ?>
   371 <?php if ( $message ) : ?>
   412 <?php if ( $message ) : ?>
   372 <div id="message" class="updated"><p><?php echo $message; ?></p></div>
   413 <div id="message" class="updated notice notice-success is-dismissible"><p><?php echo $message; ?></p></div>
   373 <?php endif; ?>
   414 <?php endif; ?>
   374 <div id="lost-connection-notice" class="error hidden">
   415 <div id="lost-connection-notice" class="error hidden">
   375 	<p><span class="spinner"></span> <?php _e( '<strong>Connection lost.</strong> Saving has been disabled until you&#8217;re reconnected.' ); ?>
   416 	<p><span class="spinner"></span> <?php _e( '<strong>Connection lost.</strong> Saving has been disabled until you&#8217;re reconnected.' ); ?>
   376 	<span class="hide-if-no-sessionstorage"><?php _e( 'We&#8217;re backing up this post in your browser, just in case.' ); ?></span>
   417 	<span class="hide-if-no-sessionstorage"><?php _e( 'We&#8217;re backing up this post in your browser, just in case.' ); ?></span>
   377 	</p>
   418 	</p>
   378 </div>
   419 </div>
   379 <?php
   420 <form name="post" action="post.php" method="post" id="post"<?php
   380 /**
   421 /**
   381  * Fires inside the post editor <form> tag.
   422  * Fires inside the post editor form tag.
   382  *
   423  *
   383  * @since 3.0.0
   424  * @since 3.0.0
   384  *
   425  *
   385  * @param WP_Post $post Post object.
   426  * @param WP_Post $post Post object.
   386  */
   427  */
   387 ?>
   428 do_action( 'post_edit_form_tag', $post );
   388 <form name="post" action="post.php" method="post" id="post"<?php do_action( 'post_edit_form_tag', $post ); ?>>
   429 
       
   430 $referer = wp_get_referer();
       
   431 ?>>
   389 <?php wp_nonce_field($nonce_action); ?>
   432 <?php wp_nonce_field($nonce_action); ?>
   390 <input type="hidden" id="user-id" name="user_ID" value="<?php echo (int) $user_ID ?>" />
   433 <input type="hidden" id="user-id" name="user_ID" value="<?php echo (int) $user_ID ?>" />
   391 <input type="hidden" id="hiddenaction" name="action" value="<?php echo esc_attr( $form_action ) ?>" />
   434 <input type="hidden" id="hiddenaction" name="action" value="<?php echo esc_attr( $form_action ) ?>" />
   392 <input type="hidden" id="originalaction" name="originalaction" value="<?php echo esc_attr( $form_action ) ?>" />
   435 <input type="hidden" id="originalaction" name="originalaction" value="<?php echo esc_attr( $form_action ) ?>" />
   393 <input type="hidden" id="post_author" name="post_author" value="<?php echo esc_attr( $post->post_author ); ?>" />
   436 <input type="hidden" id="post_author" name="post_author" value="<?php echo esc_attr( $post->post_author ); ?>" />
   394 <input type="hidden" id="post_type" name="post_type" value="<?php echo esc_attr( $post_type ) ?>" />
   437 <input type="hidden" id="post_type" name="post_type" value="<?php echo esc_attr( $post_type ) ?>" />
   395 <input type="hidden" id="original_post_status" name="original_post_status" value="<?php echo esc_attr( $post->post_status) ?>" />
   438 <input type="hidden" id="original_post_status" name="original_post_status" value="<?php echo esc_attr( $post->post_status) ?>" />
   396 <input type="hidden" id="referredby" name="referredby" value="<?php echo esc_url(wp_get_referer()); ?>" />
   439 <input type="hidden" id="referredby" name="referredby" value="<?php echo $referer ? esc_url( $referer ) : ''; ?>" />
   397 <?php if ( ! empty( $active_post_lock ) ) { ?>
   440 <?php if ( ! empty( $active_post_lock ) ) { ?>
   398 <input type="hidden" id="active_post_lock" value="<?php echo esc_attr( implode( ':', $active_post_lock ) ); ?>" />
   441 <input type="hidden" id="active_post_lock" value="<?php echo esc_attr( implode( ':', $active_post_lock ) ); ?>" />
   399 <?php
   442 <?php
   400 }
   443 }
   401 if ( 'draft' != get_post_status( $post ) )
   444 if ( 'draft' != get_post_status( $post ) )
   402 	wp_original_referer_field(true, 'previous');
   445 	wp_original_referer_field(true, 'previous');
   403 
   446 
   404 echo $form_extra;
   447 echo $form_extra;
   405 
   448 
   406 wp_nonce_field( 'autosave', 'autosavenonce', false );
       
   407 wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
   449 wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
   408 wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
   450 wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
   409 ?>
   451 ?>
   410 
   452 
   411 <?php
   453 <?php
   434 	 * @since 3.1.0
   476 	 * @since 3.1.0
   435 	 *
   477 	 *
   436 	 * @param string  $text Placeholder text. Default 'Enter title here'.
   478 	 * @param string  $text Placeholder text. Default 'Enter title here'.
   437 	 * @param WP_Post $post Post object.
   479 	 * @param WP_Post $post Post object.
   438 	 */
   480 	 */
       
   481 	$title_placeholder = apply_filters( 'enter_title_here', __( 'Enter title here' ), $post );
   439 	?>
   482 	?>
   440 	<label class="screen-reader-text" id="title-prompt-text" for="title"><?php echo apply_filters( 'enter_title_here', __( 'Enter title here' ), $post ); ?></label>
   483 	<label class="screen-reader-text" id="title-prompt-text" for="title"><?php echo $title_placeholder; ?></label>
   441 	<input type="text" name="post_title" size="30" value="<?php echo esc_attr( htmlspecialchars( $post->post_title ) ); ?>" id="title" autocomplete="off" />
   484 	<input type="text" name="post_title" size="30" value="<?php echo esc_attr( htmlspecialchars( $post->post_title ) ); ?>" id="title" spellcheck="true" autocomplete="off" />
   442 </div>
   485 </div>
       
   486 <?php
       
   487 /**
       
   488  * Fires before the permalink field in the edit form.
       
   489  *
       
   490  * @since 4.1.0
       
   491  *
       
   492  * @param WP_Post $post Post object.
       
   493  */
       
   494 do_action( 'edit_form_before_permalink', $post );
       
   495 ?>
   443 <div class="inside">
   496 <div class="inside">
   444 <?php
   497 <?php
   445 $sample_permalink_html = $post_type_object->public ? get_sample_permalink_html($post->ID) : '';
   498 $sample_permalink_html = $post_type_object->public ? get_sample_permalink_html($post->ID) : '';
   446 $shortlink = wp_get_shortlink($post->ID, 'post');
   499 $shortlink = wp_get_shortlink($post->ID, 'post');
   447 $permalink = get_permalink( $post->ID );
   500 
   448 if ( !empty( $shortlink ) && $shortlink !== $permalink && $permalink !== home_url('?page_id=' . $post->ID) )
   501 if ( !empty( $shortlink ) && $shortlink !== $permalink && $permalink !== home_url('?page_id=' . $post->ID) )
   449     $sample_permalink_html .= '<input id="shortlink" type="hidden" value="' . esc_attr($shortlink) . '" /><a href="#" class="button button-small" onclick="prompt(&#39;URL:&#39;, jQuery(\'#shortlink\').val()); return false;">' . __('Get Shortlink') . '</a>';
   502     $sample_permalink_html .= '<input id="shortlink" type="hidden" value="' . esc_attr($shortlink) . '" /><a href="#" class="button button-small" onclick="prompt(&#39;URL:&#39;, jQuery(\'#shortlink\').val()); return false;">' . __('Get Shortlink') . '</a>';
   450 
   503 
   451 if ( $post_type_object->public && ! ( 'pending' == get_post_status( $post ) && !current_user_can( $post_type_object->cap->publish_posts ) ) ) {
   504 if ( $post_type_object->public && ! ( 'pending' == get_post_status( $post ) && !current_user_can( $post_type_object->cap->publish_posts ) ) ) {
   452 	$has_sample_permalink = $sample_permalink_html && 'auto-draft' != $post->post_status;
   505 	$has_sample_permalink = $sample_permalink_html && 'auto-draft' != $post->post_status;
   476  */
   529  */
   477 do_action( 'edit_form_after_title', $post );
   530 do_action( 'edit_form_after_title', $post );
   478 
   531 
   479 if ( post_type_supports($post_type, 'editor') ) {
   532 if ( post_type_supports($post_type, 'editor') ) {
   480 ?>
   533 ?>
   481 <div id="postdivrich" class="postarea edit-form-section">
   534 <div id="postdivrich" class="postarea<?php if ( $_wp_editor_expand ) { echo ' wp-editor-expand'; } ?>">
   482 
   535 
   483 <?php wp_editor( $post->post_content, 'content', array(
   536 <?php wp_editor( $post->post_content, 'content', array(
   484 	'dfw' => true,
   537 	'_content_editor_dfw' => $_content_editor_dfw,
   485 	'tabfocus_elements' => 'insert-media-button,save-post',
   538 	'drag_drop_upload' => true,
   486 	'editor_height' => 360,
   539 	'tabfocus_elements' => 'content-html,save-post',
       
   540 	'editor_height' => 300,
       
   541 	'tinymce' => array(
       
   542 		'resize' => false,
       
   543 		'wp_autoresize_on' => $_wp_editor_expand,
       
   544 		'add_unload_trigger' => false,
       
   545 	),
   487 ) ); ?>
   546 ) ); ?>
   488 <table id="post-status-info" cellspacing="0"><tbody><tr>
   547 <table id="post-status-info"><tbody><tr>
   489 	<td id="wp-word-count"><?php printf( __( 'Word count: %s' ), '<span class="word-count">0</span>' ); ?></td>
   548 	<td id="wp-word-count"><?php printf( __( 'Word count: %s' ), '<span class="word-count">0</span>' ); ?></td>
   490 	<td class="autosave-info">
   549 	<td class="autosave-info">
   491 	<span class="autosave-message">&nbsp;</span>
   550 	<span class="autosave-message">&nbsp;</span>
   492 <?php
   551 <?php
   493 	if ( 'auto-draft' != $post->post_status ) {
   552 	if ( 'auto-draft' != $post->post_status ) {
   498 			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));
   557 			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));
   499 		}
   558 		}
   500 		echo '</span>';
   559 		echo '</span>';
   501 	} ?>
   560 	} ?>
   502 	</td>
   561 	</td>
       
   562 	<td id="content-resize-handle" class="hide-if-no-js"><br /></td>
   503 </tr></tbody></table>
   563 </tr></tbody></table>
   504 
   564 
   505 </div>
   565 </div>
   506 <?php }
   566 <?php }
   507 /**
   567 /**
   555 
   615 
   556 if ( 'page' == $post_type ) {
   616 if ( 'page' == $post_type ) {
   557 	/**
   617 	/**
   558 	 * Fires after 'normal' context meta boxes have been output for the 'page' post type.
   618 	 * Fires after 'normal' context meta boxes have been output for the 'page' post type.
   559 	 *
   619 	 *
   560 	 * @since 1.5.2
   620 	 * @since 1.5.0
   561 	 *
   621 	 *
   562 	 * @param WP_Post $post Post object.
   622 	 * @param WP_Post $post Post object.
   563 	 */
   623 	 */
   564 	do_action( 'edit_page_form', $post );
   624 	do_action( 'edit_page_form', $post );
   565 }
   625 }
   566 else {
   626 else {
   567 	/**
   627 	/**
   568 	 * Fires after 'normal' context meta boxes have been output for all post types other than 'page'.
   628 	 * Fires after 'normal' context meta boxes have been output for all post types other than 'page'.
   569 	 *
   629 	 *
   570 	 * @since 1.5.2
   630 	 * @since 1.5.0
   571 	 *
   631 	 *
   572 	 * @param WP_Post $post Post object.
   632 	 * @param WP_Post $post Post object.
   573 	 */
   633 	 */
   574 	do_action( 'edit_form_advanced', $post );
   634 	do_action( 'edit_form_advanced', $post );
   575 }
   635 }
   599 <?php
   659 <?php
   600 if ( post_type_supports( $post_type, 'comments' ) )
   660 if ( post_type_supports( $post_type, 'comments' ) )
   601 	wp_comment_reply();
   661 	wp_comment_reply();
   602 ?>
   662 ?>
   603 
   663 
   604 <?php if ( post_type_supports( $post_type, 'title' ) && '' === $post->post_title ) : ?>
   664 <?php if ( ! wp_is_mobile() && post_type_supports( $post_type, 'title' ) && '' === $post->post_title ) : ?>
   605 <script type="text/javascript">
   665 <script type="text/javascript">
   606 try{document.post.title.focus();}catch(e){}
   666 try{document.post.title.focus();}catch(e){}
   607 </script>
   667 </script>
   608 <?php endif; ?>
   668 <?php endif; ?>