编辑:speculative-loading.php
<?php /** * Speculative loading functions. * * @package WordPress * @subpackage Speculative Loading * @since 6.8.0 */ /** * Returns the speculation rules configuration. * * @since 6.8.0 * * @return array<string, string>|null Associative array with 'mode' and 'eagerness' keys, or null if speculative * loading is disabled. */ function wp_get_speculation_rules_configuration(): ?array { // By default, speculative loading is only enabled for sites with pretty permalinks when no user is logged in. if ( ! is_user_logged_in() && get_option( 'permalink_structure' ) ) { $config = array( 'mode' => 'auto', 'eagerness' => 'auto', ); } else { $config = null; } /** * Filters the way that speculation rules are configured. * * The Speculation Rules API is a web API that allows to automatically prefetch or prerender certain URLs on the * page, which can lead to near-instant page load times. This is also referred to as speculative loading. * * There are two aspects to the configuration: * * The "mode" (whether to "prefetch" or "prerender" URLs). * * The "eagerness" (whether to speculatively load URLs in an "eager", "moderate", or "conservative" way). * * By default, the speculation rules configuration is decided by WordPress Core ("auto"). This filter can be used * to force a certain configuration, which could for instance load URLs more or less eagerly. * * For logged-in users or for sites that are not configured to use pretty permalinks, the default value is `null`, * indicating that speculative loading is entirely disabled. * * @since 6.8.0 * @see https://developer.chrome.com/docs/web-platform/prerender-pages * * @param array<string, string>|null $config Associative array with 'mode' and 'eagerness' keys, or `null`. The * default value for both of the keys is 'auto'. Other possible values * for 'mode' are 'prefetch' and 'prerender'. Other possible values for * 'eagerness' are 'eager', 'moderate', and 'conservative'. The value * `null` is used to disable speculative loading entirely. */ $config = apply_filters( 'wp_speculation_rules_configuration', $config ); // Allow the value `null` to indicate that speculative loading is disabled. if ( null === $config ) { return null; } // Sanitize the configuration and replace 'auto' with current defaults. $default_mode = 'prefetch'; $default_eagerness = 'conservative'; if ( ! is_array( $config ) ) { return array( 'mode' => $default_mode, 'eagerness' => $default_eagerness, ); } if ( ! isset( $config['mode'] ) || 'auto' === $config['mode'] || ! WP_Speculation_Rules::is_valid_mode( $config['mode'] ) ) { $config['mode'] = $default_mode; } if ( ! isset( $config['eagerness'] ) || 'auto' === $config['eagerness'] || ! WP_Speculation_Rules::is_valid_eagerness( $config['eagerness'] ) || // 'immediate' is a valid eagerness, but for safety WordPress does not allow it for document-level rules. 'immediate' === $config['eagerness'] ) { $config['eagerness'] = $default_eagerness; } return array( 'mode' => $config['mode'], 'eagerness' => $config['eagerness'], ); } /** * Returns the full speculation rules data based on the configuration. * * Plugins with features that rely on frontend URLs to exclude from prefetching or prerendering should use the * {@see 'wp_speculation_rules_href_exclude_paths'} filter to ensure those URL patterns are excluded. * * Additional speculation rules other than the default rule from WordPress Core can be provided by using the * {@see 'wp_load_speculation_rules'} action and amending the passed WP_Speculation_Rules object. * * @since 6.8.0 * @access private * * @return WP_Speculation_Rules|null Object representing the speculation rules to use, or null if speculative loading * is disabled in the current context. */ function wp_get_speculation_rules(): ?WP_Speculation_Rules { $configuration = wp_get_speculation_rules_configuration(); if ( null === $configuration ) { return null; } $mode = $configuration['mode']; $eagerness = $configuration['eagerness']; $prefixer = new WP_URL_Pattern_Prefixer(); $base_href_exclude_paths = array( $prefixer->prefix_path_pattern( '/wp-*.php', 'site' ), $prefixer->prefix_path_pattern( '/wp-admin/*', 'site' ), $prefixer->prefix_path_pattern( '/*', 'uploads' ), $prefixer->prefix_path_pattern( '/*', 'content' ), $prefixer->prefix_path_pattern( '/*', 'plugins' ), $prefixer->prefix_path_pattern( '/*', 'template' ), $prefixer->prefix_path_pattern( '/*', 'stylesheet' ), ); /* * If pretty permalinks are enabled, exclude any URLs with query parameters. * Otherwise, exclude specifically the URLs with a `_wpnonce` query parameter or any other query parameter * containing the word `nonce`. */ if ( get_option( 'permalink_structure' ) ) { $base_href_exclude_paths[] = $prefixer->prefix_path_pattern( '/*\\?(.+)', 'home' ); } else { $base_href_exclude_paths[] = $prefixer->prefix_path_pattern( '/*\\?*(^|&)*nonce*=*', 'home' ); } /** * Filters the paths for which speculative loading should be disabled. * * All paths should start in a forward slash, relative to the root document. The `*` can be used as a wildcard. * If the WordPress site is in a subdirectory, the exclude paths will automatically be prefixed as necessary. * * Note that WordPress always excludes certain path patterns such as `/wp-login.php` and `/wp-admin/*`, and those * cannot be modified using the filter. * * @since 6.8.0 * * @param string[] $href_exclude_paths Additional path patterns to disable speculative loading for. * @param string $mode Mode used to apply speculative loading. Either 'prefetch' or 'prerender'. */ $href_exclude_paths = (array) apply_filters( 'wp_speculation_rules_href_exclude_paths', array(), $mode ); // Ensure that: // 1. There are no duplicates. // 2. The base paths cannot be removed. // 3. The array has sequential keys (i.e. array_is_list()). $href_exclude_paths = array_values( array_unique( array_merge( $base_href_exclude_paths, array_map( static function ( string $href_exclude_path ) use ( $prefixer ): string { return $prefixer->prefix_path_pattern( $href_exclude_path ); }, $href_exclude_paths ) ) ) ); $speculation_rules = new WP_Speculation_Rules(); $main_rule_conditions = array( // Include any URLs within the same site. array( 'href_matches' => $prefixer->prefix_path_pattern( '/*' ), ), // Except for excluded paths. array( 'not' => array( 'href_matches' => $href_exclude_paths, ), ), // Also exclude rel=nofollow links, as certain plugins use that on their links that perform an action. array( 'not' => array( 'selector_matches' => 'a[rel~="nofollow"]', ), ), // Also exclude links that are explicitly marked to opt out, either directly or via a parent element. array( 'not' => array( 'selector_matches' => ".no-{$mode}, .no-{$mode} a", ), ), ); // If using 'prerender', also exclude links that opt out of 'prefetch' because it's part of 'prerender'. if ( 'prerender' === $mode ) { $main_rule_conditions[] = array( 'not' => array( 'selector_matches' => '.no-prefetch, .no-prefetch a', ), ); } $speculation_rules->add_rule( $mode, 'main', array( 'source' => 'document', 'where' => array( 'and' => $main_rule_conditions, ), 'eagerness' => $eagerness, ) ); /** * Fires when speculation rules data is loaded, allowing to amend the rules. * * @since 6.8.0 * * @param WP_Speculation_Rules $speculation_rules Object representing the speculation rules to use. */ do_action( 'wp_load_speculation_rules', $speculation_rules ); return $speculation_rules; } /** * Prints the speculation rules. * * For browsers that do not support speculation rules yet, the `script[type="speculationrules"]` tag will be ignored. * * @since 6.8.0 * @access private */ function wp_print_speculation_rules(): void { $speculation_rules = wp_get_speculation_rules(); if ( null === $speculation_rules ) { return; } wp_print_inline_script_tag( (string) wp_json_encode( $speculation_rules, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ), array( 'type' => 'speculationrules' ) ); }
保存文件
位置:
home
/
caveqifv
/
caventekandina.com.co
/
wp-includes
批量上传
创建
创建
批量权限
批量删除
名称
权限
大小
修改时间
操作
↑ 返回上级
-
-
-
-
ID3
drwxr-xr-x
-
2026-05-07 07:32
权限
删除
重命名
IXR
drwxr-xr-x
-
2024-10-28 04:32
权限
删除
重命名
PHPMailer
drwxr-xr-x
-
2026-05-07 07:34
权限
删除
重命名
Requests
drwxr-xr-x
-
2026-05-07 06:14
权限
删除
重命名
SimplePie
drwxr-xr-x
-
2026-05-07 06:18
权限
删除
重命名
Text
drwxr-xr-x
-
2026-05-07 07:18
权限
删除
重命名
abilities-api
drwxr-xr-x
-
2026-05-07 07:09
权限
删除
重命名
assets
drwxr-xr-x
-
2026-05-07 07:19
权限
删除
重命名
block-bindings
drwxr-xr-x
-
2026-05-07 07:31
权限
删除
重命名
block-patterns
drwxr-xr-x
-
2026-05-07 01:18
权限
删除
重命名
block-supports
drwxr-xr-x
-
2026-05-07 07:34
权限
删除
重命名
blocks
drwxr-xr-x
-
2026-05-07 07:32
权限
删除
重命名
certificates
drwxr-xr-x
-
2026-05-07 06:12
权限
删除
重命名
css
drwxr-xr-x
-
2025-04-16 18:37
权限
删除
重命名
customize
drwxr-xr-x
-
2026-05-07 07:28
权限
删除
重命名
fonts
drwxr-xr-x
-
2026-05-07 07:06
权限
删除
重命名
html-api
drwxr-xr-x
-
2026-05-07 07:31
权限
删除
重命名
images
drwxr-xr-x
-
2026-05-07 07:34
权限
删除
重命名
interactivity-api
drwxr-xr-x
-
2026-05-07 08:00
权限
删除
重命名
js
drwxr-xr-x
-
2026-05-07 06:05
权限
删除
重命名
l10n
drwxr-xr-x
-
2026-05-07 07:35
权限
删除
重命名
php-compat
drwxr-xr-x
-
2024-10-28 04:32
权限
删除
重命名
pomo
drwxr-xr-x
-
2026-05-07 07:34
权限
删除
重命名
rest-api
drwxr-xr-x
-
2024-10-28 04:32
权限
删除
重命名
sitemaps
drwxr-xr-x
-
2026-05-07 07:12
权限
删除
重命名
sodium_compat
drwxr-xr-x
-
2026-05-07 05:00
权限
删除
重命名
style-engine
drwxr-xr-x
-
2026-05-07 05:01
权限
删除
重命名
theme-compat
drwxr-xr-x
-
2026-05-07 07:10
权限
删除
重命名
widgets
drwxr-xr-x
-
2026-05-07 06:03
权限
删除
重命名
abilities.php
-rw-r--r--
7.8 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
admin-bar.php
-rw-r--r--
36.1 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
atomlib.php
-rw-r--r--
11.9 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
author-template.php
-rw-r--r--
18.94 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
block-bindings.php
-rw-r--r--
7.35 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
block-editor.php
-rw-r--r--
28.6 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
block-i18n.json
-rw-r--r--
316 B
2021-08-11 18:38
编辑
下载
权限
删除
重命名
block-template-utils-20260507045943.php
-rw-r--r--
61.02 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
block-template.php
-rw-r--r--
15 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
blocks.php
-rw-r--r--
112.05 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
bookmark-template.php
-rw-r--r--
12.47 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
bookmark.php
-rw-r--r--
15.07 KB
2024-03-23 23:50
编辑
下载
权限
删除
重命名
cache-compat.php
-rw-r--r--
9.84 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
cache.php
-rw-r--r--
13.17 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
canonical-20260507050333.php
-rw-r--r--
33.83 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
canonical.php
-rw-r--r--
33.83 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
capabilities.php
-rw-r--r--
42.63 KB
2026-02-03 19:37
编辑
下载
权限
删除
重命名
category-template.php
-rw-r--r--
55.71 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
category.php
-rw-r--r--
12.53 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
class-IXR.php
-rw-r--r--
2.55 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
class-avif-info.php
-rw-r--r--
28.92 KB
2024-04-27 00:32
编辑
下载
权限
删除
重命名
class-feed.php
-rw-r--r--
539 B
2024-11-13 23:17
编辑
下载
权限
删除
重命名
class-http.php
-rw-r--r--
367 B
2022-06-17 20:50
编辑
下载
权限
删除
重命名
class-phpass.php
-rw-r--r--
6.61 KB
2024-11-13 23:17
编辑
下载
权限
删除
重命名
class-phpmailer.php
-rw-r--r--
664 B
2020-07-21 22:28
编辑
下载
权限
删除
重命名
class-pop3.php
-rw-r--r--
20.63 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
class-requests.php
-rw-r--r--
2.18 KB
2023-04-05 22:42
编辑
下载
权限
删除
重命名
class-simplepie.php
-rw-r--r--
453 B
2024-11-13 23:17
编辑
下载
权限
删除
重命名
class-smtp.php
-rw-r--r--
457 B
2021-01-27 00:15
编辑
下载
权限
删除
重命名
class-snoopy-20260507035813.php
-rw-r--r--
36.83 KB
2023-02-04 00:05
编辑
下载
权限
删除
重命名
class-snoopy.php
-rw-r--r--
36.83 KB
2023-02-04 00:05
编辑
下载
权限
删除
重命名
class-walker-category-dropdown.php
-rw-r--r--
2.41 KB
2023-09-14 22:16
编辑
下载
权限
删除
重命名
class-walker-category.php
-rw-r--r--
8.28 KB
2023-09-08 19:02
编辑
下载
权限
删除
重命名
class-walker-nav-menu-20260507070926.php
-rw-r--r--
11.76 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
class-walker-nav-menu.php
-rw-r--r--
11.76 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
class-walker-page-dropdown.php
-rw-r--r--
2.65 KB
2023-09-14 22:16
编辑
下载
权限
删除
重命名
class-walker-page.php
-rw-r--r--
7.43 KB
2023-09-14 22:16
编辑
下载
权限
删除
重命名
class-wp-admin-bar.php
-rw-r--r--
17.46 KB
2024-07-19 02:15
编辑
下载
权限
删除
重命名
class-wp-ajax-response-20260507060638.php
-rw-r--r--
5.14 KB
2022-09-13 01:17
编辑
下载
权限
删除
重命名
class-wp-ajax-response.php
-rw-r--r--
5.14 KB
2022-09-13 01:17
编辑
下载
权限
删除
重命名
class-wp-application-passwords.php
-rw-r--r--
16.7 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
class-wp-block-bindings-registry.php
-rw-r--r--
8.28 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-block-list.php
-rw-r--r--
4.6 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-block-metadata-registry-20260507072840.php
-rw-r--r--
11.62 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
class-wp-block-metadata-registry.php
-rw-r--r--
11.62 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
class-wp-block-pattern-categories-registry.php
-rw-r--r--
5.32 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-block-patterns-registry.php
-rw-r--r--
10.99 KB
2026-03-11 06:34
编辑
下载
权限
删除
重命名
class-wp-block-styles-registry.php
-rw-r--r--
6.34 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-block-supports.php
-rw-r--r--
5.49 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
class-wp-block-template-20260507024316.php
-rw-r--r--
1.99 KB
2024-11-13 23:17
编辑
下载
权限
删除
重命名
class-wp-block-template.php
-rw-r--r--
1.99 KB
2024-11-13 23:17
编辑
下载
权限
删除
重命名
class-wp-block-templates-registry.php
-rw-r--r--
7.02 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-block-type-registry.php
-rw-r--r--
4.91 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-block-type.php
-rw-r--r--
16.86 KB
2024-05-02 09:31
编辑
下载
权限
删除
重命名
class-wp-block.php
-rw-r--r--
24.23 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-classic-to-block-menu-converter.php
-rw-r--r--
3.97 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-comment-query.php
-rw-r--r--
47.66 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-customize-control.php
-rw-r--r--
25.51 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-customize-manager-20260507024356-20260507050655.php
-rw-r--r--
198.38 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-customize-manager-20260507024356.php
-rw-r--r--
198.38 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-customize-manager.php
-rw-r--r--
198.38 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-customize-nav-menus.php
-rw-r--r--
56.65 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-customize-panel.php
-rw-r--r--
10.46 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
class-wp-customize-widgets.php
-rw-r--r--
70.91 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-dependencies-20260507024246.php
-rw-r--r--
16.61 KB
2026-02-03 19:37
编辑
下载
权限
删除
重命名
class-wp-dependencies.php
-rw-r--r--
16.61 KB
2026-02-03 19:37
编辑
下载
权限
删除
重命名
class-wp-dependency.php
-rw-r--r--
2.57 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-duotone.php
-rw-r--r--
39.83 KB
2024-06-14 21:48
编辑
下载
权限
删除
重命名
class-wp-embed.php
-rw-r--r--
15.56 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
class-wp-exception.php
-rw-r--r--
253 B
2024-11-13 23:17
编辑
下载
权限
删除
重命名
class-wp-http-cookie.php
-rw-r--r--
7.22 KB
2023-06-25 02:47
编辑
下载
权限
删除
重命名
class-wp-http-curl.php
-rw-r--r--
12.95 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-http-ixr-client.php
-rw-r--r--
3.42 KB
2026-03-10 18:32
编辑
下载
权限
删除
重命名
class-wp-http-response.php
-rw-r--r--
2.91 KB
2022-09-13 01:17
编辑
下载
权限
删除
重命名
class-wp-http.php
-rw-r--r--
40.6 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-image-editor-gd.php
-rw-r--r--
20.22 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-image-editor-imagick.php
-rw-r--r--
36.11 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-list-util.php
-rw-r--r--
7.27 KB
2024-02-28 09:08
编辑
下载
权限
删除
重命名
class-wp-locale-switcher-20260507072836.php
-rw-r--r--
6.62 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-locale-switcher.php
-rw-r--r--
6.62 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-locale.php
-rw-r--r--
16.49 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
class-wp-matchesmapregex.php
-rw-r--r--
1.79 KB
2024-02-06 11:55
编辑
下载
权限
删除
重命名
class-wp-meta-query.php
-rw-r--r--
29.82 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-metadata-lazyloader.php
-rw-r--r--
6.67 KB
2023-05-11 20:45
编辑
下载
权限
删除
重命名
class-wp-network-query.php
-rw-r--r--
19.42 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-paused-extensions-storage.php
-rw-r--r--
4.99 KB
2024-11-13 23:17
编辑
下载
权限
删除
重命名
class-wp-phpmailer.php
-rw-r--r--
4.25 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-plugin-dependencies.php
-rw-r--r--
24.72 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
class-wp-post-type.php
-rw-r--r--
29.96 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
class-wp-post.php
-rw-r--r--
6.34 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-recovery-mode-cookie-service.php
-rw-r--r--
6.72 KB
2022-10-04 13:29
编辑
下载
权限
删除
重命名
class-wp-recovery-mode-email-service-20260507073323.php
-rw-r--r--
10.92 KB
2023-05-03 01:15
编辑
下载
权限
删除
重命名
class-wp-recovery-mode-email-service.php
-rw-r--r--
10.92 KB
2023-05-03 01:15
编辑
下载
权限
删除
重命名
class-wp-recovery-mode-key-service-plain.php
-rw-r--r--
972 B
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-recovery-mode-key-service.php
-rw-r--r--
4.77 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
class-wp-recovery-mode-link-service.php
-rw-r--r--
3.38 KB
2022-09-13 01:17
编辑
下载
权限
删除
重命名
class-wp-recovery-mode.php
-rw-r--r--
11.18 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
class-wp-rewrite.php
-rw-r--r--
62.19 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-role.php
-rw-r--r--
2.46 KB
2023-09-08 19:02
编辑
下载
权限
删除
重命名
class-wp-roles.php
-rw-r--r--
9.17 KB
2026-02-03 19:37
编辑
下载
权限
删除
重命名
class-wp-session-tokens.php
-rw-r--r--
7.15 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
class-wp-simplepie-file.php
-rw-r--r--
3.47 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-simplepie-sanitize-kses.php
-rw-r--r--
1.87 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
class-wp-site-query-20260507060430.php
-rw-r--r--
30.91 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-site-query.php
-rw-r--r--
30.91 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-site.php
-rw-r--r--
7.29 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-styles.php
-rw-r--r--
12.54 KB
2026-02-03 19:37
编辑
下载
权限
删除
重命名
class-wp-tax-query.php
-rw-r--r--
19.12 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-taxonomy.php
-rw-r--r--
18.12 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
class-wp-term.php
-rw-r--r--
5.17 KB
2022-09-13 01:17
编辑
下载
权限
删除
重命名
class-wp-textdomain-registry.php
-rw-r--r--
10.24 KB
2024-11-21 18:36
编辑
下载
权限
删除
重命名
class-wp-theme-json-schema.php
-rw-r--r--
7.19 KB
2024-06-06 17:32
编辑
下载
权限
删除
重命名
class-wp-theme.php
-rw-r--r--
64.27 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
class-wp-token-map.php
-rw-r--r--
27.95 KB
2024-11-13 23:17
编辑
下载
权限
删除
重命名
class-wp-translation-file-20260507072842.php
-rw-r--r--
6.13 KB
2024-04-16 05:33
编辑
下载
权限
删除
重命名
class-wp-translation-file.php
-rw-r--r--
6.13 KB
2024-04-16 05:33
编辑
下载
权限
删除
重命名
class-wp-url-pattern-prefixer.php
-rw-r--r--
4.69 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
class-wp-user-meta-session-tokens.php
-rw-r--r--
2.94 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-user-query.php
-rw-r--r--
43.13 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-walker.php
-rw-r--r--
13.01 KB
2024-08-08 05:17
编辑
下载
权限
删除
重命名
class-wp-widget-factory.php
-rw-r--r--
3.27 KB
2022-09-13 01:17
编辑
下载
权限
删除
重命名
class-wp.php
-rw-r--r--
25.86 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class.wp-dependencies.php
-rw-r--r--
373 B
2022-09-20 23:47
编辑
下载
权限
删除
重命名
class.wp-styles.php
-rw-r--r--
338 B
2022-09-20 23:47
编辑
下载
权限
删除
重命名
comment-template.php
-rw-r--r--
100.73 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
comment.php
-rw-r--r--
130.93 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
compat-utf8.php
-rw-r--r--
19.1 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
compat.php
-rw-r--r--
17.41 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
cron.php
-rw-r--r--
41.98 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
date.php
-rw-r--r--
400 B
2022-06-17 20:50
编辑
下载
权限
删除
重命名
default-constants.php
-rw-r--r--
11.1 KB
2024-11-13 23:17
编辑
下载
权限
删除
重命名
default-filters.php
-rw-r--r--
37.02 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
default-widgets.php
-rw-r--r--
2.24 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
deprecated.php
-rw-r--r--
188.13 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
error-protection.php
-rw-r--r--
4.02 KB
2023-05-03 01:15
编辑
下载
权限
删除
重命名
error_log
-rw-r--r--
47.11 KB
2026-05-07 06:57
编辑
下载
权限
删除
重命名
feed-atom-comments.php
-rw-r--r--
5.38 KB
2024-03-04 23:11
编辑
下载
权限
删除
重命名
feed-atom.php
-rw-r--r--
3.05 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
feed-rdf.php
-rw-r--r--
2.61 KB
2020-01-29 11:15
编辑
下载
权限
删除
重命名
feed-rss.php
-rw-r--r--
1.16 KB
2020-01-29 11:15
编辑
下载
权限
删除
重命名
feed-rss2.php
-rw-r--r--
3.71 KB
2020-01-29 11:15
编辑
下载
权限
删除
重命名
feed.php
-rw-r--r--
24.6 KB
2026-02-03 19:37
编辑
下载
权限
删除
重命名
fonts.php
-rw-r--r--
9.56 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
formatting.php
-rw-r--r--
346.43 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
functions.php
-rw-r--r--
281.84 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
functions.wp-styles.php
-rw-r--r--
8.44 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
general-template.php
-rw-r--r--
168.95 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
global-styles-and-settings.php
-rw-r--r--
20.71 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
http.php
-rw-r--r--
25.27 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
kses.php
-rw-r--r--
81.73 KB
2026-03-10 18:32
编辑
下载
权限
删除
重命名
l10n.php
-rw-r--r--
67.18 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
link-template.php
-rw-r--r--
156.36 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
load.php
-rw-r--r--
55.19 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
locale.php
-rw-r--r--
162 B
2019-10-09 02:49
编辑
下载
权限
删除
重命名
media-template-20260507050408.php
-rw-r--r--
61.72 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
media-template.php
-rw-r--r--
61.72 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
media.php
-rw-r--r--
216.06 KB
2026-03-10 18:32
编辑
下载
权限
删除
重命名
meta-20260507060411.php
-rw-r--r--
65 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
meta.php
-rw-r--r--
65 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
ms-blogs-20260507070856.php
-rw-r--r--
25.24 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
ms-blogs.php
-rw-r--r--
25.24 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
ms-default-constants.php
-rw-r--r--
4.81 KB
2024-06-14 06:20
编辑
下载
权限
删除
重命名
ms-default-filters.php
-rw-r--r--
6.48 KB
2023-02-24 11:53
编辑
下载
权限
删除
重命名
ms-deprecated.php
-rw-r--r--
21.25 KB
2024-04-13 03:17
编辑
下载
权限
删除
重命名
ms-files.php
-rw-r--r--
2.79 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
ms-functions.php
-rw-r--r--
89.69 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
ms-load.php
-rw-r--r--
19.42 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
ms-network.php
-rw-r--r--
3.69 KB
2023-05-02 20:56
编辑
下载
权限
删除
重命名
ms-settings.php
-rw-r--r--
4.11 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
ms-site-20260507050418.php
-rw-r--r--
40.74 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
ms-site.php
-rw-r--r--
40.74 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
nav-menu-template.php
-rw-r--r--
25.38 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
nav-menu.php
-rw-r--r--
43.31 KB
2026-03-10 18:32
编辑
下载
权限
删除
重命名
option-20260507060504.php
-rw-r--r--
102.57 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
option.php
-rw-r--r--
102.57 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
pluggable-deprecated.php
-rw-r--r--
6.18 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
post-formats.php
-rw-r--r--
6.94 KB
2024-05-28 01:59
编辑
下载
权限
删除
重命名
post-template.php
-rw-r--r--
67.04 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
post-thumbnail-template.php
-rw-r--r--
10.62 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
post.php
-rw-r--r--
289.13 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
registration-functions.php
-rw-r--r--
200 B
2020-11-12 21:47
编辑
下载
权限
删除
重命名
registration.php
-rw-r--r--
200 B
2020-11-12 21:47
编辑
下载
权限
删除
重命名
rest-api.php
-rw-r--r--
98.29 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
revision.php
-rw-r--r--
30.02 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
rewrite.php
-rw-r--r--
19.03 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
robots-template.php
-rw-r--r--
5.06 KB
2022-04-07 01:03
编辑
下载
权限
删除
重命名
rss-20260507060524.php
-rw-r--r--
22.66 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
rss-functions.php
-rw-r--r--
255 B
2020-11-17 09:22
编辑
下载
权限
删除
重命名
rss.php
-rw-r--r--
22.66 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
session.php
-rw-r--r--
258 B
2020-02-06 17:03
编辑
下载
权限
删除
重命名
settings.php
-rw-r--r--
4.52 KB
2023-09-26 23:17
编辑
下载
权限
删除
重命名
sitemaps.php
-rw-r--r--
3.16 KB
2021-05-16 03:08
编辑
下载
权限
删除
重命名
speculative-loading.php
-rw-r--r--
8.4 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
spl-autoload-compat.php
-rw-r--r--
441 B
2020-11-12 21:47
编辑
下载
权限
删除
重命名
style-engine.php
-rw-r--r--
7.39 KB
2024-05-03 14:17
编辑
下载
权限
删除
重命名
taxonomy.php
-rw-r--r--
172.91 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
template-20260507045958.php
-rw-r--r--
35.97 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
template-canvas.php
-rw-r--r--
544 B
2023-10-01 09:52
编辑
下载
权限
删除
重命名
template.php
-rw-r--r--
35.97 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
theme-i18n.json
-rw-r--r--
1.69 KB
2026-02-03 19:37
编辑
下载
权限
删除
重命名
theme-previews.php
-rw-r--r--
2.84 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
theme-templates.php
-rw-r--r--
6.09 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
theme.json
-rw-r--r--
8.71 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
theme.php
-rw-r--r--
131.84 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
update.php
-rw-r--r--
37.45 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
user.php
-rw-r--r--
173.89 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
utf8.php
-rw-r--r--
7.09 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
vars.php
-rw-r--r--
6.41 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
version.php
-rw-r--r--
1.08 KB
2026-03-11 18:34
编辑
下载
权限
删除
重命名
widgets.php
-rw-r--r--
69.46 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
wp-db.php
-rw-r--r--
445 B
2022-07-22 08:15
编辑
下载
权限
删除
重命名