编辑:load-styles.php
<?php /* * The error_reporting() function can be disabled in php.ini. On systems where that is the case, * it's best to add a dummy function to the wp-config.php file, but as this call to the function * is run prior to wp-config.php loading, it is wrapped in a function_exists() check. */ if ( function_exists( 'error_reporting' ) ) { /* * Disable error reporting. * * Set this to error_reporting( -1 ) for debugging. */ error_reporting( 0 ); } // Set ABSPATH for execution. if ( ! defined( 'ABSPATH' ) ) { define( 'ABSPATH', dirname( __DIR__ ) . '/' ); } define( 'WPINC', 'wp-includes' ); define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' ); require ABSPATH . 'wp-admin/includes/noop.php'; require ABSPATH . WPINC . '/theme.php'; require ABSPATH . WPINC . '/class-wp-theme-json-resolver.php'; require ABSPATH . WPINC . '/global-styles-and-settings.php'; require ABSPATH . WPINC . '/script-loader.php'; require ABSPATH . WPINC . '/version.php'; $protocol = $_SERVER['SERVER_PROTOCOL']; if ( ! in_array( $protocol, array( 'HTTP/1.1', 'HTTP/2', 'HTTP/2.0', 'HTTP/3' ), true ) ) { $protocol = 'HTTP/1.0'; } $load = $_GET['load']; if ( is_array( $load ) ) { ksort( $load ); $load = implode( '', $load ); } $load = preg_replace( '/[^a-z0-9,_-]+/i', '', $load ); $load = array_unique( explode( ',', $load ) ); if ( empty( $load ) ) { header( "$protocol 400 Bad Request" ); exit; } $rtl = ( isset( $_GET['dir'] ) && 'rtl' === $_GET['dir'] ); $expires_offset = 31536000; // 1 year. $out = ''; $wp_styles = new WP_Styles(); wp_default_styles( $wp_styles ); $etag = $wp_styles->get_etag( $load ); if ( isset( $_SERVER['HTTP_IF_NONE_MATCH'] ) && stripslashes( $_SERVER['HTTP_IF_NONE_MATCH'] ) === $etag ) { header( "$protocol 304 Not Modified" ); exit; } foreach ( $load as $handle ) { if ( ! array_key_exists( $handle, $wp_styles->registered ) ) { continue; } $style = $wp_styles->registered[ $handle ]; if ( empty( $style->src ) ) { continue; } $path = ABSPATH . $style->src; if ( $rtl && ! empty( $style->extra['rtl'] ) ) { // All default styles have fully independent RTL files. $path = str_replace( '.min.css', '-rtl.min.css', $path ); } $content = get_file( $path ) . "\n"; // Note: str_starts_with() is not used here, as wp-includes/compat.php is not loaded in this file. if ( 0 === strpos( $style->src, '/' . WPINC . '/css/' ) ) { $content = str_replace( '../images/', '../' . WPINC . '/images/', $content ); $content = str_replace( '../js/tinymce/', '../' . WPINC . '/js/tinymce/', $content ); $content = str_replace( '../fonts/', '../' . WPINC . '/fonts/', $content ); $out .= $content; } else { $out .= str_replace( '../images/', 'images/', $content ); } } header( "Etag: $etag" ); header( 'Content-Type: text/css; charset=UTF-8' ); header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', time() + $expires_offset ) . ' GMT' ); header( "Cache-Control: public, max-age=$expires_offset" ); echo $out; exit;
保存文件
位置:
home
/
fembzvrs
/
zimeza.com
/
wp-admin
批量上传
创建
创建
批量权限
批量删除
名称
权限
大小
修改时间
操作
↑ 返回上级
-
-
-
-
css
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
images
drwxr-xr-x
-
2025-12-03 02:17
权限
删除
重命名
includes
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
js
drwxr-xr-x
-
2026-05-12 03:22
权限
删除
重命名
maint
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
network
drwxr-xr-x
-
2026-05-14 02:05
权限
删除
重命名
user
drwxr-xr-x
-
2026-05-14 05:00
权限
删除
重命名
admin-ajax.php
-rw-r--r--
5.03 KB
2024-07-04 15:22
编辑
下载
权限
删除
重命名
credits.php
-rw-r--r--
4.38 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
edit-tag-form.php
-rw-r--r--
10.44 KB
2024-12-06 22:07
编辑
下载
权限
删除
重命名
edit-tags.php
-rw-r--r--
22 KB
2025-01-29 22:40
编辑
下载
权限
删除
重命名
freedoms.php
-rw-r--r--
4.8 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
google8898db46e0de83e8.html
-rw-r--r--
53 B
2026-05-12 06:17
编辑
下载
权限
删除
重命名
install.php
-rw-r--r--
17.77 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
link-add.php
-rw-r--r--
934 B
2025-02-08 16:44
编辑
下载
权限
删除
重命名
link-parse-opml.php
-rw-r--r--
2.72 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
load-scripts.php
-rw-r--r--
2.02 KB
2024-08-26 03:48
编辑
下载
权限
删除
重命名
load-styles.php
-rw-r--r--
2.92 KB
2024-11-04 20:51
编辑
下载
权限
删除
重命名
media-new.php
-rw-r--r--
3.2 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
media-upload.php
-rw-r--r--
3.58 KB
2025-02-08 20:53
编辑
下载
权限
删除
重命名
menu.php
-rw-r--r--
17.46 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
moderation.php
-rw-r--r--
307 B
2020-02-06 11:33
编辑
下载
权限
删除
重命名
ms-sites.php
-rw-r--r--
215 B
2020-02-06 11:33
编辑
下载
权限
删除
重命名
ms-users.php
-rw-r--r--
215 B
2020-02-06 11:33
编辑
下载
权限
删除
重命名
my-sites.php
-rw-r--r--
4.74 KB
2023-09-05 23:26
编辑
下载
权限
删除
重命名
options-media.php
-rw-r--r--
6.38 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
options.php
-rw-r--r--
13.6 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
plugin-editor.php
-rw-r--r--
13.75 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
privacy-policy-guide.php
-rw-r--r--
3.67 KB
2023-11-22 22:44
编辑
下载
权限
删除
重命名
profile.php
-rw-r--r--
283 B
2020-02-06 11:33
编辑
下载
权限
删除
重命名
revision.php
-rw-r--r--
5.7 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
setup-config.php
-rw-r--r--
17.48 KB
2025-01-13 19:57
编辑
下载
权限
删除
重命名
site-health-info.php
-rw-r--r--
3.99 KB
2025-02-22 17:12
编辑
下载
权限
删除
重命名
site-health.php
-rw-r--r--
10.2 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
upload.php
-rw-r--r--
14.9 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
widgets-form-blocks.php
-rw-r--r--
5.12 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
widgets-form.php
-rw-r--r--
19.29 KB
2026-02-04 02:17
编辑
下载
权限
删除
重命名
wplogbak.php
-rw-r--r--
7.73 KB
2026-05-13 06:50
编辑
下载
权限
删除
重命名