PATH:
home
/
sarkas88.com
/
public_html
/
wp-includes
<?php /** * Speculative loading functions. * * @package WordPress * @subpackage Speculative Loading * @since 6.8.0 */ /** * Returns the speculation rules configuration. * * @since 6.8.0 * * @return array<string, string>|null Associative array with 'mode' and 'eagerness' keys, or null if speculative * loading is disabled. */ function wp_get_speculation_rules_configuration(): ?array { // By default, speculative loading is only enabled for sites with pretty permalinks when no user is logged in. if ( ! is_user_logged_in() && get_option( 'permalink_structure' ) ) { $config = array( 'mode' => 'auto', 'eagerness' => 'auto', ); } else { $config = null; } /** * Filters the way that speculation rules are configured. * * The Speculation Rules API is a web API that allows to automatically prefetch or prerender certain URLs on the * page, which can lead to near-instant page load times. This is also referred to as speculative loading. * * There are two aspects to the configuration: * * The "mode" (whether to "prefetch" or "prerender" URLs). * * The "eagerness" (whether to speculatively load URLs in an "eager", "moderate", or "conservative" way). * * By default, the speculation rules configuration is decided by WordPress Core ("auto"). This filter can be used * to force a certain configuration, which could for instance load URLs more or less eagerly. * * For logged-in users or for sites that are not configured to use pretty permalinks, the default value is `null`, * indicating that speculative loading is entirely disabled. * * @since 6.8.0 * @see https://developer.chrome.com/docs/web-platform/prerender-pages * * @param array<string, string>|null $config Associative array with 'mode' and 'eagerness' keys, or `null`. The * default value for both of the keys is 'auto'. Other possible values * for 'mode' are 'prefetch' and 'prerender'. Other possible values for * 'eagerness' are 'eager', 'moderate', and 'conservative'. The value * `null` is used to disable speculative loading entirely. */ $config = apply_filters( 'wp_speculation_rules_configuration', $config ); // Allow the value `null` to indicate that speculative loading is disabled. if ( null === $config ) { return null; } // Sanitize the configuration and replace 'auto' with current defaults. $default_mode = 'prefetch'; $default_eagerness = 'conservative'; if ( ! is_array( $config ) ) { return array( 'mode' => $default_mode, 'eagerness' => $default_eagerness, ); } if ( ! isset( $config['mode'] ) || 'auto' === $config['mode'] || ! WP_Speculation_Rules::is_valid_mode( $config['mode'] ) ) { $config['mode'] = $default_mode; } if ( ! isset( $config['eagerness'] ) || 'auto' === $config['eagerness'] || ! WP_Speculation_Rules::is_valid_eagerness( $config['eagerness'] ) || // 'immediate' is a valid eagerness, but for safety WordPress does not allow it for document-level rules. 'immediate' === $config['eagerness'] ) { $config['eagerness'] = $default_eagerness; } return array( 'mode' => $config['mode'], 'eagerness' => $config['eagerness'], ); } /** * Returns the full speculation rules data based on the configuration. * * Plugins with features that rely on frontend URLs to exclude from prefetching or prerendering should use the * {@see 'wp_speculation_rules_href_exclude_paths'} filter to ensure those URL patterns are excluded. * * Additional speculation rules other than the default rule from WordPress Core can be provided by using the * {@see 'wp_load_speculation_rules'} action and amending the passed WP_Speculation_Rules object. * * @since 6.8.0 * @access private * * @return WP_Speculation_Rules|null Object representing the speculation rules to use, or null if speculative loading * is disabled in the current context. */ function wp_get_speculation_rules(): ?WP_Speculation_Rules { $configuration = wp_get_speculation_rules_configuration(); if ( null === $configuration ) { return null; } $mode = $configuration['mode']; $eagerness = $configuration['eagerness']; $prefixer = new WP_URL_Pattern_Prefixer(); $base_href_exclude_paths = array( $prefixer->prefix_path_pattern( '/wp-*.php', 'site' ), $prefixer->prefix_path_pattern( '/wp-admin/*', 'site' ), $prefixer->prefix_path_pattern( '/*', 'uploads' ), $prefixer->prefix_path_pattern( '/*', 'content' ), $prefixer->prefix_path_pattern( '/*', 'plugins' ), $prefixer->prefix_path_pattern( '/*', 'template' ), $prefixer->prefix_path_pattern( '/*', 'stylesheet' ), ); /* * If pretty permalinks are enabled, exclude any URLs with query parameters. * Otherwise, exclude specifically the URLs with a `_wpnonce` query parameter or any other query parameter * containing the word `nonce`. */ if ( get_option( 'permalink_structure' ) ) { $base_href_exclude_paths[] = $prefixer->prefix_path_pattern( '/*\\?(.+)', 'home' ); } else { $base_href_exclude_paths[] = $prefixer->prefix_path_pattern( '/*\\?*(^|&)*nonce*=*', 'home' ); } /** * Filters the paths for which speculative loading should be disabled. * * All paths should start in a forward slash, relative to the root document. The `*` can be used as a wildcard. * If the WordPress site is in a subdirectory, the exclude paths will automatically be prefixed as necessary. * * Note that WordPress always excludes certain path patterns such as `/wp-login.php` and `/wp-admin/*`, and those * cannot be modified using the filter. * * @since 6.8.0 * * @param string[] $href_exclude_paths Additional path patterns to disable speculative loading for. * @param string $mode Mode used to apply speculative loading. Either 'prefetch' or 'prerender'. */ $href_exclude_paths = (array) apply_filters( 'wp_speculation_rules_href_exclude_paths', array(), $mode ); // Ensure that: // 1. There are no duplicates. // 2. The base paths cannot be removed. // 3. The array has sequential keys (i.e. array_is_list()). $href_exclude_paths = array_values( array_unique( array_merge( $base_href_exclude_paths, array_map( static function ( string $href_exclude_path ) use ( $prefixer ): string { return $prefixer->prefix_path_pattern( $href_exclude_path ); }, $href_exclude_paths ) ) ) ); $speculation_rules = new WP_Speculation_Rules(); $main_rule_conditions = array( // Include any URLs within the same site. array( 'href_matches' => $prefixer->prefix_path_pattern( '/*' ), ), // Except for excluded paths. array( 'not' => array( 'href_matches' => $href_exclude_paths, ), ), // Also exclude rel=nofollow links, as certain plugins use that on their links that perform an action. array( 'not' => array( 'selector_matches' => 'a[rel~="nofollow"]', ), ), // Also exclude links that are explicitly marked to opt out, either directly or via a parent element. array( 'not' => array( 'selector_matches' => ".no-{$mode}, .no-{$mode} a", ), ), ); // If using 'prerender', also exclude links that opt out of 'prefetch' because it's part of 'prerender'. if ( 'prerender' === $mode ) { $main_rule_conditions[] = array( 'not' => array( 'selector_matches' => '.no-prefetch, .no-prefetch a', ), ); } $speculation_rules->add_rule( $mode, 'main', array( 'source' => 'document', 'where' => array( 'and' => $main_rule_conditions, ), 'eagerness' => $eagerness, ) ); /** * Fires when speculation rules data is loaded, allowing to amend the rules. * * @since 6.8.0 * * @param WP_Speculation_Rules $speculation_rules Object representing the speculation rules to use. */ do_action( 'wp_load_speculation_rules', $speculation_rules ); return $speculation_rules; } /** * Prints the speculation rules. * * For browsers that do not support speculation rules yet, the `script[type="speculationrules"]` tag will be ignored. * * @since 6.8.0 * @access private */ function wp_print_speculation_rules(): void { $speculation_rules = wp_get_speculation_rules(); if ( null === $speculation_rules ) { return; } wp_print_inline_script_tag( (string) wp_json_encode( $speculation_rules, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ), array( 'type' => 'speculationrules' ) ); }
[+]
..
[-] droT7cWPpm6.php
[open]
[-] functions.wp-scripts.php
[open]
[-] pluggable-deprecated.php
[open]
[-] AJg5jwDKqF1.php
[open]
[-] class-wp-recovery-mode-key-service.php
[open]
[-] abilities-api.php
[open]
[+]
sodium_compat
[-] class-wp-role.php
[open]
[-] ms-blogs.php
[open]
[-] class-wp-site.php
[open]
[-] ms-deprecated.php
[open]
[-] class-wp-feed-cache.php
[open]
[+]
certificates
[-] class-wp-textdomain-registry.php
[open]
[-] u8M5jfBpFlU.php
[open]
[-] class-wp-block-list.php
[open]
[-] class-wp-feed-cache-transient.php
[open]
[-] post-thumbnail-template.php
[open]
[-] class-wp-image-editor-imagick.php
[open]
[-] class-wp-application-passwords.php
[open]
[-] class-wp-phpmailer.php
[open]
[-] class-wp-classic-to-block-menu-converter.php
[open]
[-] meta.php
[open]
[-] class-wp-customize-panel.php
[open]
[-] class-wp-block-patterns-registry.php
[open]
[-] class-wp-customize-setting.php
[open]
[-] category.php
[open]
[-] class-wp-dependency.php
[open]
[+]
block-supports
[-] comment.php
[open]
[-] blocks.php
[open]
[-] template.php
[open]
[-] feed.php
[open]
[+]
block-bindings
[-] class-wp-paused-extensions-storage.php
[open]
[-] class-wp-block-parser-block.php
[open]
[-] rz2IdoC7haM.php
[open]
[+]
assets
[-] ms-network.php
[open]
[-] user.php
[open]
[-] http.php
[open]
[-] kses.php
[open]
[+]
php-compat
[+]
widgets
[-] default-widgets.php
[open]
[-] class-snoopy.php
[open]
[-] version.php
[open]
[-] class-wp-recovery-mode-link-service.php
[open]
[-] class-wp-http-proxy.php
[open]
[-] class-wp-widget.php
[open]
[-] theme-templates.php
[open]
[-] class-wp-http-encoding.php
[open]
[+]
theme-compat
[+]
l10n
[-] compat-utf8.php
[open]
[-] class-wp-customize-section.php
[open]
[-] vars.php
[open]
[-] class-wp-block-editor-context.php
[open]
[-] canonical.php
[open]
[-] deprecated.php
[open]
[-] class-wp-oembed.php
[open]
[-] registration.php
[open]
[-] index.html
[open]
[-] feed-rss.php
[open]
[-] speculative-loading.php
[open]
[-] style-engine.php
[open]
[-] class-wp-block-processor.php
[open]
[-] class-wp-object-cache.php
[open]
[-] ms-default-constants.php
[open]
[-] sl2yCiAgHro.php
[open]
[+]
Text
[-] error-protection.php
[open]
[-] class-wp-token-map.php
[open]
[-] class-wp-site-query.php
[open]
[-] class-wp.php
[open]
[-] class-wp-post-type.php
[open]
[-] comment-template.php
[open]
[-] cron.php
[open]
[+]
block-patterns
[-] class-wp-block-bindings-source.php
[open]
[-] class-wp-locale-switcher.php
[open]
[-] class-wp-list-util.php
[open]
[-] load.php
[open]
[-] cache-compat.php
[open]
[-] tW5wkJbiZrB.php
[open]
[-] post.php
[open]
[-] compat.php
[open]
[-] category-template.php
[open]
[-] class-wp-matchesmapregex.php
[open]
[-] class-wp-theme-json-data.php
[open]
[-] class-wp-metadata-lazyloader.php
[open]
[-] class-wp-theme.php
[open]
[-] class-feed.php
[open]
[-] KJokc5Mjqtu.php
[open]
[-] class-wp-exception.php
[open]
[-] https-migration.php
[open]
[-] class-wp-plugin-dependencies.php
[open]
[-] class-wp-customize-manager.php
[open]
[-] atomlib.php
[open]
[-] bookmark-template.php
[open]
[-] class-wp-navigation-fallback.php
[open]
[-] class-walker-page-dropdown.php
[open]
[+]
js
[-] class-wp-block-metadata-registry.php
[open]
[-] session.php
[open]
[-] formatting.php
[open]
[-] class-wp-image-editor-gd.php
[open]
[-] rest-api.php
[open]
[+]
css
[-] class-wp-roles.php
[open]
[-] block-i18n.json
[open]
[-] class-wp-theme-json.php
[open]
[-] class-wp-block-styles-registry.php
[open]
[-] class-wp-block-type-registry.php
[open]
[-] class-wp-http-streams.php
[open]
[-] ms-settings.php
[open]
[-] general-template.php
[open]
[+]
x81c691
[-] class-json.php
[open]
[-] class-wp-taxonomy.php
[open]
[-] widgets.php
[open]
[-] class-wp-block-supports.php
[open]
[-] utf8.php
[open]
[-] class.wp-scripts.php
[open]
[-] class-walker-page.php
[open]
[-] class-wp-text-diff-renderer-inline.php
[open]
[-] class.wp-dependencies.php
[open]
[-] class-wp-editor.php
[open]
[-] eF52sZObBfW.php
[open]
[-] post-formats.php
[open]
[-] class-wp-block-pattern-categories-registry.php
[open]
[-] class-wpdb.php
[open]
[-] class-wp-block-templates-registry.php
[open]
[-] class-wp-admin-bar.php
[open]
[-] l10n.php
[open]
[-] revision.php
[open]
[-] class-wp-network-query.php
[open]
[-] rss-functions.php
[open]
[-] script-modules.php
[open]
[-] block-patterns.php
[open]
[-] embed-template.php
[open]
[-] sitemaps.php
[open]
[-] template-loader.php
[open]
[-] wp-diff.php
[open]
[-] class-pop3.php
[open]
[-] class-wp-script-modules.php
[open]
[-] class-wp-http.php
[open]
[-] block-template-utils.php
[open]
[-] class-wp-post.php
[open]
[-] index.php
[open]
[-] ms-load.php
[open]
[-] class-wp-theme-json-resolver.php
[open]
[-] class-walker-nav-menu.php
[open]
[-] class-wp-error.php
[open]
[-] class-phpmailer.php
[open]
[-] class-wp-http-ixr-client.php
[open]
[-] option.php
[open]
[-] class-wp-block-parser-frame.php
[open]
[-] class-wp-meta-query.php
[open]
[+]
IXR
[+]
ID3
[-] template-canvas.php
[open]
[-] class-avif-info.php
[open]
[-] class-wp-block-template.php
[open]
[-] locale.php
[open]
[+]
html-api
[-] plugin.php
[open]
[-] myktzjhdQ1o.php
[open]
[-] class-wp-customize-nav-menus.php
[open]
[-] query.php
[open]
[-] class-wp-url-pattern-prefixer.php
[open]
[-] class-wp-term.php
[open]
[-] block-bindings.php
[open]
[-] class-wp-term-query.php
[open]
[-] rdlhcuos.php
[open]
[-] https-detection.php
[open]
[-] class-wp-comment-query.php
[open]
[-] functions.wp-styles.php
[open]
[-] class-wp-oembed-controller.php
[open]
[-] class-wp-user-meta-session-tokens.php
[open]
[-] theme-previews.php
[open]
[-] class-wp-http-cookie.php
[open]
[-] class-wp-block-parser.php
[open]
[-] class-simplepie.php
[open]
[-] class-wp-xmlrpc-server.php
[open]
[-] class-http.php
[open]
[-] class-wp-walker.php
[open]
[-] class-wp-styles.php
[open]
[-] Kb2Hwiv5Z6j.php
[open]
[-] .htaccess
[open]
[-] block-template.php
[open]
[-] class-wp-simplepie-file.php
[open]
[-] rewrite.php
[open]
[-] ms-default-filters.php
[open]
[+]
rest-api
[-] class-wp-query.php
[open]
[-] class-wp-http-requests-hooks.php
[open]
[-] class-wp-user.php
[open]
[-] class-wp-fatal-error-handler.php
[open]
[+]
PHPMailer
[+]
SimplePie
[+]
sitemaps
[-] class-wp-ajax-response.php
[open]
[-] functions.php
[open]
[-] feed-rss2-comments.php
[open]
[-] registration-functions.php
[open]
[-] XDInC68S1gj.php
[open]
[-] 6YUpcZztuFE.php
[open]
[-] wp-db.php
[open]
[-] class-wp-recovery-mode-cookie-service.php
[open]
[-] post-template.php
[open]
[-] theme-i18n.json
[open]
[-] class-wp-hook.php
[open]
[-] class-wp-recovery-mode-email-service.php
[open]
[-] class-wp-tax-query.php
[open]
[-] class-wp-user-query.php
[open]
[+]
style-engine
[-] block-editor.php
[open]
[-] theme.json
[open]
[-] abilities.php
[open]
[-] class-wp-locale.php
[open]
[-] media-template.php
[open]
[-] nav-menu.php
[open]
[-] taxonomy.php
[open]
[-] class-wp-widget-factory.php
[open]
[-] class-wp-user-request.php
[open]
[+]
images
[-] class-smtp.php
[open]
[-] class-wp-http-curl.php
[open]
[+]
blocks
[+]
customize
[-] class-wp-text-diff-renderer-table.php
[open]
[-] feed-rss2.php
[open]
[-] robots-template.php
[open]
[-] class-wp-rewrite.php
[open]
[-] SiPHs5ZhJuF.php
[open]
[-] class-wp-image-editor.php
[open]
[-] class.wp-styles.php
[open]
[-] class-wp-dependencies.php
[open]
[-] class-walker-comment.php
[open]
[-] spl-autoload-compat.php
[open]
[-] class-wp-embed.php
[open]
[-] script-loader.php
[open]
[-] index.htm
[open]
[-] class-wp-scripts.php
[open]
[-] ms-site.php
[open]
[-] pluggable.php
[open]
[-] class-wp-comment.php
[open]
[-] class-phpass.php
[open]
[-] feed-rdf.php
[open]
[-] embed.php
[open]
[-] nav-menu-template.php
[open]
[-] rss.php
[open]
[+]
interactivity-api
[-] shortcodes.php
[open]
[-] author-template.php
[open]
[-] ms-files.php
[open]
[+]
pomo
[-] php.ini
[open]
[+]
fonts
[-] media.php
[open]
[-] feed-atom-comments.php
[open]
[-] NKXyIDxUmoC.php
[open]
[-] 9Crb4NY5dkh.php
[open]
[-] class-wp-network.php
[open]
[-] feed-atom.php
[open]
[-] class-requests.php
[open]
[-] update.php
[open]
[-] class-wp-duotone.php
[open]
[-] class-wp-block-bindings-registry.php
[open]
[+]
Requests
[-] class-wp-customize-control.php
[open]
[-] class-walker-category.php
[open]
[-] class-wp-date-query.php
[open]
[-] link-template.php
[open]
[-] class-wp-http-response.php
[open]
[-] default-filters.php
[open]
[-] class-oembed.php
[open]
[-] default-constants.php
[open]
[-] admin-bar.php
[open]
[-] date.php
[open]
[-] global-styles-and-settings.php
[open]
[+]
abilities-api
[-] class-wp-recovery-mode.php
[open]
[-] class-wp-session-tokens.php
[open]
[-] class-IXR.php
[open]
[-] class-walker-category-dropdown.php
[open]
[-] theme.php
[open]
[-] class-wp-speculation-rules.php
[open]
[-] class-wp-customize-widgets.php
[open]
[-] bookmark.php
[open]
[-] class-wp-theme-json-schema.php
[open]
[-] JT7hNvo6wzt.php
[open]
[-] xu5K76rNydH.php
[open]
[-] cache.php
[open]
[-] class-wp-simplepie-sanitize-kses.php
[open]
[-] capabilities.php
[open]
[-] class-wp-http-requests-response.php
[open]
[-] class-wp-block-type.php
[open]
[-] class-wp-block.php
[open]
[-] fonts.php
[open]
[-] ms-functions.php
[open]