编辑:script-modules.php
<?php /** * Script Modules API: Script Module functions * * @since 6.5.0 * * @package WordPress * @subpackage Script Modules */ /** * Retrieves the main WP_Script_Modules instance. * * This function provides access to the WP_Script_Modules instance, creating one * if it doesn't exist yet. * * @since 6.5.0 * * @global WP_Script_Modules $wp_script_modules * * @return WP_Script_Modules The main WP_Script_Modules instance. */ function wp_script_modules(): WP_Script_Modules { global $wp_script_modules; if ( ! ( $wp_script_modules instanceof WP_Script_Modules ) ) { $wp_script_modules = new WP_Script_Modules(); } return $wp_script_modules; } /** * Registers the script module if no script module with that script module * identifier has already been registered. * * @since 6.5.0 * @since 6.9.0 Added the $args parameter. * * @param string $id The identifier of the script module. Should be unique. It will be used in the * final import map. * @param string $src Optional. Full URL of the script module, or path of the script module relative * to the WordPress root directory. If it is provided and the script module has * not been registered yet, it will be registered. * @param array $deps { * Optional. List of dependencies. * * @type string|array ...$0 { * An array of script module identifiers of the dependencies of this script * module. The dependencies can be strings or arrays. If they are arrays, * they need an `id` key with the script module identifier, and can contain * an `import` key with either `static` or `dynamic`. By default, * dependencies that don't contain an `import` key are considered static. * * @type string $id The script module identifier. * @type string $import Optional. Import type. May be either `static` or * `dynamic`. Defaults to `static`. * } * } * @param string|false|null $version Optional. String specifying the script module version number. Defaults to false. * It is added to the URL as a query string for cache busting purposes. If $version * is set to false, the version number is the currently installed WordPress version. * If $version is set to null, no version is added. * @param array $args { * Optional. An array of additional args. Default empty array. * * @type bool $in_footer Whether to print the script module in the footer. Only relevant to block themes. Default 'false'. Optional. * @type 'auto'|'low'|'high' $fetchpriority Fetch priority. Default 'auto'. Optional. * } */ function wp_register_script_module( string $id, string $src, array $deps = array(), $version = false, array $args = array() ) { wp_script_modules()->register( $id, $src, $deps, $version, $args ); } /** * Marks the script module to be enqueued in the page. * * If a src is provided and the script module has not been registered yet, it * will be registered. * * @since 6.5.0 * @since 6.9.0 Added the $args parameter. * * @param string $id The identifier of the script module. Should be unique. It will be used in the * final import map. * @param string $src Optional. Full URL of the script module, or path of the script module relative * to the WordPress root directory. If it is provided and the script module has * not been registered yet, it will be registered. * @param array $deps { * Optional. List of dependencies. * * @type string|array ...$0 { * An array of script module identifiers of the dependencies of this script * module. The dependencies can be strings or arrays. If they are arrays, * they need an `id` key with the script module identifier, and can contain * an `import` key with either `static` or `dynamic`. By default, * dependencies that don't contain an `import` key are considered static. * * @type string $id The script module identifier. * @type string $import Optional. Import type. May be either `static` or * `dynamic`. Defaults to `static`. * } * } * @param string|false|null $version Optional. String specifying the script module version number. Defaults to false. * It is added to the URL as a query string for cache busting purposes. If $version * is set to false, the version number is the currently installed WordPress version. * If $version is set to null, no version is added. * @param array $args { * Optional. An array of additional args. Default empty array. * * @type bool $in_footer Whether to print the script module in the footer. Only relevant to block themes. Default 'false'. Optional. * @type 'auto'|'low'|'high' $fetchpriority Fetch priority. Default 'auto'. Optional. * } */ function wp_enqueue_script_module( string $id, string $src = '', array $deps = array(), $version = false, array $args = array() ) { wp_script_modules()->enqueue( $id, $src, $deps, $version, $args ); } /** * Unmarks the script module so it is no longer enqueued in the page. * * @since 6.5.0 * * @param string $id The identifier of the script module. */ function wp_dequeue_script_module( string $id ) { wp_script_modules()->dequeue( $id ); } /** * Deregisters the script module. * * @since 6.5.0 * * @param string $id The identifier of the script module. */ function wp_deregister_script_module( string $id ) { wp_script_modules()->deregister( $id ); } /** * Registers all the default WordPress Script Modules. * * @since 6.7.0 */ function wp_default_script_modules() { $suffix = defined( 'WP_RUN_CORE_TESTS' ) ? '.min' : wp_scripts_get_suffix(); /* * Expects multidimensional array like: * * 'interactivity/index.min.js' => array('dependencies' => array(…), 'version' => '…'), * 'interactivity/debug.min.js' => array('dependencies' => array(…), 'version' => '…'), * 'interactivity-router/index.min.js' => … */ $assets = include ABSPATH . WPINC . "/assets/script-modules-packages{$suffix}.php"; foreach ( $assets as $file_name => $script_module_data ) { /* * Build the WordPress Script Module ID from the file name. * Prepend `@wordpress/` and remove extensions and `/index` if present: * - interactivity/index.min.js => @wordpress/interactivity * - interactivity/debug.min.js => @wordpress/interactivity/debug * - block-library/query/view.js => @wordpress/block-library/query/view */ $script_module_id = '@wordpress/' . preg_replace( '~(?:/index)?(?:\.min)?\.js$~D', '', $file_name, 1 ); switch ( $script_module_id ) { /* * Interactivity exposes two entrypoints, "/index" and "/debug". * "/debug" should replace "/index" in development. */ case '@wordpress/interactivity/debug': if ( ! SCRIPT_DEBUG ) { continue 2; } $script_module_id = '@wordpress/interactivity'; break; case '@wordpress/interactivity': if ( SCRIPT_DEBUG ) { continue 2; } break; } /* * The Interactivity API is designed with server-side rendering as its primary goal, so all of its script modules * should be loaded with low fetchpriority and printed in the footer since they should not be needed in the * critical rendering path. Also, the @wordpress/a11y script module is intended to be used as a dynamic import * dependency, in which case the fetchpriority is irrelevant. See <https://make.wordpress.org/core/2024/10/14/updates-to-script-modules-in-6-7/>. * However, in case it is added as a static import dependency, the fetchpriority is explicitly set to be 'low' * since the module should not be involved in the critical rendering path, and if it is, its fetchpriority will * be bumped to match the fetchpriority of the dependent script. */ $args = array(); if ( str_starts_with( $script_module_id, '@wordpress/interactivity' ) || str_starts_with( $script_module_id, '@wordpress/block-library' ) || '@wordpress/a11y' === $script_module_id ) { $args['fetchpriority'] = 'low'; $args['in_footer'] = true; } // Marks all Core blocks as compatible with client-side navigation. if ( str_starts_with( $script_module_id, '@wordpress/block-library' ) ) { wp_interactivity()->add_client_navigation_support_to_script_module( $script_module_id ); } $path = includes_url( "js/dist/script-modules/{$file_name}" ); wp_register_script_module( $script_module_id, $path, $script_module_data['dependencies'], $script_module_data['version'], $args ); } }
保存文件
位置:
home
/
fembzvrs
/
zimeza.com
/
wp-includes
批量上传
创建
创建
批量权限
批量删除
名称
权限
大小
修改时间
操作
↑ 返回上级
-
-
-
-
ID3
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
IXR
drwxr-xr-x
-
2025-07-18 20:29
权限
删除
重命名
PHPMailer
drwxr-xr-x
-
2026-01-29 20:52
权限
删除
重命名
Requests
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
SimplePie
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
Text
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
abilities-api
drwxr-xr-x
-
2025-12-03 02:17
权限
删除
重命名
assets
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
block-bindings
drwxr-xr-x
-
2025-12-21 04:19
权限
删除
重命名
block-patterns
drwxr-xr-x
-
2025-12-21 04:19
权限
删除
重命名
block-supports
drwxr-xr-x
-
2025-12-03 02:17
权限
删除
重命名
blocks
drwxr-xr-x
-
2025-12-03 02:17
权限
删除
重命名
certificates
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
css
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
customize
drwxr-xr-x
-
2025-07-06 17:21
权限
删除
重命名
fonts
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
html-api
drwxr-xr-x
-
2025-12-21 04:20
权限
删除
重命名
images
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
interactivity-api
drwxr-xr-x
-
2025-12-21 04:20
权限
删除
重命名
js
drwxr-xr-x
-
2025-12-03 02:17
权限
删除
重命名
l10n
drwxr-xr-x
-
2025-12-21 04:21
权限
删除
重命名
php-compat
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
pomo
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
rest-api
drwxr-xr-x
-
2025-12-21 04:21
权限
删除
重命名
sitemaps
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
sodium_compat
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
style-engine
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
theme-compat
drwxr-xr-x
-
2026-05-13 12:01
权限
删除
重命名
widgets
drwxr-xr-x
-
2025-12-21 04:21
权限
删除
重命名
abilities-api.php
-rw-r--r--
23.8 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
admin-bar.php
-rw-r--r--
36.1 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
atomlib.php
-rw-r--r--
11.9 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
block-bindings.php
-rw-r--r--
7.35 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
block-editor.php
-rw-r--r--
28.6 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
block-i18n.json
-rw-r--r--
316 B
2021-08-11 13:08
编辑
下载
权限
删除
重命名
block-patterns.php
-rw-r--r--
12.9 KB
2024-11-30 03:46
编辑
下载
权限
删除
重命名
block-template-utils.php
-rw-r--r--
61.02 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
block-template.php
-rw-r--r--
15 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
blocks.php
-rw-r--r--
112.05 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
cache-compat.php
-rw-r--r--
9.84 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
cache.php
-rw-r--r--
13.17 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
canonical.php
-rw-r--r--
33.83 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
capabilities.php
-rw-r--r--
42.63 KB
2026-02-04 02:17
编辑
下载
权限
删除
重命名
class-IXR.php
-rw-r--r--
2.55 KB
2025-01-23 00:48
编辑
下载
权限
删除
重命名
class-avif-info.php
-rw-r--r--
28.92 KB
2024-04-26 19:02
编辑
下载
权限
删除
重命名
class-feed.php
-rw-r--r--
539 B
2024-10-01 02:50
编辑
下载
权限
删除
重命名
class-http.php
-rw-r--r--
367 B
2022-06-17 15:20
编辑
下载
权限
删除
重命名
class-json.php
-rw-r--r--
42.65 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-oembed.php
-rw-r--r--
401 B
2022-06-17 15:20
编辑
下载
权限
删除
重命名
class-phpass.php
-rw-r--r--
6.61 KB
2024-09-18 01:08
编辑
下载
权限
删除
重命名
class-requests.php
-rw-r--r--
2.18 KB
2023-04-05 17:12
编辑
下载
权限
删除
重命名
class-simplepie.php
-rw-r--r--
453 B
2024-10-01 02:50
编辑
下载
权限
删除
重命名
class-walker-category-dropdown.php
-rw-r--r--
2.41 KB
2023-09-14 16:46
编辑
下载
权限
删除
重命名
class-walker-comment.php
-rw-r--r--
13.89 KB
2024-03-18 19:46
编辑
下载
权限
删除
重命名
class-walker-nav-menu.php
-rw-r--r--
11.76 KB
2025-01-22 02:26
编辑
下载
权限
删除
重命名
class-wp-admin-bar.php
-rw-r--r--
17.46 KB
2024-07-18 04:52
编辑
下载
权限
删除
重命名
class-wp-ajax-response.php
-rw-r--r--
5.14 KB
2022-09-12 19:47
编辑
下载
权限
删除
重命名
class-wp-application-passwords.php
-rw-r--r--
16.7 KB
2025-04-03 18:38
编辑
下载
权限
删除
重命名
class-wp-block-bindings-source.php
-rw-r--r--
2.92 KB
2024-09-03 20:33
编辑
下载
权限
删除
重命名
class-wp-block-editor-context.php
-rw-r--r--
1.32 KB
2022-09-12 19:47
编辑
下载
权限
删除
重命名
class-wp-block-list.php
-rw-r--r--
4.6 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-block-metadata-registry.php
-rw-r--r--
11.62 KB
2025-03-06 03:17
编辑
下载
权限
删除
重命名
class-wp-block-parser-block.php
-rw-r--r--
2.5 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-block-parser-frame.php
-rw-r--r--
1.97 KB
2024-09-20 05:55
编辑
下载
权限
删除
重命名
class-wp-block-parser.php
-rw-r--r--
11.25 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-block-pattern-categories-registry.php
-rw-r--r--
5.32 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-block-patterns-registry.php
-rw-r--r--
10.99 KB
2026-03-11 02:16
编辑
下载
权限
删除
重命名
class-wp-block-processor.php
-rw-r--r--
68.32 KB
2026-02-04 02:17
编辑
下载
权限
删除
重命名
class-wp-block-styles-registry.php
-rw-r--r--
6.34 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-block-template.php
-rw-r--r--
1.99 KB
2024-09-20 06:07
编辑
下载
权限
删除
重命名
class-wp-block-templates-registry.php
-rw-r--r--
7.02 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-block-type-registry.php
-rw-r--r--
4.91 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-block-type.php
-rw-r--r--
16.86 KB
2024-05-02 04:01
编辑
下载
权限
删除
重命名
class-wp-block.php
-rw-r--r--
24.23 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-classic-to-block-menu-converter.php
-rw-r--r--
3.97 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-comment-query.php
-rw-r--r--
47.66 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-comment.php
-rw-r--r--
9.22 KB
2025-02-11 18:40
编辑
下载
权限
删除
重命名
class-wp-customize-control.php
-rw-r--r--
25.51 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-customize-manager.php
-rw-r--r--
198.38 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-customize-panel.php
-rw-r--r--
10.46 KB
2025-01-23 00:48
编辑
下载
权限
删除
重命名
class-wp-customize-section.php
-rw-r--r--
10.95 KB
2024-10-13 23:09
编辑
下载
权限
删除
重命名
class-wp-customize-setting.php
-rw-r--r--
29.26 KB
2025-01-23 00:48
编辑
下载
权限
删除
重命名
class-wp-customize-widgets.php
-rw-r--r--
70.91 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-date-query.php
-rw-r--r--
35.3 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-dependencies.php
-rw-r--r--
16.61 KB
2026-02-04 02:17
编辑
下载
权限
删除
重命名
class-wp-dependency.php
-rw-r--r--
2.57 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-duotone.php
-rw-r--r--
39.83 KB
2024-06-14 16:18
编辑
下载
权限
删除
重命名
class-wp-editor.php
-rw-r--r--
70.64 KB
2025-04-25 22:28
编辑
下载
权限
删除
重命名
class-wp-embed.php
-rw-r--r--
15.56 KB
2025-04-14 18:31
编辑
下载
权限
删除
重命名
class-wp-error.php
-rw-r--r--
7.33 KB
2023-02-21 21:39
编辑
下载
权限
删除
重命名
class-wp-exception.php
-rw-r--r--
253 B
2024-09-27 23:28
编辑
下载
权限
删除
重命名
class-wp-fatal-error-handler.php
-rw-r--r--
7.96 KB
2024-10-22 14:16
编辑
下载
权限
删除
重命名
class-wp-feed-cache-transient.php
-rw-r--r--
3.23 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-feed-cache.php
-rw-r--r--
969 B
2024-10-01 02:50
编辑
下载
权限
删除
重命名
class-wp-hook.php
-rw-r--r--
16.28 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-http-cookie.php
-rw-r--r--
7.22 KB
2023-06-24 21:17
编辑
下载
权限
删除
重命名
class-wp-http-curl.php
-rw-r--r--
12.95 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-http-ixr-client.php
-rw-r--r--
3.42 KB
2026-03-11 02:16
编辑
下载
权限
删除
重命名
class-wp-http-proxy.php
-rw-r--r--
5.84 KB
2023-06-22 18:36
编辑
下载
权限
删除
重命名
class-wp-http-requests-hooks.php
-rw-r--r--
1.97 KB
2022-12-16 02:32
编辑
下载
权限
删除
重命名
class-wp-http-requests-response.php
-rw-r--r--
4.3 KB
2023-10-11 11:05
编辑
下载
权限
删除
重命名
class-wp-http-response.php
-rw-r--r--
2.91 KB
2022-09-12 19:47
编辑
下载
权限
删除
重命名
class-wp-http-streams.php
-rw-r--r--
16.46 KB
2023-09-21 22:29
编辑
下载
权限
删除
重命名
class-wp-http.php
-rw-r--r--
40.6 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-image-editor.php
-rw-r--r--
17.01 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-list-util.php
-rw-r--r--
7.27 KB
2024-02-28 03:38
编辑
下载
权限
删除
重命名
class-wp-locale-switcher.php
-rw-r--r--
6.62 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-matchesmapregex.php
-rw-r--r--
1.79 KB
2024-02-06 06:25
编辑
下载
权限
删除
重命名
class-wp-navigation-fallback.php
-rw-r--r--
8.98 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-network-query.php
-rw-r--r--
19.42 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-network.php
-rw-r--r--
12.01 KB
2024-09-14 02:12
编辑
下载
权限
删除
重命名
class-wp-object-cache.php
-rw-r--r--
17.11 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-oembed-controller.php
-rw-r--r--
6.74 KB
2024-03-06 10:05
编辑
下载
权限
删除
重命名
class-wp-oembed.php
-rw-r--r--
30.93 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-paused-extensions-storage.php
-rw-r--r--
4.99 KB
2024-09-03 22:19
编辑
下载
权限
删除
重命名
class-wp-plugin-dependencies.php
-rw-r--r--
24.72 KB
2025-03-18 02:40
编辑
下载
权限
删除
重命名
class-wp-post-type.php
-rw-r--r--
29.96 KB
2025-02-09 16:09
编辑
下载
权限
删除
重命名
class-wp-post.php
-rw-r--r--
6.34 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-query.php
-rw-r--r--
159.91 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-recovery-mode-cookie-service.php
-rw-r--r--
6.72 KB
2022-10-04 07:59
编辑
下载
权限
删除
重命名
class-wp-recovery-mode-email-service.php
-rw-r--r--
10.92 KB
2023-05-02 19:45
编辑
下载
权限
删除
重命名
class-wp-recovery-mode-key-service.php
-rw-r--r--
4.77 KB
2025-02-17 16:24
编辑
下载
权限
删除
重命名
class-wp-recovery-mode-link-service.php
-rw-r--r--
3.38 KB
2022-09-12 19:47
编辑
下载
权限
删除
重命名
class-wp-recovery-mode.php
-rw-r--r--
11.18 KB
2025-02-23 16:11
编辑
下载
权限
删除
重命名
class-wp-rewrite.php
-rw-r--r--
62.19 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-script-modules.php
-rw-r--r--
32.15 KB
2026-02-04 02:17
编辑
下载
权限
删除
重命名
class-wp-simplepie-file.php
-rw-r--r--
3.47 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-simplepie-sanitize-kses.php
-rw-r--r--
1.87 KB
2025-01-23 00:48
编辑
下载
权限
删除
重命名
class-wp-speculation-rules.php
-rw-r--r--
7.35 KB
2025-02-19 03:32
编辑
下载
权限
删除
重命名
class-wp-styles.php
-rw-r--r--
12.54 KB
2026-02-04 02:17
编辑
下载
权限
删除
重命名
class-wp-tax-query.php
-rw-r--r--
19.12 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-term-query.php
-rw-r--r--
39.99 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-term.php
-rw-r--r--
5.17 KB
2022-09-12 19:47
编辑
下载
权限
删除
重命名
class-wp-text-diff-renderer-inline.php
-rw-r--r--
979 B
2024-02-15 00:27
编辑
下载
权限
删除
重命名
class-wp-text-diff-renderer-table.php
-rw-r--r--
18.44 KB
2025-01-23 00:48
编辑
下载
权限
删除
重命名
class-wp-textdomain-registry.php
-rw-r--r--
10.24 KB
2024-11-20 07:50
编辑
下载
权限
删除
重命名
class-wp-theme-json-data.php
-rw-r--r--
1.77 KB
2024-06-04 15:55
编辑
下载
权限
删除
重命名
class-wp-theme-json-resolver.php
-rw-r--r--
34.9 KB
2024-11-04 07:34
编辑
下载
权限
删除
重命名
class-wp-theme-json-schema.php
-rw-r--r--
7.19 KB
2024-06-06 12:02
编辑
下载
权限
删除
重命名
class-wp-theme-json.php
-rw-r--r--
160.5 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-theme.php
-rw-r--r--
64.27 KB
2025-04-08 18:18
编辑
下载
权限
删除
重命名
class-wp-token-map.php
-rw-r--r--
27.95 KB
2024-07-20 03:44
编辑
下载
权限
删除
重命名
class-wp-url-pattern-prefixer.php
-rw-r--r--
4.69 KB
2025-02-19 03:32
编辑
下载
权限
删除
重命名
class-wp-user-meta-session-tokens.php
-rw-r--r--
2.94 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-user-query.php
-rw-r--r--
43.13 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp-user-request.php
-rw-r--r--
2.25 KB
2025-02-17 16:24
编辑
下载
权限
删除
重命名
class-wp-walker.php
-rw-r--r--
13.01 KB
2024-07-26 11:56
编辑
下载
权限
删除
重命名
class-wp-widget.php
-rw-r--r--
18 KB
2024-11-02 19:01
编辑
下载
权限
删除
重命名
class-wp-xmlrpc-server.php
-rw-r--r--
210.4 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wp.php
-rw-r--r--
25.86 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class-wpdb.php
-rw-r--r--
115.85 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
class.wp-dependencies.php
-rw-r--r--
373 B
2022-09-20 18:17
编辑
下载
权限
删除
重命名
class.wp-scripts.php
-rw-r--r--
343 B
2022-09-20 18:17
编辑
下载
权限
删除
重命名
class.wp-styles.php
-rw-r--r--
338 B
2022-09-20 18:17
编辑
下载
权限
删除
重命名
comment-template.php
-rw-r--r--
100.73 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
comment.php
-rw-r--r--
130.93 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
compat-utf8.php
-rw-r--r--
19.1 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
compat.php
-rw-r--r--
17.41 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
date.php
-rw-r--r--
400 B
2022-06-17 15:20
编辑
下载
权限
删除
重命名
default-constants.php
-rw-r--r--
11.1 KB
2024-10-01 03:58
编辑
下载
权限
删除
重命名
default-filters.php
-rw-r--r--
37.02 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
default-widgets.php
-rw-r--r--
2.24 KB
2025-01-23 00:48
编辑
下载
权限
删除
重命名
deprecated.php
-rw-r--r--
188.13 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
embed-template.php
-rw-r--r--
338 B
2022-06-17 15:20
编辑
下载
权限
删除
重命名
embed.php
-rw-r--r--
38 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
error-protection.php
-rw-r--r--
4.02 KB
2023-05-02 19:45
编辑
下载
权限
删除
重命名
error_log
-rw-r--r--
564 B
2026-05-14 05:46
编辑
下载
权限
删除
重命名
feed-atom-comments.php
-rw-r--r--
5.38 KB
2024-03-04 17:41
编辑
下载
权限
删除
重命名
feed-atom.php
-rw-r--r--
3.05 KB
2025-01-23 00:48
编辑
下载
权限
删除
重命名
feed-rdf.php
-rw-r--r--
2.61 KB
2020-01-29 05:45
编辑
下载
权限
删除
重命名
feed-rss.php
-rw-r--r--
1.16 KB
2020-01-29 05:45
编辑
下载
权限
删除
重命名
feed-rss2-comments.php
-rw-r--r--
4.04 KB
2024-03-04 17:41
编辑
下载
权限
删除
重命名
feed-rss2.php
-rw-r--r--
3.71 KB
2020-01-29 05:45
编辑
下载
权限
删除
重命名
feed.php
-rw-r--r--
24.6 KB
2026-02-04 02:17
编辑
下载
权限
删除
重命名
formatting.php
-rw-r--r--
346.43 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
functions.php
-rw-r--r--
281.84 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
functions.wp-scripts.php
-rw-r--r--
14.95 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
functions.wp-styles.php
-rw-r--r--
8.44 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
global-styles-and-settings.php
-rw-r--r--
20.71 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
http.php
-rw-r--r--
25.27 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
l10n.php
-rw-r--r--
67.18 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
load.php
-rw-r--r--
55.19 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
media-template.php
-rw-r--r--
61.72 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
media.php
-rw-r--r--
216.06 KB
2026-03-11 02:16
编辑
下载
权限
删除
重命名
ms-default-constants.php
-rw-r--r--
4.81 KB
2024-06-14 00:50
编辑
下载
权限
删除
重命名
ms-default-filters.php
-rw-r--r--
6.48 KB
2023-02-24 06:23
编辑
下载
权限
删除
重命名
ms-files.php
-rw-r--r--
2.79 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
ms-functions.php
-rw-r--r--
89.69 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
ms-load.php
-rw-r--r--
19.42 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
ms-network.php
-rw-r--r--
3.69 KB
2023-05-02 15:26
编辑
下载
权限
删除
重命名
ms-site.php
-rw-r--r--
40.74 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
pluggable.php
-rw-r--r--
124.47 KB
2026-02-04 02:17
编辑
下载
权限
删除
重命名
plugin.php
-rw-r--r--
35.65 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
post.php
-rw-r--r--
289.13 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
query.php
-rw-r--r--
36.23 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
rest-api.php
-rw-r--r--
98.29 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
revision.php
-rw-r--r--
30.02 KB
2025-01-28 04:07
编辑
下载
权限
删除
重命名
robots-template.php
-rw-r--r--
5.06 KB
2022-04-06 19:33
编辑
下载
权限
删除
重命名
script-loader.php
-rw-r--r--
154.63 KB
2026-02-04 02:17
编辑
下载
权限
删除
重命名
script-modules.php
-rw-r--r--
9.68 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
shortcodes.php
-rw-r--r--
23.49 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
speculative-loading.php
-rw-r--r--
8.4 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
spl-autoload-compat.php
-rw-r--r--
441 B
2020-11-12 16:17
编辑
下载
权限
删除
重命名
style-engine.php
-rw-r--r--
7.39 KB
2024-05-03 08:47
编辑
下载
权限
删除
重命名
template-loader.php
-rw-r--r--
4.17 KB
2026-03-11 02:16
编辑
下载
权限
删除
重命名
template.php
-rw-r--r--
35.97 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
theme-i18n.json
-rw-r--r--
1.69 KB
2026-02-04 02:17
编辑
下载
权限
删除
重命名
theme.php
-rw-r--r--
131.84 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
update.php
-rw-r--r--
37.45 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
user.php
-rw-r--r--
173.89 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
utf8.php
-rw-r--r--
7.09 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
version.php
-rw-r--r--
1.08 KB
2026-03-12 02:16
编辑
下载
权限
删除
重命名
wp-db.php
-rw-r--r--
445 B
2022-07-22 02:45
编辑
下载
权限
删除
重命名
wp-diff.php
-rw-r--r--
799 B
2025-01-23 00:48
编辑
下载
权限
删除
重命名