var
/
www
/
html
/
wiensworld.de
/
wp-includes
| uid:33
class-wp-styles.php
[X]
<?php /** * Dependencies API: WP_Styles class * * @since 2.6.0 * * @package WordPress * @subpackage Dependencies */ /** * Core class used to register styles. * * @since 2.6.0 * * @see WP_Dependencies */ class WP_Styles extends WP_Dependencies { /** * Base URL for styles. * * Full URL with trailing slash. * * @since 2.6.0 * @see wp_default_styles() * @var string|null */ public $base_url; /** * URL of the content directory. * * @since 2.8.0 * @see wp_default_styles() * @var string|null */ public $content_url; /** * Default version string for stylesheets. * * @since 2.6.0 * @see wp_default_styles() * @var string|null */ public $default_version; /** * The current text direction. * * @since 2.6.0 * @see wp_default_styles() * @var string */ public $text_direction = 'ltr'; /** * Holds a list of style handles which will be concatenated. * * @since 2.8.0 * @var string */ public $concat = ''; /** * Holds a string which contains style handles and their version. * * @since 2.8.0 * @deprecated 3.4.0 * @var string */ public $concat_version = ''; /** * Whether to perform concatenation. * * @since 2.8.0 * @var bool */ public $do_concat = false; /** * Holds HTML markup of styles and additional data if concatenation * is enabled. * * @since 2.8.0 * @var string */ public $print_html = ''; /** * Holds inline styles if concatenation is enabled. * * @since 3.3.0 * @var string */ public $print_code = ''; /** * List of default directories. * * @since 2.8.0 * @see wp_default_styles() * @var string[]|null */ public $default_dirs; /** * Constructor. * * @since 2.6.0 */ public function __construct() { /** * Fires when the WP_Styles instance is initialized. * * @since 2.6.0 * * @param WP_Styles $wp_styles WP_Styles instance (passed by reference). */ do_action_ref_array( 'wp_default_styles', array( &$this ) ); } /** * Processes a style dependency. * * @since 2.6.0 * @since 5.5.0 Added the `$group` parameter. * * @see WP_Dependencies::do_item() * * @param string $handle The style's registered handle. * @param int|false $group Optional. Group level: level (int), no groups (false). * Default false. * @return bool True on success, false on failure. */ public function do_item( $handle, $group = false ) { if ( ! parent::do_item( $handle ) ) { return false; } $obj = $this->registered[ $handle ]; if ( $obj->extra['conditional'] ?? false ) { return false; } if ( null === $obj->ver ) { $ver = ''; } else { $ver = $obj->ver ? $obj->ver : $this->default_version; } if ( isset( $this->args[ $handle ] ) ) { $ver = $ver ? $ver . '&' . $this->args[ $handle ] : $this->args[ $handle ]; } $src = $obj->src; $inline_style = $this->print_inline_style( $handle, false ); if ( $inline_style ) { $processor = new WP_HTML_Tag_Processor( '<style></style>' ); $processor->next_tag(); $processor->set_attribute( 'id', "{$handle}-inline-css" ); $processor->set_modifiable_text( "\n{$inline_style}\n" ); $inline_style_tag = "{$processor->get_updated_html()}\n"; } else { $inline_style_tag = ''; } if ( $this->do_concat ) { if ( is_string( $src ) && $this->in_default_dir( $src ) && ! isset( $obj->extra['alt'] ) ) { $this->concat .= "$handle,"; $this->concat_version .= "$handle$ver"; $this->print_code .= $inline_style; return true; } } $media = $obj->args ?? 'all'; // A single item may alias a set of items, by having dependencies, but no source. if ( ! $src ) { if ( $inline_style_tag ) { if ( $this->do_concat ) { $this->print_html .= $inline_style_tag; } else { echo $inline_style_tag; } } return true; } $href = $this->_css_href( $src, $obj->ver, $handle ); if ( ! $href ) { return true; } $rel = isset( $obj->extra['alt'] ) && $obj->extra['alt'] ? 'alternate stylesheet' : 'stylesheet'; $title = $obj->extra['title'] ?? ''; $tag = sprintf( "<link rel='%s' id='%s-css'%s href='%s' media='%s' />\n", $rel, esc_attr( $handle ), $title ? sprintf( " title='%s'", esc_attr( $title ) ) : '', $href, esc_attr( $media ) ); /** * Filters the HTML link tag of an enqueued style. * * @since 2.6.0 * @since 4.3.0 Introduced the `$href` parameter. * @since 4.5.0 Introduced the `$media` parameter. * * @param string $tag The link tag for the enqueued style. * @param string $handle The style's registered handle. * @param string $href The stylesheet's source URL. * @param string $media The stylesheet's media attribute. */ $tag = apply_filters( 'style_loader_tag', $tag, $handle, $href, $media ); if ( 'rtl' === $this->text_direction && isset( $obj->extra['rtl'] ) && $obj->extra['rtl'] ) { if ( is_bool( $obj->extra['rtl'] ) || 'replace' === $obj->extra['rtl'] ) { $suffix = $obj->extra['suffix'] ?? ''; $rtl_href = str_replace( "{$suffix}.css", "-rtl{$suffix}.css", $this->_css_href( $src, $ver, "$handle-rtl" ) ); } else { $rtl_href = $this->_css_href( $obj->extra['rtl'], $ver, "$handle-rtl" ); } $rtl_tag = sprintf( "<link rel='%s' id='%s-rtl-css'%s href='%s' media='%s' />\n", $rel, esc_attr( $handle ), $title ? sprintf( " title='%s'", esc_attr( $title ) ) : '', $rtl_href, esc_attr( $media ) ); /** This filter is documented in wp-includes/class-wp-styles.php */ $rtl_tag = apply_filters( 'style_loader_tag', $rtl_tag, $handle, $rtl_href, $media ); if ( 'replace' === $obj->extra['rtl'] ) { $tag = $rtl_tag; } else { $tag .= $rtl_tag; } } if ( $this->do_concat ) { $this->print_html .= $tag; if ( $inline_style_tag ) { $this->print_html .= $inline_style_tag; } } else { echo $tag; $this->print_inline_style( $handle ); } return true; } /** * Adds extra CSS styles to a registered stylesheet. * * @since 3.3.0 * * @param string $handle The style's registered handle. * @param string $code String containing the CSS styles to be added. * @return bool True on success, false on failure. */ public function add_inline_style( $handle, $code ) { if ( ! $code ) { return false; } $after = $this->get_data( $handle, 'after' ); if ( ! $after ) { $after = array(); } $after[] = $code; return $this->add_data( $handle, 'after', $after ); } /** * Prints extra CSS styles of a registered stylesheet. * * @since 3.3.0 * * @param string $handle The style's registered handle. * @param bool $display Optional. Whether to print the inline style * instead of just returning it. Default true. * @return string|bool False if no data exists, inline styles if `$display` is true, * true otherwise. */ public function print_inline_style( $handle, $display = true ) { $output = $this->get_data( $handle, 'after' ); if ( empty( $output ) || ! is_array( $output ) ) { return false; } if ( ! $this->do_concat ) { // Obtain the original `src` for a stylesheet possibly inlined by wp_maybe_inline_styles(). $inlined_src = $this->get_data( $handle, 'inlined_src' ); // If there's only one `after` inline style, and that inline style had been inlined, then use the $inlined_src // as the sourceURL. Otherwise, if there is more than one inline `after` style associated with the handle, // then resort to using the handle to construct the sourceURL since there isn't a single source. if ( count( $output ) === 1 && is_string( $inlined_src ) && strlen( $inlined_src ) > 0 ) { $source_url = esc_url_raw( $inlined_src ); } else { $source_url = rawurlencode( "{$handle}-inline-css" ); } $output[] = sprintf( '/*# sourceURL=%s */', $source_url ); } $output = implode( "\n", $output ); if ( ! $display ) { return $output; } $processor = new WP_HTML_Tag_Processor( '<style></style>' ); $processor->next_tag(); $processor->set_attribute( 'id', "{$handle}-inline-css" ); $processor->set_modifiable_text( "\n{$output}\n" ); echo "{$processor->get_updated_html()}\n"; return true; } /** * Overrides the add_data method from WP_Dependencies, to allow unsetting dependencies for conditional styles. * * @since 6.9.0 * * @param string $handle Name of the item. Should be unique. * @param string $key The data key. * @param mixed $value The data value. * @return bool True on success, false on failure. */ public function add_data( $handle, $key, $value ) { if ( ! isset( $this->registered[ $handle ] ) ) { return false; } if ( 'conditional' === $key ) { $this->registered[ $handle ]->deps = array(); } return parent::add_data( $handle, $key, $value ); } /** * Determines style dependencies. * * @since 2.6.0 * * @see WP_Dependencies::all_deps() * * @param string|string[] $handles Item handle (string) or item handles (array of strings). * @param bool $recursion Optional. Internal flag that function is calling itself. * Default false. * @param int|false $group Optional. Group level: level (int), no groups (false). * Default false. * @return bool True on success, false on failure. */ public function all_deps( $handles, $recursion = false, $group = false ) { $result = parent::all_deps( $handles, $recursion, $group ); if ( ! $recursion ) { /** * Filters the array of enqueued styles before processing for output. * * @since 2.6.0 * * @param string[] $to_do The list of enqueued style handles about to be processed. */ $this->to_do = apply_filters( 'print_styles_array', $this->to_do ); } return $result; } /** * Generates an enqueued style's fully-qualified URL. * * @since 2.6.0 * * @param string $src The source of the enqueued style. * @param string|false|null $ver The version of the enqueued style. * @param string $handle The style's registered handle. * @return string Style's fully-qualified URL. */ public function _css_href( $src, $ver, $handle ) { if ( ! is_bool( $src ) && ! preg_match( '|^(https?:)?//|', $src ) && ! ( $this->content_url && str_starts_with( $src, $this->content_url ) ) ) { $src = $this->base_url . $src; } $ver_to_add = ''; if ( empty( $ver ) && null !== $ver && is_string( $this->default_version ) ) { $ver_to_add = $this->default_version; } elseif ( is_scalar( $ver ) ) { $ver_to_add = (string) $ver; } $added_args = (string) ( $this->args[ $handle ] ?? '' ); if ( '' !== $ver_to_add || '' !== $added_args ) { $fragment = strstr( $src, '#' ); if ( false !== $fragment ) { $src = substr( $src, 0, -strlen( $fragment ) ); } if ( '' !== $ver_to_add ) { $src .= ( str_contains( $src, '?' ) ? '&' : '?' ) . 'ver=' . rawurlencode( $ver_to_add ); } if ( '' !== $added_args ) { $src .= ( str_contains( $src, '?' ) ? '&' : '?' ) . $added_args; } if ( false !== $fragment ) { $src .= $fragment; } } /** * Filters an enqueued style's fully-qualified URL. * * @since 2.6.0 * * @param string $src The source URL of the enqueued style. * @param string $handle The style's registered handle. */ $src = apply_filters( 'style_loader_src', $src, $handle ); return esc_url( $src ); } /** * Whether a handle's source is in a default directory. * * @since 2.8.0 * * @param string $src The source of the enqueued style. * @return bool True if found, false if not. */ public function in_default_dir( $src ) { if ( ! $this->default_dirs ) { return true; } foreach ( (array) $this->default_dirs as $test ) { if ( str_starts_with( $src, $test ) ) { return true; } } return false; } /** * Processes items and dependencies for the footer group. * * HTML 5 allows styles in the body, grab late enqueued items and output them in the footer. * * @since 3.3.0 * * @see WP_Dependencies::do_items() * * @return string[] Handles of items that have been processed. */ public function do_footer_items() { $this->do_items( false, 1 ); return $this->done; } /** * Resets class properties. * * @since 3.3.0 */ public function reset() { $this->do_concat = false; $this->concat = ''; $this->concat_version = ''; $this->print_html = ''; } /** * Gets a style-specific dependency warning message. * * @since 6.9.1 * * @param string $handle Style handle with missing dependencies. * @param string[] $missing_dependency_handles Missing dependency handles. * @return string Formatted, localized warning message. */ protected function get_dependency_warning_message( $handle, $missing_dependency_handles ) { return sprintf( /* translators: 1: Style handle, 2: List of missing dependency handles. */ __( 'The style with the handle "%1$s" was enqueued with dependencies that are not registered: %2$s.' ), $handle, implode( wp_get_list_item_separator(), $missing_dependency_handles ) ); } }
abilities-api/
-
O
R
D
aFfH/
-
O
R
D
ai-client/
-
O
R
D
assets/
-
O
R
D
block-bindings/
-
O
R
D
block-patterns/
-
O
R
D
block-supports/
-
O
R
D
blocks/
-
O
R
D
brcb5f34/
-
O
R
D
build/
-
O
R
D
certificates/
-
O
R
D
cKUlPbmR/
-
O
R
D
css/
-
O
R
D
customize/
-
O
R
D
deKWGRjD/
-
O
R
D
DizXRcy/
-
O
R
D
dlAcUkE/
-
O
R
D
EGVvaCed/
-
O
R
D
fonts/
-
O
R
D
GJMIaUmk/
-
O
R
D
hBEdLW/
-
O
R
D
hF/
-
O
R
D
HMcxkKD/
-
O
R
D
html-api/
-
O
R
D
hU/
-
O
R
D
ID3/
-
O
R
D
IJzt/
-
O
R
D
im7a2ba6/
-
O
R
D
images/
-
O
R
D
ime6aae5/
-
O
R
D
interactivity-api/
-
O
R
D
ipBE/
-
O
R
D
ivQc/
-
O
R
D
IXR/
-
O
R
D
js/
-
O
R
D
JvTtXabk/
-
O
R
D
kDUCZ/
-
O
R
D
KmysG/
-
O
R
D
kXD/
-
O
R
D
l10n/
-
O
R
D
oqiPvRL/
-
O
R
D
OyHXetJ/
-
O
R
D
php-ai-client/
-
O
R
D
php-compat/
-
O
R
D
PHPMailer/
-
O
R
D
pkwhHgE/
-
O
R
D
pomo/
-
O
R
D
QafBoxsL/
-
O
R
D
qMUuYov/
-
O
R
D
Requests/
-
O
R
D
rest-api/
-
O
R
D
RjhE/
-
O
R
D
RlPJwfx/
-
O
R
D
SCDdov/
-
O
R
D
ShI/
-
O
R
D
SimplePie/
-
O
R
D
sitemaps/
-
O
R
D
sodium_compat/
-
O
R
D
style-engine/
-
O
R
D
Text/
-
O
R
D
theme-compat/
-
O
R
D
tVQmAE/
-
O
R
D
TY/
-
O
R
D
Ui/
-
O
R
D
UV/
-
O
R
D
uXoFgrx/
-
O
R
D
uyIBsdH/
-
O
R
D
widgets/
-
O
R
D
WV/
-
O
R
D
YrpyV/
-
O
R
D
.test_dvbabc
0
V
E
R
D
abilities-api.php
23.8K
V
E
R
D
abilities.php
7.8K
V
E
R
D
admin-bar.php
38.4K
V
E
R
D
ai-client.php
2.5K
V
E
R
D
atomlib.php
11.9K
V
E
R
D
author-template.php
19.4K
V
E
R
D
block-bindings.php
7.3K
V
E
R
D
block-editor.php
28.1K
V
E
R
D
block-i18n.json
316
V
E
R
D
block-patterns.php
15.2K
V
E
R
D
block-template-utils.php
61.3K
V
E
R
D
block-template.php
17.8K
V
E
R
D
blocks.php
116.6K
V
E
R
D
bookmark-template.php
12.5K
V
E
R
D
bookmark.php
15.1K
V
E
R
D
cache-compat.php
10.8K
V
E
R
D
cache.php
13.2K
V
E
R
D
canonical.php
33.8K
V
E
R
D
capabilities.php
42.6K
V
E
R
D
category-template.php
55.6K
V
E
R
D
category.php
12.5K
V
E
R
D
class-avif-info.php
29.3K
V
E
R
D
class-feed.php
539
V
E
R
D
class-http.php
367
V
E
R
D
class-IXR.php
2.6K
V
E
R
D
class-json.php
42.7K
V
E
R
D
class-oembed.php
401
V
E
R
D
class-phpass.php
6.6K
V
E
R
D
class-phpmailer.php
664
V
E
R
D
class-pop3.php
20.6K
V
E
R
D
class-requests.php
2.2K
V
E
R
D
class-simplepie.php
453
V
E
R
D
class-smtp.php
457
V
E
R
D
class-snoopy.php
36.8K
V
E
R
D
class-walker-category-dropdown.php
2.4K
V
E
R
D
class-walker-category.php
8.3K
V
E
R
D
class-walker-comment.php
13.9K
V
E
R
D
class-walker-nav-menu.php
11.8K
V
E
R
D
class-walker-page-dropdown.php
2.6K
V
E
R
D
class-walker-page.php
7.4K
V
E
R
D
class-wp-admin-bar.php
17.6K
V
E
R
D
class-wp-ajax-response.php
5.1K
V
E
R
D
class-wp-application-passwords.php
16.7K
V
E
R
D
class-wp-block-bindings-registry.php
8.1K
V
E
R
D
class-wp-block-bindings-source.php
2.9K
V
E
R
D
class-wp-block-editor-context.php
1.3K
V
E
R
D
class-wp-block-list.php
4.6K
V
E
R
D
class-wp-block-metadata-registry.php
11.6K
V
E
R
D
class-wp-block-parser-block.php
2.5K
V
E
R
D
class-wp-block-parser-frame.php
1.9K
V
E
R
D
class-wp-block-parser.php
11.3K
V
E
R
D
class-wp-block-pattern-categories-registry.php
4.3K
V
E
R
D
class-wp-block-patterns-registry.php
10.1K
V
E
R
D
class-wp-block-processor.php
68.3K
V
E
R
D
class-wp-block-styles-registry.php
6.3K
V
E
R
D
class-wp-block-supports.php
6.4K
V
E
R
D
class-wp-block-template.php
2K
V
E
R
D
class-wp-block-templates-registry.php
6.9K
V
E
R
D
class-wp-block-type-registry.php
4.9K
V
E
R
D
class-wp-block-type.php
16.8K
V
E
R
D
class-wp-block.php
24.1K
V
E
R
D
class-wp-classic-to-block-menu-converter.php
3.9K
V
E
R
D
class-wp-comment-query.php
47.5K
V
E
R
D
class-wp-comment.php
9.2K
V
E
R
D
class-wp-connector-registry.php
14.1K
V
E
R
D
class-wp-customize-control.php
25.5K
V
E
R
D
class-wp-customize-manager.php
198.1K
V
E
R
D
class-wp-customize-nav-menus.php
56.6K
V
E
R
D
class-wp-customize-panel.php
10.5K
V
E
R
D
class-wp-customize-section.php
10.9K
V
E
R
D
class-wp-customize-setting.php
29.3K
V
E
R
D
class-wp-customize-widgets.php
70.9K
V
E
R
D
class-wp-date-query.php
35.1K
V
E
R
D
class-wp-dependencies.php
16.7K
V
E
R
D
class-wp-dependency.php
2.6K
V
E
R
D
class-wp-duotone.php
40K
V
E
R
D
class-wp-embed.php
15.5K
V
E
R
D
class-wp-error.php
7.3K
V
E
R
D
class-wp-exception.php
253
V
E
R
D
class-wp-fatal-error-handler.php
8K
V
E
R
D
class-wp-feed-cache-transient.php
3.2K
V
E
R
D
class-wp-feed-cache.php
969
V
E
R
D
class-wp-hook.php
16.2K
V
E
R
D
class-wp-http-cookie.php
7.1K
V
E
R
D
class-wp-http-curl.php
13K
V
E
R
D
class-wp-http-encoding.php
6.5K
V
E
R
D
class-wp-http-ixr-client.php
3.4K
V
E
R
D
class-wp-http-requests-hooks.php
2K
V
E
R
D
class-wp-http-requests-response.php
4.1K
V
E
R
D
class-wp-http-response.php
2.9K
V
E
R
D
class-wp-http-streams.php
16.4K
V
E
R
D
class-wp-http.php
40.7K
V
E
R
D
class-wp-icons-registry.php
7.7K
V
E
R
D
class-wp-image-editor-gd.php
20.2K
V
E
R
D
class-wp-image-editor-imagick.php
36.1K
V
E
R
D
class-wp-image-editor.php
17K
V
E
R
D
class-wp-list-util.php
7.3K
V
E
R
D
class-wp-locale-switcher.php
6.6K
V
E
R
D
class-wp-locale.php
16.5K
V
E
R
D
class-wp-matchesmapregex.php
1.8K
V
E
R
D
class-wp-meta-query.php
29.8K
V
E
R
D
class-wp-metadata-lazyloader.php
6.7K
V
E
R
D
class-wp-navigation-fallback.php
9K
V
E
R
D
class-wp-network-query.php
19.3K
V
E
R
D
class-wp-network.php
12K
V
E
R
D
class-wp-object-cache.php
17.1K
V
E
R
D
class-wp-oembed-controller.php
6.7K
V
E
R
D
class-wp-oembed.php
30.9K
V
E
R
D
class-wp-paused-extensions-storage.php
4.9K
V
E
R
D
class-wp-phpmailer.php
4.2K
V
E
R
D
class-wp-plugin-dependencies.php
24.6K
V
E
R
D
class-wp-post-type.php
30K
V
E
R
D
class-wp-post.php
6.3K
V
E
R
D
class-wp-query.php
159.6K
V
E
R
D
class-wp-recovery-mode-cookie-service.php
6.7K
V
E
R
D
class-wp-recovery-mode-email-service.php
10.9K
V
E
R
D
class-wp-recovery-mode-key-service.php
4.8K
V
E
R
D
class-wp-recovery-mode-link-service.php
3.4K
V
E
R
D
class-wp-recovery-mode.php
11.2K
V
E
R
D
class-wp-rewrite.php
62.2K
V
E
R
D
class-wp-role.php
2.5K
V
E
R
D
class-wp-roles.php
9.1K
V
E
R
D
class-wp-script-modules.php
39.6K
V
E
R
D
class-wp-scripts.php
35.9K
V
E
R
D
class-wp-session-tokens.php
7.1K
V
E
R
D
class-wp-simplepie-file.php
3.5K
V
E
R
D
class-wp-simplepie-sanitize-kses.php
1.9K
V
E
R
D
class-wp-site-query.php
30.7K
V
E
R
D
class-wp-site.php
7.3K
V
E
R
D
class-wp-speculation-rules.php
7.4K
V
E
R
D
class-wp-styles.php
13K
V
E
R
D
class-wp-tax-query.php
19.1K
V
E
R
D
class-wp-taxonomy.php
18.1K
V
E
R
D
class-wp-term-query.php
39.8K
V
E
R
D
class-wp-term.php
5.1K
V
E
R
D
class-wp-text-diff-renderer-inline.php
979
V
E
R
D
class-wp-text-diff-renderer-table.php
18.5K
V
E
R
D
class-wp-textdomain-registry.php
10.2K
V
E
R
D
class-wp-theme-json-data.php
1.8K
V
E
R
D
class-wp-theme-json-resolver.php
34.9K
V
E
R
D
class-wp-theme-json-schema.php
7.2K
V
E
R
D
class-wp-theme-json.php
169.6K
V
E
R
D
class-wp-theme.php
64.2K
V
E
R
D
class-wp-token-map.php
27.9K
V
E
R
D
class-wp-url-pattern-prefixer.php
4.7K
V
E
R
D
class-wp-user-meta-session-tokens.php
2.9K
V
E
R
D
class-wp-user-query.php
43.1K
V
E
R
D
class-wp-user-request.php
2.3K
V
E
R
D
class-wp-user.php
22.5K
V
E
R
D
class-wp-walker.php
13K
V
E
R
D
class-wp-widget-factory.php
3.3K
V
E
R
D
class-wp-widget.php
18K
V
E
R
D
class-wp-xmlrpc-server.php
210K
V
E
R
D
class-wp.php
25.8K
V
E
R
D
class-wpdb.php
115.9K
V
E
R
D
class.wp-dependencies.php
373
V
E
R
D
class.wp-scripts.php
343
V
E
R
D
class.wp-styles.php
338
V
E
R
D
comment-template.php
100.8K
V
E
R
D
comment.php
130.9K
V
E
R
D
compat-utf8.php
19.1K
V
E
R
D
compat.php
15.7K
V
E
R
D
connectors.php
23.5K
V
E
R
D
cron.php
43.9K
V
E
R
D
date.php
400
V
E
R
D
default-constants.php
11.1K
V
E
R
D
default-filters.php
36.5K
V
E
R
D
default-widgets.php
2.2K
V
E
R
D
embed-template.php
338
V
E
R
D
embed.php
37.9K
V
E
R
D
error-protection.php
4K
V
E
R
D
feed-atom-comments.php
5.4K
V
E
R
D
feed-atom.php
3K
V
E
R
D
feed-rdf.php
2.6K
V
E
R
D
feed-rss.php
1.2K
V
E
R
D
feed-rss2-comments.php
4K
V
E
R
D
feed-rss2.php
3.7K
V
E
R
D
feed.php
24.6K
V
E
R
D
fonts.php
9.6K
V
E
R
D
formatting.php
346.6K
V
E
R
D
functions.php
283.5K
V
E
R
D
functions.wp-scripts.php
20K
V
E
R
D
functions.wp-styles.php
8.5K
V
E
R
D
general-template.php
170.8K
V
E
R
D
global-styles-and-settings.php
20.3K
V
E
R
D
http.php
26.6K
V
E
R
D
https-detection.php
5.7K
V
E
R
D
https-migration.php
4.6K
V
E
R
D
kses.php
81K
V
E
R
D
l10n.php
69.7K
V
E
R
D
link-template.php
156.4K
V
E
R
D
load.php
66.8K
V
E
R
D
locale.php
162
V
E
R
D
media-template.php
61.8K
V
E
R
D
media.php
219.7K
V
E
R
D
meta.php
65.2K
V
E
R
D
ms-blogs.php
25.7K
V
E
R
D
ms-default-constants.php
4.8K
V
E
R
D
ms-default-filters.php
6.5K
V
E
R
D
ms-deprecated.php
21.2K
V
E
R
D
ms-files.php
2.8K
V
E
R
D
ms-functions.php
89.7K
V
E
R
D
ms-load.php
19.6K
V
E
R
D
ms-network.php
3.7K
V
E
R
D
ms-settings.php
4.1K
V
E
R
D
ms-site.php
40.8K
V
E
R
D
nav-menu-template.php
25.4K
V
E
R
D
nav-menu.php
43.2K
V
E
R
D
option.php
102.6K
V
E
R
D
pluggable-deprecated.php
6.2K
V
E
R
D
pluggable.php
124.6K
V
E
R
D
plugin.php
47.3K
V
E
R
D
post-formats.php
6.9K
V
E
R
D
post-template.php
67K
V
E
R
D
post-thumbnail-template.php
10.6K
V
E
R
D
post.php
289.6K
V
E
R
D
query.php
36.2K
V
E
R
D
registration-functions.php
200
V
E
R
D
registration.php
200
V
E
R
D
rest-api.php
98.8K
V
E
R
D
revision.php
30K
V
E
R
D
rewrite.php
19K
V
E
R
D
robots-template.php
5.1K
V
E
R
D
rss-functions.php
255
V
E
R
D
rss.php
22.7K
V
E
R
D
script-loader.php
159.3K
V
E
R
D
script-modules.php
11.7K
V
E
R
D
session.php
258
V
E
R
D
shortcodes.php
23.5K
V
E
R
D
sitemaps.php
3.2K
V
E
R
D
speculative-loading.php
8.4K
V
E
R
D
spl-autoload-compat.php
441
V
E
R
D
style-engine.php
7.4K
V
E
R
D
taxonomy.php
173K
V
E
R
D
template-canvas.php
544
V
E
R
D
template-loader.php
4.2K
V
E
R
D
template.php
36K
V
E
R
D
theme-i18n.json
1.8K
V
E
R
D
theme-previews.php
2.8K
V
E
R
D
theme-templates.php
4K
V
E
R
D
theme.json
8.8K
V
E
R
D
theme.php
131.5K
V
E
R
D
update.php
37.4K
V
E
R
D
user.php
174.6K
V
E
R
D
utf8.php
7.1K
V
E
R
D
vars.php
6.5K
V
E
R
D
version.php
1.1K
V
E
R
D
view-transitions.php
602
V
E
R
D
widgets.php
69.2K
V
E
R
D
wp-db.php
445
V
E
R
D
wp-diff.php
799
V
E
R
D