Directory: /home/deremeavgh/www/wp-admin

Go to Parent Directory

NameTypeAction
.. DIR Open
.rnd FILE View Delete
about.php FILE View Delete
admin-ajax.php FILE View Delete
admin-footer.php FILE View Delete
admin-functions.php FILE View Delete
admin-header.php FILE View Delete
admin-post.php FILE View Delete
admin.php FILE View Delete
async-upload.php FILE View Delete
authorize-application.php FILE View Delete
comment.php FILE View Delete
contribute.php FILE View Delete
credits.php FILE View Delete
css DIR Open
custom-background.php FILE View Delete
custom-header.php FILE View Delete
customize.php FILE View Delete
edit-comments.php FILE View Delete
edit-form-advanced.php FILE View Delete
edit-form-blocks.php FILE View Delete
edit-form-comment.php FILE View Delete
edit-link-form.php FILE View Delete
edit-tag-form.php FILE View Delete
edit-tags.php FILE View Delete
edit.php FILE View Delete
erase-personal-data.php FILE View Delete
export-personal-data.php FILE View Delete
export.php FILE View Delete
freedoms.php FILE View Delete
images DIR Open
import.php FILE View Delete
includes DIR Open
index.php FILE View Delete
install-helper.php FILE View Delete
install.php FILE View Delete
js DIR Open
link-add.php FILE View Delete
link-manager.php FILE View Delete
link-parse-opml.php FILE View Delete
link.php FILE View Delete
load-scripts.php FILE View Delete
load-styles.php FILE View Delete
maint DIR Open
media-new.php FILE View Delete
media-upload.php FILE View Delete
media.php FILE View Delete
menu-header.php FILE View Delete
menu.php FILE View Delete
moderation.php FILE View Delete
ms-admin.php FILE View Delete
ms-delete-site.php FILE View Delete
ms-edit.php FILE View Delete
ms-options.php FILE View Delete
ms-sites.php FILE View Delete
ms-themes.php FILE View Delete
ms-upgrade-network.php FILE View Delete
ms-users.php FILE View Delete
my-sites.php FILE View Delete
nav-menus.php FILE View Delete
network DIR Open
network.php FILE View Delete
options-discussion.php FILE View Delete
options-general.php FILE View Delete
options-head.php FILE View Delete
options-media.php FILE View Delete
options-permalink.php FILE View Delete
options-privacy.php FILE View Delete
options-reading.php FILE View Delete
options-writing.php FILE View Delete
options.php FILE View Delete
plugin-editor.php FILE View Delete
plugin-install.php FILE View Delete
plugins.php FILE View Delete
post-new.php FILE View Delete
post.php FILE View Delete
press-this.php FILE View Delete
privacy-policy-guide.php FILE View Delete
privacy.php FILE View Delete
profile.php FILE View Delete
revision.php FILE View Delete
setup-config.php FILE View Delete
site-editor.php FILE View Delete
site-health-info.php FILE View Delete
site-health.php FILE View Delete
term.php FILE View Delete
theme-editor.php FILE View Delete
theme-install.php FILE View Delete
themes.php FILE View Delete
tools.php FILE View Delete
update-core.php FILE View Delete
update.php FILE View Delete
upgrade-functions.php FILE View Delete
upgrade.php FILE View Delete
upload.php FILE View Delete
user DIR Open
user-edit.php FILE View Delete
user-new.php FILE View Delete
users.php FILE View Delete
widgets-form-blocks.php FILE View Delete
widgets-form.php FILE View Delete
widgets.php FILE View Delete

File: /home/deremeavgh/www/wp-admin/post-new.php

<?php
/**
 * New Post Administration Screen.
 *
 * @package WordPress
 * @subpackage Administration
 */

/** Load WordPress Administration Bootstrap */
require_once __DIR__ . '/admin.php';

/**
 * @global string       $post_type        Global post type.
 * @global WP_Post_Type $post_type_object Global post type object.
 * @global WP_Post      $post             Global post object.
 */
global $post_type, $post_type_object, $post;

if ( ! isset( $_GET['post_type'] ) ) {
	$post_type = 'post';
} elseif ( in_array( $_GET['post_type'], get_post_types( array( 'show_ui' => true ) ), true ) ) {
	$post_type = $_GET['post_type'];
} else {
	wp_die( __( 'Invalid post type.' ) );
}
$post_type_object = get_post_type_object( $post_type );

if ( 'post' === $post_type ) {
	$parent_file  = 'edit.php';
	$submenu_file = 'post-new.php';
} elseif ( 'attachment' === $post_type ) {
	if ( wp_redirect( admin_url( 'media-new.php' ) ) ) {
		exit;
	}
} else {
	$submenu_file = "post-new.php?post_type=$post_type";
	if ( isset( $post_type_object ) && $post_type_object->show_in_menu && true !== $post_type_object->show_in_menu ) {
		$parent_file = $post_type_object->show_in_menu;
		// 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;
			}
		}
	} else {
		$parent_file = "edit.php?post_type=$post_type";
	}
}

$title = $post_type_object->labels->add_new_item;

$editing = true;

if ( ! current_user_can( $post_type_object->cap->edit_posts ) || ! current_user_can( $post_type_object->cap->create_posts ) ) {
	wp_die(
		'<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' .
		'<p>' . __( 'Sorry, you are not allowed to create posts as this user.' ) . '</p>',
		403
	);
}

$post    = get_default_post_to_edit( $post_type, true );
$post_ID = $post->ID;

/** This filter is documented in wp-admin/post.php */
if ( apply_filters( 'replace_editor', false, $post ) !== true ) {
	if ( use_block_editor_for_post( $post ) ) {
		require ABSPATH . 'wp-admin/edit-form-blocks.php';
	} else {
		wp_enqueue_script( 'autosave' );
		require ABSPATH . 'wp-admin/edit-form-advanced.php';
	}
} else {
	// Flag that we're not loading the block editor.
	$current_screen = get_current_screen();
	$current_screen->is_block_editor( false );
}

require_once ABSPATH . 'wp-admin/admin-footer.php';

Upload Encrypted File