编辑:class-wp-oembed-controller.php
<?php /** * WP_oEmbed_Controller class, used to provide an oEmbed endpoint. * * @package WordPress * @subpackage Embeds * @since 4.4.0 */ /** * oEmbed API endpoint controller. * * Registers the REST API route and delivers the response data. * The output format (XML or JSON) is handled by the REST API. * * @since 4.4.0 */ #[AllowDynamicProperties] final class WP_oEmbed_Controller { /** * Register the oEmbed REST API route. * * @since 4.4.0 */ public function register_routes() { /** * Filters the maxwidth oEmbed parameter. * * @since 4.4.0 * * @param int $maxwidth Maximum allowed width. Default 600. */ $maxwidth = apply_filters( 'oembed_default_width', 600 ); register_rest_route( 'oembed/1.0', '/embed', array( array( 'methods' => WP_REST_Server::READABLE, 'callback' => array( $this, 'get_item' ), 'permission_callback' => '__return_true', 'args' => array( 'url' => array( 'description' => __( 'The URL of the resource for which to fetch oEmbed data.' ), 'required' => true, 'type' => 'string', 'format' => 'uri', ), 'format' => array( 'default' => 'json', 'sanitize_callback' => 'wp_oembed_ensure_format', ), 'maxwidth' => array( 'default' => $maxwidth, 'sanitize_callback' => 'absint', ), ), ), ) ); register_rest_route( 'oembed/1.0', '/proxy', array( array( 'methods' => WP_REST_Server::READABLE, 'callback' => array( $this, 'get_proxy_item' ), 'permission_callback' => array( $this, 'get_proxy_item_permissions_check' ), 'args' => array( 'url' => array( 'description' => __( 'The URL of the resource for which to fetch oEmbed data.' ), 'required' => true, 'type' => 'string', 'format' => 'uri', ), 'format' => array( 'description' => __( 'The oEmbed format to use.' ), 'type' => 'string', 'default' => 'json', 'enum' => array( 'json', 'xml', ), ), 'maxwidth' => array( 'description' => __( 'The maximum width of the embed frame in pixels.' ), 'type' => 'integer', 'default' => $maxwidth, 'sanitize_callback' => 'absint', ), 'maxheight' => array( 'description' => __( 'The maximum height of the embed frame in pixels.' ), 'type' => 'integer', 'sanitize_callback' => 'absint', ), 'discover' => array( 'description' => __( 'Whether to perform an oEmbed discovery request for unsanctioned providers.' ), 'type' => 'boolean', 'default' => true, ), ), ), ) ); } /** * Callback for the embed API endpoint. * * Returns the JSON object for the post. * * @since 4.4.0 * * @param WP_REST_Request $request Full data about the request. * @return array|WP_Error oEmbed response data or WP_Error on failure. */ public function get_item( $request ) { $post_id = url_to_postid( $request['url'] ); /** * Filters the determined post ID. * * @since 4.4.0 * * @param int $post_id The post ID. * @param string $url The requested URL. */ $post_id = apply_filters( 'oembed_request_post_id', $post_id, $request['url'] ); $data = get_oembed_response_data( $post_id, $request['maxwidth'] ); if ( ! $data ) { return new WP_Error( 'oembed_invalid_url', get_status_header_desc( 404 ), array( 'status' => 404 ) ); } return $data; } /** * Checks if current user can make a proxy oEmbed request. * * @since 4.8.0 * * @return true|WP_Error True if the request has read access, WP_Error object otherwise. */ public function get_proxy_item_permissions_check() { if ( ! current_user_can( 'edit_posts' ) ) { return new WP_Error( 'rest_forbidden', __( 'Sorry, you are not allowed to make proxied oEmbed requests.' ), array( 'status' => rest_authorization_required_code() ) ); } return true; } /** * Callback for the proxy API endpoint. * * Returns the JSON object for the proxied item. * * @since 4.8.0 * * @see WP_oEmbed::get_html() * @global WP_Embed $wp_embed WordPress Embed object. * @global WP_Scripts $wp_scripts * * @param WP_REST_Request $request Full data about the request. * @return object|WP_Error oEmbed response data or WP_Error on failure. */ public function get_proxy_item( $request ) { global $wp_embed, $wp_scripts; $args = $request->get_params(); // Serve oEmbed data from cache if set. unset( $args['_wpnonce'] ); $cache_key = 'oembed_' . md5( serialize( $args ) ); $data = get_transient( $cache_key ); if ( ! empty( $data ) ) { return $data; } $url = $request['url']; unset( $args['url'] ); // Copy maxwidth/maxheight to width/height since WP_oEmbed::fetch() uses these arg names. if ( isset( $args['maxwidth'] ) ) { $args['width'] = $args['maxwidth']; } if ( isset( $args['maxheight'] ) ) { $args['height'] = $args['maxheight']; } // Short-circuit process for URLs belonging to the current site. $data = get_oembed_response_data_for_url( $url, $args ); if ( $data ) { return $data; } $data = _wp_oembed_get_object()->get_data( $url, $args ); if ( false === $data ) { // Try using a classic embed, instead. /* @var WP_Embed $wp_embed */ $html = $wp_embed->get_embed_handler_html( $args, $url ); if ( $html ) { // Check if any scripts were enqueued by the shortcode, and include them in the response. $enqueued_scripts = array(); foreach ( $wp_scripts->queue as $script ) { $enqueued_scripts[] = $wp_scripts->registered[ $script ]->src; } return (object) array( 'provider_name' => __( 'Embed Handler' ), 'html' => $html, 'scripts' => $enqueued_scripts, ); } return new WP_Error( 'oembed_invalid_url', get_status_header_desc( 404 ), array( 'status' => 404 ) ); } /** This filter is documented in wp-includes/class-wp-oembed.php */ $data->html = apply_filters( 'oembed_result', _wp_oembed_get_object()->data2html( (object) $data, $url ), $url, $args ); /** * Filters the oEmbed TTL value (time to live). * * Similar to the {@see 'oembed_ttl'} filter, but for the REST API * oEmbed proxy endpoint. * * @since 4.8.0 * * @param int $time Time to live (in seconds). * @param string $url The attempted embed URL. * @param array $args An array of embed request arguments. */ $ttl = apply_filters( 'rest_oembed_ttl', DAY_IN_SECONDS, $url, $args ); set_transient( $cache_key, $data, $ttl ); return $data; } }
保存文件
位置:
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-api.php
-rw-r--r--
23.8 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
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-utils.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-json.php
-rw-r--r--
42.65 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-oembed.php
-rw-r--r--
401 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-comment.php
-rw-r--r--
13.89 KB
2024-03-19 01:16
编辑
下载
权限
删除
重命名
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-editor-context.php
-rw-r--r--
1.32 KB
2022-09-13 01:17
编辑
下载
权限
删除
重命名
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-processor.php
-rw-r--r--
68.32 KB
2026-02-03 19:37
编辑
下载
权限
删除
重命名
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-comment.php
-rw-r--r--
9.22 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
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-date-query.php
-rw-r--r--
35.3 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-feed-cache-transient.php
-rw-r--r--
3.23 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-hook.php
-rw-r--r--
16.28 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
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-requests-hooks.php
-rw-r--r--
1.97 KB
2022-12-16 08:02
编辑
下载
权限
删除
重命名
class-wp-http-requests-response.php
-rw-r--r--
4.3 KB
2023-10-11 16:35
编辑
下载
权限
删除
重命名
class-wp-http-response.php
-rw-r--r--
2.91 KB
2022-09-13 01:17
编辑
下载
权限
删除
重命名
class-wp-http-streams.php
-rw-r--r--
16.46 KB
2023-09-22 03:59
编辑
下载
权限
删除
重命名
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-network.php
-rw-r--r--
12.01 KB
2024-11-13 23:17
编辑
下载
权限
删除
重命名
class-wp-object-cache.php
-rw-r--r--
17.11 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wp-oembed-controller.php
-rw-r--r--
6.74 KB
2024-03-06 15:35
编辑
下载
权限
删除
重命名
class-wp-oembed.php
-rw-r--r--
30.93 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-query.php
-rw-r--r--
159.91 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-scripts.php
-rw-r--r--
34.05 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-query.php
-rw-r--r--
39.99 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
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-data.php
-rw-r--r--
1.77 KB
2024-06-04 21:25
编辑
下载
权限
删除
重命名
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-user.php
-rw-r--r--
22.5 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-widget.php
-rw-r--r--
18 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
class-wp.php
-rw-r--r--
25.86 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
class-wpdb.php
-rw-r--r--
115.85 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
编辑
下载
权限
删除
重命名
embed-template.php
-rw-r--r--
338 B
2022-06-17 20:50
编辑
下载
权限
删除
重命名
embed.php
-rw-r--r--
38 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-comments.php
-rw-r--r--
4.04 KB
2024-03-04 23:11
编辑
下载
权限
删除
重命名
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
编辑
下载
权限
删除
重命名
pluggable.php
-rw-r--r--
124.47 KB
2026-02-03 19: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
编辑
下载
权限
删除
重命名
query.php
-rw-r--r--
36.23 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
编辑
下载
权限
删除
重命名
shortcodes.php
-rw-r--r--
23.49 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
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-loader.php
-rw-r--r--
4.17 KB
2026-03-11 06:34
编辑
下载
权限
删除
重命名
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
编辑
下载
权限
删除
重命名
wp-diff.php
-rw-r--r--
799 B
2025-04-16 18:37
编辑
下载
权限
删除
重命名