2006-10-25 18:55:05 -04:00
|
|
|
<?php
|
2008-08-14 02:30:38 -04:00
|
|
|
/**
|
2011-04-28 11:24:49 -04:00
|
|
|
* New Post Administration Screen.
|
2008-08-14 02:30:38 -04:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** Load WordPress Administration Bootstrap */
|
2013-09-24 20:18:11 -04:00
|
|
|
require_once( dirname( __FILE__ ) . '/admin.php' );
|
2010-01-04 11:58:43 -05:00
|
|
|
|
2015-05-28 17:41:30 -04:00
|
|
|
/**
|
|
|
|
* @global string $post_type
|
|
|
|
* @global object $post_type_object
|
|
|
|
* @global WP_Post $post
|
|
|
|
*/
|
2015-01-10 00:29:22 -05:00
|
|
|
global $post_type, $post_type_object, $post;
|
|
|
|
|
|
|
|
if ( ! isset( $_GET['post_type'] ) ) {
|
2010-03-01 15:33:03 -05:00
|
|
|
$post_type = 'post';
|
2015-01-10 00:29:22 -05:00
|
|
|
} elseif ( in_array( $_GET['post_type'], get_post_types( array('show_ui' => true ) ) ) ) {
|
2010-01-04 11:58:43 -05:00
|
|
|
$post_type = $_GET['post_type'];
|
2015-01-10 00:29:22 -05:00
|
|
|
} else {
|
2016-07-17 12:05:31 -04:00
|
|
|
wp_die( __( 'Invalid post type.' ) );
|
2015-01-10 00:29:22 -05:00
|
|
|
}
|
2011-11-21 10:35:57 -05:00
|
|
|
$post_type_object = get_post_type_object( $post_type );
|
|
|
|
|
|
|
|
if ( 'post' == $post_type ) {
|
2010-01-04 11:58:43 -05:00
|
|
|
$parent_file = 'edit.php';
|
|
|
|
$submenu_file = 'post-new.php';
|
2012-11-21 12:40:53 -05:00
|
|
|
} elseif ( 'attachment' == $post_type ) {
|
2013-09-16 13:52:10 -04:00
|
|
|
if ( wp_redirect( admin_url( 'media-new.php' ) ) )
|
|
|
|
exit;
|
2011-11-21 10:35:57 -05:00
|
|
|
} else {
|
2011-11-23 15:45:23 -05:00
|
|
|
$submenu_file = "post-new.php?post_type=$post_type";
|
|
|
|
if ( isset( $post_type_object ) && $post_type_object->show_in_menu && $post_type_object->show_in_menu !== true ) {
|
2011-11-21 10:35:57 -05:00
|
|
|
$parent_file = $post_type_object->show_in_menu;
|
2014-07-25 11:26:18 -04:00
|
|
|
// What if there isn't a post-new.php item for this post type?
|
|
|
|
if ( ! isset( $_registered_pages[ get_plugin_page_hookname( "post-new.php?post_type=$post_type", $post_type_object->show_in_menu ) ] ) ) {
|
|
|
|
if ( isset( $_registered_pages[ get_plugin_page_hookname( "edit.php?post_type=$post_type", $post_type_object->show_in_menu ) ] ) ) {
|
|
|
|
// Fall back to edit.php for that post type, if it exists
|
|
|
|
$submenu_file = "edit.php?post_type=$post_type";
|
|
|
|
} else {
|
|
|
|
// Otherwise, give up and highlight the parent
|
|
|
|
$submenu_file = $parent_file;
|
|
|
|
}
|
|
|
|
}
|
2011-11-23 15:45:23 -05:00
|
|
|
} else {
|
2011-11-21 10:35:57 -05:00
|
|
|
$parent_file = "edit.php?post_type=$post_type";
|
2011-11-23 15:45:23 -05:00
|
|
|
}
|
2010-01-04 11:58:43 -05:00
|
|
|
}
|
|
|
|
|
2010-05-11 15:52:50 -04:00
|
|
|
$title = $post_type_object->labels->add_new_item;
|
2010-01-04 11:58:43 -05:00
|
|
|
|
2006-10-25 18:55:05 -04:00
|
|
|
$editing = true;
|
2008-01-02 20:34:11 -05:00
|
|
|
|
2015-09-02 14:36:22 -04:00
|
|
|
if ( ! current_user_can( $post_type_object->cap->edit_posts ) || ! current_user_can( $post_type_object->cap->create_posts ) ) {
|
|
|
|
wp_die(
|
|
|
|
'<h1>' . __( 'Cheatin’ uh?' ) . '</h1>' .
|
2016-06-29 11:16:29 -04:00
|
|
|
'<p>' . __( 'Sorry, you are not allowed to create posts as this user.' ) . '</p>',
|
2015-09-02 14:36:22 -04:00
|
|
|
403
|
|
|
|
);
|
|
|
|
}
|
2006-10-25 18:55:05 -04:00
|
|
|
|
2012-04-12 14:49:48 -04:00
|
|
|
// Schedule auto-draft cleanup
|
2017-10-11 08:06:48 -04:00
|
|
|
if ( ! wp_next_scheduled( 'wp_scheduled_auto_draft_delete' ) ) {
|
2012-04-12 14:49:48 -04:00
|
|
|
wp_schedule_event( time(), 'daily', 'wp_scheduled_auto_draft_delete' );
|
2013-07-02 21:50:39 -04:00
|
|
|
}
|
|
|
|
|
2010-11-01 12:28:35 -04:00
|
|
|
$post = get_default_post_to_edit( $post_type, true );
|
|
|
|
$post_ID = $post->ID;
|
2017-10-11 08:06:48 -04:00
|
|
|
|
|
|
|
/** This filter is documented in wp-admin/post.php */
|
|
|
|
if ( apply_filters( 'replace_editor', false, $post ) !== true ) {
|
|
|
|
wp_enqueue_script( 'autosave' );
|
|
|
|
include( ABSPATH . 'wp-admin/edit-form-advanced.php' );
|
|
|
|
}
|
|
|
|
|
2013-09-24 20:18:11 -04:00
|
|
|
include( ABSPATH . 'wp-admin/admin-footer.php' );
|