编辑:admin-ajax.php
<?php /** * WordPress Ajax Process Execution * * @package WordPress * @subpackage Administration * * @link https://developer.wordpress.org/plugins/javascript/ajax */ /** * Executing Ajax process. * * @since 2.1.0 */ define( 'DOING_AJAX', true ); if ( ! defined( 'WP_ADMIN' ) ) { define( 'WP_ADMIN', true ); } /** Load WordPress Bootstrap */ require_once dirname( __DIR__ ) . '/wp-load.php'; /** Allow for cross-domain requests (from the front end). */ send_origin_headers(); header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) ); header( 'X-Robots-Tag: noindex' ); // Require a valid action parameter. if ( empty( $_REQUEST['action'] ) || ! is_scalar( $_REQUEST['action'] ) ) { wp_die( '0', 400 ); } /** 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'; 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', 'rest-nonce', ); $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', 'delete-inactive-widgets', 'set-post-thumbnail', 'date_format', 'time_format', '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', 'media-create-image-subsizes', 'heartbeat', 'get-revision-diffs', 'save-user-color-scheme', 'update-widget', 'query-themes', 'parse-embed', 'set-attachment-thumbnail', 'parse-media-shortcode', 'destroy-sessions', 'install-plugin', 'activate-plugin', 'update-plugin', 'crop-image', 'generate-password', 'save-wporg-username', 'delete-plugin', 'search-plugins', 'search-install-plugins', 'activate-plugin', 'update-theme', 'delete-theme', 'install-theme', 'get-post-thumbnail-html', 'get-community-events', 'edit-theme-plugin-file', 'wp-privacy-export-personal-data', 'wp-privacy-erase-personal-data', 'health-check-site-status-result', 'health-check-dotorg-communication', 'health-check-is-in-debug-mode', 'health-check-background-updates', 'health-check-loopback-requests', 'health-check-get-sizes', 'toggle-auto-updates', 'send-password-reset', ); // Deprecated. $core_actions_post_deprecated = array( 'wp-fullscreen-save-post', 'press-this-save-post', 'press-this-add-category', 'health-check-dotorg-communication', 'health-check-is-in-debug-mode', 'health-check-background-updates', 'health-check-loopback-requests', ); $core_actions_post = array_merge( $core_actions_post, $core_actions_post_deprecated ); // Register core Ajax calls. if ( ! empty( $_GET['action'] ) && in_array( $_GET['action'], $core_actions_get, true ) ) { add_action( 'wp_ajax_' . $_GET['action'], 'wp_ajax_' . str_replace( '-', '_', $_GET['action'] ), 1 ); } if ( ! empty( $_POST['action'] ) && in_array( $_POST['action'], $core_actions_post, true ) ) { add_action( 'wp_ajax_' . $_POST['action'], 'wp_ajax_' . str_replace( '-', '_', $_POST['action'] ), 1 ); } add_action( 'wp_ajax_nopriv_generate-password', 'wp_ajax_nopriv_generate_password' ); add_action( 'wp_ajax_nopriv_heartbeat', 'wp_ajax_nopriv_heartbeat', 1 ); // Register Plugin Dependencies Ajax calls. add_action( 'wp_ajax_check_plugin_dependencies', array( 'WP_Plugin_Dependencies', 'check_plugin_dependencies_during_ajax' ) ); $action = $_REQUEST['action']; if ( is_user_logged_in() ) { // If no action is registered, return a Bad Request response. if ( ! has_action( "wp_ajax_{$action}" ) ) { wp_die( '0', 400 ); } /** * Fires authenticated Ajax actions for logged-in users. * * The dynamic portion of the hook name, `$action`, refers * to the name of the Ajax action callback being fired. * * @since 2.1.0 */ do_action( "wp_ajax_{$action}" ); } else { // If no action is registered, return a Bad Request response. if ( ! has_action( "wp_ajax_nopriv_{$action}" ) ) { wp_die( '0', 400 ); } /** * Fires non-authenticated Ajax actions for logged-out users. * * The dynamic portion of the hook name, `$action`, refers * to the name of the Ajax action callback being fired. * * @since 2.8.0 */ do_action( "wp_ajax_nopriv_{$action}" ); } // Default status. wp_die( '0' );
保存文件
位置:
home
/
robertofarias
/
public_html
/
wp-admin
批量上传
创建
创建
批量权限
批量删除
名称
权限
大小
修改时间
操作
↑ 返回上级
-
-
-
-
css
drwxr-xr-x
-
2022-11-15 19:03
权限
删除
重命名
images
drwxr-xr-x
-
2025-12-04 05:41
权限
删除
重命名
includes
drwxr-xr-x
-
2025-04-07 10:23
权限
删除
重命名
js
drwxr-xr-x
-
2024-04-03 10:16
权限
删除
重命名
maint
drwxr-xr-x
-
2022-11-15 19:03
权限
删除
重命名
network
drwxr-xr-x
-
2026-04-17 04:49
权限
删除
重命名
user
drwxr-xr-x
-
2026-04-17 04:49
权限
删除
重命名
admin-ajax.php
-rw-r--r--
5.03 KB
2024-07-17 11:51
编辑
下载
权限
删除
重命名
admin-footer.php
-rw-r--r--
2.77 KB
2024-11-13 13:01
编辑
下载
权限
删除
重命名
contribute.php
-rw-r--r--
5.86 KB
2025-12-04 05:41
编辑
下载
权限
删除
重命名
credits.php
-rw-r--r--
4.38 KB
2025-12-04 05:41
编辑
下载
权限
删除
重命名
edit-form-advanced.php
-rw-r--r--
28.83 KB
2025-04-16 11:06
编辑
下载
权限
删除
重命名
edit-tag-form.php
-rw-r--r--
10.44 KB
2025-04-16 11:06
编辑
下载
权限
删除
重命名
edit-tags.php
-rw-r--r--
22 KB
2025-02-12 12:34
编辑
下载
权限
删除
重命名
erase-personal-data.php
-rw-r--r--
7.33 KB
2024-07-17 11:51
编辑
下载
权限
删除
重命名
error_log
-rw-r--r--
70.01 KB
2026-04-30 08:14
编辑
下载
权限
删除
重命名
freedoms.php
-rw-r--r--
4.8 KB
2025-12-04 05:41
编辑
下载
权限
删除
重命名
index.php
-rw-r--r--
7.68 KB
2023-11-08 10:55
编辑
下载
权限
删除
重命名
install-helper.php
-rw-r--r--
6.8 KB
2023-03-30 09:26
编辑
下载
权限
删除
重命名
link-add.php
-rw-r--r--
934 B
2025-04-16 11:06
编辑
下载
权限
删除
重命名
link-manager.php
-rw-r--r--
4.26 KB
2025-04-16 11:06
编辑
下载
权限
删除
重命名
link.php
-rw-r--r--
2.89 KB
2024-07-17 11:51
编辑
下载
权限
删除
重命名
media-new.php
-rw-r--r--
3.2 KB
2025-12-04 05:41
编辑
下载
权限
删除
重命名
media-upload.php
-rw-r--r--
3.58 KB
2025-04-16 11:06
编辑
下载
权限
删除
重命名
media.php
-rw-r--r--
819 B
2024-07-17 11:51
编辑
下载
权限
删除
重命名
menu.php
-rw-r--r--
17.46 KB
2025-12-04 05:41
编辑
下载
权限
删除
重命名
ms-delete-site.php
-rw-r--r--
4.5 KB
2025-12-04 05:41
编辑
下载
权限
删除
重命名
ms-sites.php
-rw-r--r--
215 B
2020-02-06 06:33
编辑
下载
权限
删除
重命名
ms-themes.php
-rw-r--r--
217 B
2020-02-06 06:33
编辑
下载
权限
删除
重命名
ms-upgrade-network.php
-rw-r--r--
219 B
2020-02-06 06:33
编辑
下载
权限
删除
重命名
my-sites.php
-rw-r--r--
4.74 KB
2023-11-08 10:55
编辑
下载
权限
删除
重命名
nav-menus.php
-rw-r--r--
48.19 KB
2025-12-04 05:41
编辑
下载
权限
删除
重命名
options-discussion.php
-rw-r--r--
15.92 KB
2025-12-04 05:41
编辑
下载
权限
删除
重命名
options-general.php
-rw-r--r--
21.65 KB
2025-12-04 05:41
编辑
下载
权限
删除
重命名
options-head.php
-rw-r--r--
621 B
2025-04-16 11:06
编辑
下载
权限
删除
重命名
options-media.php
-rw-r--r--
6.38 KB
2025-12-04 05:41
编辑
下载
权限
删除
重命名
options-privacy.php
-rw-r--r--
9.95 KB
2025-04-16 11:06
编辑
下载
权限
删除
重命名
options-writing.php
-rw-r--r--
9.1 KB
2025-12-04 05:41
编辑
下载
权限
删除
重命名
options.php
-rw-r--r--
13.6 KB
2025-12-04 05:41
编辑
下载
权限
删除
重命名
post-new.php
-rw-r--r--
2.7 KB
2024-07-17 11:51
编辑
下载
权限
删除
重命名
post.php
-rw-r--r--
10.03 KB
2025-12-04 05:41
编辑
下载
权限
删除
重命名
press-this.php
-rw-r--r--
2.34 KB
2024-04-03 10:16
编辑
下载
权限
删除
重命名
privacy-policy-guide.php
-rw-r--r--
3.67 KB
2024-04-03 10:16
编辑
下载
权限
删除
重命名
privacy.php
-rw-r--r--
2.79 KB
2025-12-04 05:41
编辑
下载
权限
删除
重命名
setup-config.php
-rw-r--r--
17.48 KB
2025-04-16 11:06
编辑
下载
权限
删除
重命名
site-health-info.php
-rw-r--r--
3.99 KB
2025-04-16 11:06
编辑
下载
权限
删除
重命名
site-health.php
-rw-r--r--
10.2 KB
2025-12-04 05:41
编辑
下载
权限
删除
重命名
theme-install.php
-rw-r--r--
23.38 KB
2025-12-04 05:41
编辑
下载
权限
删除
重命名
themes.php
-rw-r--r--
47.92 KB
2025-12-04 05:41
编辑
下载
权限
删除
重命名
upgrade-functions.php
-rw-r--r--
341 B
2020-02-06 06:33
编辑
下载
权限
删除
重命名
upgrade.php
-rw-r--r--
6.27 KB
2025-12-04 05:41
编辑
下载
权限
删除
重命名
user-new.php
-rw-r--r--
24.05 KB
2025-04-16 11:06
编辑
下载
权限
删除
重命名
users.php
-rw-r--r--
23.29 KB
2025-12-04 05:41
编辑
下载
权限
删除
重命名
widgets-form.php
-rw-r--r--
19.29 KB
2026-02-27 10:54
编辑
下载
权限
删除
重命名