2004-11-16 14:29:51 -05:00
|
|
|
<?php
|
2008-08-16 03:27:34 -04:00
|
|
|
/**
|
|
|
|
* New page administration panel.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** WordPress Administration Bootstrap */
|
2004-11-16 14:29:51 -05:00
|
|
|
require_once('admin.php');
|
2008-10-17 16:02:03 -04:00
|
|
|
$title = __('Add New Page');
|
2008-09-25 15:33:53 -04:00
|
|
|
$parent_file = 'edit-pages.php';
|
2005-07-23 02:22:48 -04:00
|
|
|
$editing = true;
|
2006-08-10 23:54:45 -04:00
|
|
|
wp_enqueue_script('autosave');
|
2009-10-13 06:02:42 -04:00
|
|
|
wp_enqueue_script('post');
|
2008-02-18 12:11:12 -05:00
|
|
|
if ( user_can_richedit() )
|
|
|
|
wp_enqueue_script('editor');
|
2008-06-02 17:46:25 -04:00
|
|
|
add_thickbox();
|
2008-01-25 18:11:54 -05:00
|
|
|
wp_enqueue_script('media-upload');
|
2008-04-29 15:17:23 -04:00
|
|
|
wp_enqueue_script('word-count');
|
2008-01-25 18:11:54 -05:00
|
|
|
|
2005-07-14 22:16:45 -04:00
|
|
|
if ( current_user_can('edit_pages') ) {
|
2004-11-16 14:29:51 -05:00
|
|
|
$action = 'post';
|
2008-02-02 14:22:14 -05:00
|
|
|
$post = get_default_page_to_edit();
|
2004-11-16 14:29:51 -05:00
|
|
|
|
|
|
|
include('edit-page-form.php');
|
|
|
|
}
|
|
|
|
|
2008-11-11 17:40:16 -05:00
|
|
|
include('admin-footer.php');
|
|
|
|
|
|
|
|
?>
|