编辑:class-wp-term.php
<?php /** * Taxonomy API: WP_Term class * * @package WordPress * @subpackage Taxonomy * @since 4.4.0 */ /** * Core class used to implement the WP_Term object. * * @since 4.4.0 * * @property-read object $data Sanitized term data. */ #[AllowDynamicProperties] final class WP_Term { /** * Term ID. * * @since 4.4.0 * @var int */ public $term_id; /** * The term's name. * * @since 4.4.0 * @var string */ public $name = ''; /** * The term's slug. * * @since 4.4.0 * @var string */ public $slug = ''; /** * The term's term_group. * * @since 4.4.0 * @var int */ public $term_group = ''; /** * Term Taxonomy ID. * * @since 4.4.0 * @var int */ public $term_taxonomy_id = 0; /** * The term's taxonomy name. * * @since 4.4.0 * @var string */ public $taxonomy = ''; /** * The term's description. * * @since 4.4.0 * @var string */ public $description = ''; /** * ID of a term's parent term. * * @since 4.4.0 * @var int */ public $parent = 0; /** * Cached object count for this term. * * @since 4.4.0 * @var int */ public $count = 0; /** * Stores the term object's sanitization level. * * Does not correspond to a database field. * * @since 4.4.0 * @var string */ public $filter = 'raw'; /** * Retrieve WP_Term instance. * * @since 4.4.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @param int $term_id Term ID. * @param string $taxonomy Optional. Limit matched terms to those matching `$taxonomy`. Only used for * disambiguating potentially shared terms. * @return WP_Term|WP_Error|false Term object, if found. WP_Error if `$term_id` is shared between taxonomies and * there's insufficient data to distinguish which term is intended. * False for other failures. */ public static function get_instance( $term_id, $taxonomy = null ) { global $wpdb; $term_id = (int) $term_id; if ( ! $term_id ) { return false; } $_term = wp_cache_get( $term_id, 'terms' ); // If there isn't a cached version, hit the database. if ( ! $_term || ( $taxonomy && $taxonomy !== $_term->taxonomy ) ) { // Any term found in the cache is not a match, so don't use it. $_term = false; // Grab all matching terms, in case any are shared between taxonomies. $terms = $wpdb->get_results( $wpdb->prepare( "SELECT t.*, tt.* FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy AS tt ON t.term_id = tt.term_id WHERE t.term_id = %d", $term_id ) ); if ( ! $terms ) { return false; } // If a taxonomy was specified, find a match. if ( $taxonomy ) { foreach ( $terms as $match ) { if ( $taxonomy === $match->taxonomy ) { $_term = $match; break; } } // If only one match was found, it's the one we want. } elseif ( 1 === count( $terms ) ) { $_term = reset( $terms ); // Otherwise, the term must be shared between taxonomies. } else { // If the term is shared only with invalid taxonomies, return the one valid term. foreach ( $terms as $t ) { if ( ! taxonomy_exists( $t->taxonomy ) ) { continue; } // Only hit if we've already identified a term in a valid taxonomy. if ( $_term ) { return new WP_Error( 'ambiguous_term_id', __( 'Term ID is shared between multiple taxonomies' ), $term_id ); } $_term = $t; } } if ( ! $_term ) { return false; } // Don't return terms from invalid taxonomies. if ( ! taxonomy_exists( $_term->taxonomy ) ) { return new WP_Error( 'invalid_taxonomy', __( 'Invalid taxonomy.' ) ); } $_term = sanitize_term( $_term, $_term->taxonomy, 'raw' ); // Don't cache terms that are shared between taxonomies. if ( 1 === count( $terms ) ) { wp_cache_add( $term_id, $_term, 'terms' ); } } $term_obj = new WP_Term( $_term ); $term_obj->filter( $term_obj->filter ); return $term_obj; } /** * Constructor. * * @since 4.4.0 * * @param WP_Term|object $term Term object. */ public function __construct( $term ) { foreach ( get_object_vars( $term ) as $key => $value ) { $this->$key = $value; } } /** * Sanitizes term fields, according to the filter type provided. * * @since 4.4.0 * * @param string $filter Filter context. Accepts 'edit', 'db', 'display', 'attribute', 'js', 'rss', or 'raw'. */ public function filter( $filter ) { sanitize_term( $this, $this->taxonomy, $filter ); } /** * Converts an object to array. * * @since 4.4.0 * * @return array Object as array. */ public function to_array() { return get_object_vars( $this ); } /** * Getter. * * @since 4.4.0 * * @param string $key Property to get. * @return mixed Property value. */ public function __get( $key ) { switch ( $key ) { case 'data': $data = new stdClass(); $columns = array( 'term_id', 'name', 'slug', 'term_group', 'term_taxonomy_id', 'taxonomy', 'description', 'parent', 'count' ); foreach ( $columns as $column ) { $data->{$column} = isset( $this->{$column} ) ? $this->{$column} : null; } return sanitize_term( $data, $data->taxonomy, 'raw' ); } } }
保存文件
位置:
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
编辑
下载
权限
删除
重命名
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-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
编辑
下载
权限
删除
重命名
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-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-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-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-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-classic-to-block-menu-converter.php
-rw-r--r--
3.97 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-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-duotone.php
-rw-r--r--
39.83 KB
2024-06-14 21:48
编辑
下载
权限
删除
重命名
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-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-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-post-type.php
-rw-r--r--
29.96 KB
2025-04-16 18:37
编辑
下载
权限
删除
重命名
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-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-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-user-meta-session-tokens.php
-rw-r--r--
2.94 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-styles.php
-rw-r--r--
338 B
2022-09-20 23:47
编辑
下载
权限
删除
重命名
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-filters.php
-rw-r--r--
37.02 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
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-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
编辑
下载
权限
删除
重命名
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
编辑
下载
权限
删除
重命名
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
编辑
下载
权限
删除
重命名
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-load.php
-rw-r--r--
19.42 KB
2025-12-03 15:12
编辑
下载
权限
删除
重命名
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
编辑
下载
权限
删除
重命名
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-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
编辑
下载
权限
删除
重命名
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
编辑
下载
权限
删除
重命名