$25 GRAYBYTE WORDPRESS FILE MANAGER $73

SERVER : in-mum-web1330.main-hosting.eu #1 SMP Mon Feb 10 22:45:17 UTC 2025
SERVER IP : 88.222.243.67 | ADMIN IP 216.73.216.96
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/home/u550391411/domains/kidslum.com/public_html/wp-includes/

HOME
Current File : /home/u550391411/domains/kidslum.com/public_html/wp-includes//class-wp-block-patterns-registry.php
<?php
/**
 * Blocks API: WP_Block_Patterns_Registry class
 *
 * @package WordPress
 * @subpackage Blocks
 * @since 5.5.0
 */

/**
 * Class used for interacting with block patterns.
 *
 * @since 5.5.0
 */
#[AllowDynamicProperties]
final class WP_Block_Patterns_Registry {
	/**
	 * Registered block patterns array.
	 *
	 * @since 5.5.0
	 * @var array[]
	 */
	private $registered_patterns = array();

	/**
	 * Patterns registered outside the `init` action.
	 *
	 * @since 6.0.0
	 * @var array[]
	 */
	private $registered_patterns_outside_init = array();

	/**
	 * Container for the main instance of the class.
	 *
	 * @since 5.5.0
	 * @var WP_Block_Patterns_Registry|null
	 */
	private static $instance = null;

	/**
	 * Registers a block pattern.
	 *
	 * @since 5.5.0
	 * @since 5.8.0 Added support for the `blockTypes` property.
	 * @since 6.1.0 Added support for the `postTypes` property.
	 * @since 6.2.0 Added support for the `templateTypes` property.
	 * @since 6.5.0 Added support for the `filePath` property.
	 *
	 * @param string $pattern_name       Block pattern name including namespace.
	 * @param array  $pattern_properties {
	 *     List of properties for the block pattern.
	 *
	 *     @type string   $title         Required. A human-readable title for the pattern.
	 *     @type string   $content       Optional. Block HTML markup for the pattern.
	 *                                   If not provided, the content will be retrieved from the `filePath` if set.
	 *                                   If both `content` and `filePath` are not set, the pattern will not be registered.
	 *     @type string   $description   Optional. Visually hidden text used to describe the pattern
	 *                                   in the inserter. A description is optional, but is strongly
	 *                                   encouraged when the title does not fully describe what the
	 *                                   pattern does. The description will help users discover the
	 *                                   pattern while searching.
	 *     @type int      $viewportWidth Optional. The intended width of the pattern to allow for a scaled
	 *                                   preview within the pattern inserter.
	 *     @type bool     $inserter      Optional. Determines whether the pattern is visible in inserter.
	 *                                   To hide a pattern so that it can only be inserted programmatically,
	 *                                   set this to false. Default true.
	 *     @type string[] $categories    Optional. A list of registered pattern categories used to group
	 *                                   block patterns. Block patterns can be shown on multiple categories.
	 *                                   A category must be registered separately in order to be used here.
	 *     @type string[] $keywords      Optional. A list of aliases or keywords that help users discover
	 *                                   the pattern while searching.
	 *     @type string[] $blockTypes    Optional. A list of block names including namespace that could use
	 *                                   the block pattern in certain contexts (placeholder, transforms).
	 *                                   The block pattern is available in the block editor inserter
	 *                                   regardless of this list of block names.
	 *                                   Certain blocks support further specificity besides the block name
	 *                                   (e.g. for `core/template-part` you can specify areas
	 *                                   like `core/template-part/header` or `core/template-part/footer`).
	 *     @type string[] $postTypes     Optional. An array of post types that the pattern is restricted
	 *                                   to be used with. The pattern will only be available when editing one
	 *                                   of the post types passed on the array. For all the other post types
	 *                                   not part of the array the pattern is not available at all.
	 *     @type string[] $templateTypes Optional. An array of template types where the pattern fits.
	 *     @type string   $filePath      Optional. The full path to the file containing the block pattern content.
	 * }
	 * @return bool True if the pattern was registered with success and false otherwise.
	 */
	public function register( $pattern_name, $pattern_properties ) {
		if ( ! isset( $pattern_name ) || ! is_string( $pattern_name ) ) {
			_doing_it_wrong(
				__METHOD__,
				__( 'Pattern name must be a string.' ),
				'5.5.0'
			);
			return false;
		}

		if ( ! isset( $pattern_properties['title'] ) || ! is_string( $pattern_properties['title'] ) ) {
			_doing_it_wrong(
				__METHOD__,
				__( 'Pattern title must be a string.' ),
				'5.5.0'
			);
			return false;
		}

		if ( ! isset( $pattern_properties['filePath'] ) ) {
			if ( ! isset( $pattern_properties['content'] ) || ! is_string( $pattern_properties['content'] ) ) {
				_doing_it_wrong(
					__METHOD__,
					__( 'Pattern content must be a string.' ),
					'5.5.0'
				);
				return false;
			}
		}

		$pattern = array_merge(
			$pattern_properties,
			array( 'name' => $pattern_name )
		);

		$this->registered_patterns[ $pattern_name ] = $pattern;

		// If the pattern is registered inside an action other than `init`, store it
		// also to a dedicated array. Used to detect deprecated registrations inside
		// `admin_init` or `current_screen`.
		if ( current_action() && 'init' !== current_action() ) {
			$this->registered_patterns_outside_init[ $pattern_name ] = $pattern;
		}

		return true;
	}

	/**
	 * Unregisters a block pattern.
	 *
	 * @since 5.5.0
	 *
	 * @param string $pattern_name Block pattern name including namespace.
	 * @return bool True if the pattern was unregistered with success and false otherwise.
	 */
	public function unregister( $pattern_name ) {
		if ( ! $this->is_registered( $pattern_name ) ) {
			_doing_it_wrong(
				__METHOD__,
				/* translators: %s: Pattern name. */
				sprintf( __( 'Pattern "%s" not found.' ), $pattern_name ),
				'5.5.0'
			);
			return false;
		}

		unset( $this->registered_patterns[ $pattern_name ] );
		unset( $this->registered_patterns_outside_init[ $pattern_name ] );

		return true;
	}

	/**
	 * Retrieves the content of a registered block pattern.
	 *
	 * @since 6.5.0
	 *
	 * @param string $pattern_name      Block pattern name including namespace.
	 * @param bool   $outside_init_only Optional. Return only patterns registered outside the `init` action. Default false.
	 * @return string The content of the block pattern.
	 */
	private function get_content( $pattern_name, $outside_init_only = false ) {
		if ( $outside_init_only ) {
			$patterns = &$this->registered_patterns_outside_init;
		} else {
			$patterns = &$this->registered_patterns;
		}
		if ( ! isset( $patterns[ $pattern_name ]['content'] ) && isset( $patterns[ $pattern_name ]['filePath'] ) ) {
			ob_start();
			include $patterns[ $pattern_name ]['filePath'];
			$patterns[ $pattern_name ]['content'] = ob_get_clean();
			unset( $patterns[ $pattern_name ]['filePath'] );
		}
		return $patterns[ $pattern_name ]['content'];
	}

	/**
	 * Retrieves an array containing the properties of a registered block pattern.
	 *
	 * @since 5.5.0
	 *
	 * @param string $pattern_name Block pattern name including namespace.
	 * @return array Registered pattern properties.
	 */
	public function get_registered( $pattern_name ) {
		if ( ! $this->is_registered( $pattern_name ) ) {
			return null;
		}

		$pattern            = $this->registered_patterns[ $pattern_name ];
		$content            = $this->get_content( $pattern_name );
		$pattern['content'] = apply_block_hooks_to_content(
			$content,
			$pattern,
			'insert_hooked_blocks_and_set_ignored_hooked_blocks_metadata'
		);

		return $pattern;
	}

	/**
	 * Retrieves all registered block patterns.
	 *
	 * @since 5.5.0
	 *
	 * @param bool $outside_init_only Return only patterns registered outside the `init` action.
	 * @return array[] Array of arrays containing the registered block patterns properties,
	 *                 and per style.
	 */
	public function get_all_registered( $outside_init_only = false ) {
		$patterns      = $outside_init_only
				? $this->registered_patterns_outside_init
				: $this->registered_patterns;
		$hooked_blocks = get_hooked_blocks();

		foreach ( $patterns as $index => $pattern ) {
			$content                       = $this->get_content( $pattern['name'], $outside_init_only );
			$patterns[ $index ]['content'] = apply_block_hooks_to_content(
				$content,
				$pattern,
				'insert_hooked_blocks_and_set_ignored_hooked_blocks_metadata'
			);
		}

		return array_values( $patterns );
	}

	/**
	 * Checks if a block pattern is registered.
	 *
	 * @since 5.5.0
	 *
	 * @param string $pattern_name Block pattern name including namespace.
	 * @return bool True if the pattern is registered, false otherwise.
	 */
	public function is_registered( $pattern_name ) {
		return isset( $this->registered_patterns[ $pattern_name ] );
	}

	public function __wakeup() {
		if ( ! $this->registered_patterns ) {
			return;
		}
		if ( ! is_array( $this->registered_patterns ) ) {
			throw new UnexpectedValueException();
		}
		foreach ( $this->registered_patterns as $value ) {
			if ( ! is_array( $value ) ) {
				throw new UnexpectedValueException();
			}
		}
		$this->registered_patterns_outside_init = array();
	}

	/**
	 * Utility method to retrieve the main instance of the class.
	 *
	 * The instance will be created if it does not exist yet.
	 *
	 * @since 5.5.0
	 *
	 * @return WP_Block_Patterns_Registry The main instance.
	 */
	public static function get_instance() {
		if ( null === self::$instance ) {
			self::$instance = new self();
		}

		return self::$instance;
	}
}

/**
 * Registers a new block pattern.
 *
 * @since 5.5.0
 *
 * @param string $pattern_name       Block pattern name including namespace.
 * @param array  $pattern_properties List of properties for the block pattern.
 *                                   See WP_Block_Patterns_Registry::register() for accepted arguments.
 * @return bool True if the pattern was registered with success and false otherwise.
 */
function register_block_pattern( $pattern_name, $pattern_properties ) {
	return WP_Block_Patterns_Registry::get_instance()->register( $pattern_name, $pattern_properties );
}

/**
 * Unregisters a block pattern.
 *
 * @since 5.5.0
 *
 * @param string $pattern_name Block pattern name including namespace.
 * @return bool True if the pattern was unregistered with success and false otherwise.
 */
function unregister_block_pattern( $pattern_name ) {
	return WP_Block_Patterns_Registry::get_instance()->unregister( $pattern_name );
}

Current_dir [ WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
3 Mar 2026 9.12 AM
u550391411 / o200927086
0755
ID3
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
IXR
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
PHPMailer
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
Requests
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
SimplePie
--
30 Nov 2024 8.44 AM
u550391411 / o200927086
0755
Text
--
30 Nov 2024 8.44 AM
u550391411 / o200927086
0755
assets
--
30 Nov 2024 8.44 AM
u550391411 / o200927086
0755
block-bindings
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
block-patterns
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
block-supports
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
blocks
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
certificates
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
css
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
customize
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
fonts
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
html-api
--
30 Nov 2024 8.44 AM
u550391411 / o200927086
0755
images
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
interactivity-api
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
js
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
l10n
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
php-compat
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
pomo
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
rest-api
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
sitemaps
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
sodium_compat
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
style-engine
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
theme-compat
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
widgets
--
26 Oct 2024 10.48 AM
u550391411 / o200927086
0755
admin-bar.php
36.23 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
atomlib.php
11.795 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
author-template.php
18.507 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
block-bindings.php
5.463 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
block-editor.php
27.676 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
block-i18n.json
0.309 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
block-patterns.php
12.812 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
block-template-utils.php
58.735 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
block-template.php
13.811 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
blocks.php
102.431 KB
11 Feb 2025 10.14 PM
u550391411 / o200927086
0644
bookmark-template.php
12.645 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
bookmark.php
15.065 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
cache-compat.php
5.829 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
cache.php
13.158 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
canonical.php
33.714 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
capabilities.php
41.717 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
category-template.php
55.667 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
category.php
12.411 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-IXR.php
2.483 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-avif-info.php
28.921 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-feed.php
0.526 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-http.php
0.358 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-json.php
42.66 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-oembed.php
0.392 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-phpass.php
6.612 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-phpmailer.php
0.648 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-pop3.php
20.678 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-requests.php
2.185 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-simplepie.php
0.442 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-smtp.php
0.446 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-snoopy.php
36.831 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-walker-category-dropdown.php
2.411 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-walker-category.php
8.278 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-walker-comment.php
13.888 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-walker-nav-menu.php
11.508 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-walker-page-dropdown.php
2.646 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-walker-page.php
7.434 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-admin-bar.php
17.455 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-ajax-response.php
5.143 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-application-passwords.php
15.251 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-block-bindings-registry.php
8.265 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-block-bindings-source.php
2.922 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-block-editor-context.php
1.318 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-block-list.php
4.646 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-block-metadata-registry.php
9.987 KB
11 Feb 2025 10.14 PM
u550391411 / o200927086
0644
class-wp-block-parser-block.php
2.495 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-block-parser-frame.php
1.97 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-block-parser.php
11.262 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-block-pattern-categories-registry.php
5.245 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-block-patterns-registry.php
10.53 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-block-styles-registry.php
6.115 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-block-supports.php
5.48 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-block-template.php
1.985 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-block-templates-registry.php
7.062 KB
11 Feb 2025 10.14 PM
u550391411 / o200927086
0644
class-wp-block-type-registry.php
4.896 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-block-type.php
16.86 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-block.php
19.959 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-classic-to-block-menu-converter.php
3.992 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-comment-query.php
47.261 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-comment.php
9.152 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-customize-control.php
25.127 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-customize-manager.php
197.792 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-customize-nav-menus.php
56.087 KB
1 Oct 2025 2.26 AM
u550391411 / o200927086
0644
class-wp-customize-panel.php
10.388 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-customize-section.php
10.946 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-customize-setting.php
29.188 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-customize-widgets.php
70.466 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-date-query.php
34.889 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-dependencies.php
14.784 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-dependency.php
2.565 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-duotone.php
39.827 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-editor.php
70.64 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-embed.php
15.619 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-error.php
7.326 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-exception.php
0.247 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-fatal-error-handler.php
7.959 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-feed-cache-transient.php
3.102 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-feed-cache.php
0.946 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-hook.php
15.625 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-http-cookie.php
7.216 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-http-curl.php
12.247 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-http-encoding.php
6.532 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-http-ixr-client.php
3.419 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-http-proxy.php
5.84 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-http-requests-hooks.php
1.975 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-http-requests-response.php
4.297 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-http-response.php
2.907 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-http-streams.php
16.464 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-http.php
40.533 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-image-editor-gd.php
19.42 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-image-editor-imagick.php
31.902 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-image-editor.php
16.541 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-list-util.php
7.269 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-locale-switcher.php
6.475 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-locale.php
15.733 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-matchesmapregex.php
1.785 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-meta-query.php
29.815 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-metadata-lazyloader.php
6.673 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-navigation-fallback.php
8.995 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-network-query.php
19.392 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-network.php
12.008 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-object-cache.php
17.113 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-oembed-controller.php
6.743 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-oembed.php
30.737 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-paused-extensions-storage.php
4.991 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-plugin-dependencies.php
24.726 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-post-type.php
29.629 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-post.php
6.332 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-query.php
150.47 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-recovery-mode-cookie-service.php
6.716 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-recovery-mode-email-service.php
10.921 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-recovery-mode-key-service.php
4.5 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-recovery-mode-link-service.php
3.382 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-recovery-mode.php
11.167 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-rewrite.php
62.195 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-role.php
2.464 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-roles.php
8.385 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-script-modules.php
18.912 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-scripts.php
27.68 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-session-tokens.php
7.276 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-simplepie-file.php
3.328 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-simplepie-sanitize-kses.php
1.794 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-site-query.php
30.884 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-site.php
7.279 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-styles.php
10.752 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-tax-query.php
19.097 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-taxonomy.php
18.132 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-term-query.php
39.911 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-term.php
5.174 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-text-diff-renderer-inline.php
0.956 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-text-diff-renderer-table.php
18.366 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-textdomain-registry.php
10.235 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-theme-json-data.php
1.767 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-theme-json-resolver.php
34.966 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-theme-json-schema.php
7.194 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-theme-json.php
157.012 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-theme.php
63.88 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-token-map.php
27.947 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-user-meta-session-tokens.php
2.92 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-user-query.php
42.631 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-user-request.php
2.17 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-user.php
22.292 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-walker.php
13.01 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-widget-factory.php
3.269 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp-widget.php
17.992 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class-wp-xmlrpc-server.php
209.91 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wp.php
25.507 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class-wpdb.php
115.614 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
class.wp-dependencies.php
0.364 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class.wp-scripts.php
0.335 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
class.wp-styles.php
0.33 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
comment-template.php
100.364 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
comment.php
127.222 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
compat.php
16.576 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
cron.php
40.619 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
date.php
0.391 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
default-constants.php
11.099 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
default-filters.php
34.849 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
default-widgets.php
2.17 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
deprecated.php
185.674 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
embed-template.php
0.33 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
embed.php
37.02 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
error-protection.php
4.024 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
feed-atom-comments.php
5.375 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
feed-atom.php
2.977 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
feed-rdf.php
2.605 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
feed-rss.php
1.161 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
feed-rss2-comments.php
4.039 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
feed-rss2.php
3.71 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
feed.php
22.862 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
fonts.php
9.522 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
formatting.php
327.372 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
functions.php
276.526 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
functions.wp-scripts.php
14.217 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
functions.wp-styles.php
8.382 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
general-template.php
165.52 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
global-styles-and-settings.php
20.708 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
http.php
24.719 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
https-detection.php
5.528 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
https-migration.php
4.63 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
kses.php
72.659 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
l10n.php
66.812 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
link-template.php
154.014 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
load.php
54.354 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
locale.php
0.158 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
media-template.php
61.565 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
media.php
213.305 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
meta.php
62.899 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
ms-blogs.php
25.168 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
ms-default-constants.php
4.806 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
ms-default-filters.php
6.48 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
ms-deprecated.php
21.249 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
ms-files.php
2.647 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
ms-functions.php
89.11 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
ms-load.php
19.417 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
ms-network.php
3.693 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
ms-settings.php
4.027 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
ms-site.php
39.541 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
nav-menu-template.php
25.31 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
nav-menu.php
43.333 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
option.php
99.374 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
pluggable-deprecated.php
6.116 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
pluggable.php
113.252 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
plugin.php
34.634 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
post-formats.php
6.936 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
post-template.php
65.313 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
post-thumbnail-template.php
10.572 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
post.php
283.1 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
query.php
36.167 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
registration-functions.php
0.195 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
registration.php
0.195 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
rest-api.php
97.259 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
revision.php
30.166 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
rewrite.php
19.083 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
robots-template.php
5.063 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
rss-functions.php
0.249 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
rss.php
22.571 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
script-loader.php
127.671 KB
11 Feb 2025 10.14 PM
u550391411 / o200927086
0644
script-modules.php
7.531 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
session.php
0.252 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
shortcodes.php
23.487 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
sitemaps.php
3.162 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
spl-autoload-compat.php
0.431 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
style-engine.php
7.386 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
taxonomy.php
171.326 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
template-canvas.php
0.531 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
template-loader.php
2.941 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
template.php
23.588 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
theme-i18n.json
1.262 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
theme-previews.php
2.766 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
theme-templates.php
6.077 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
theme.json
8.5 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
theme.php
130.845 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
update.php
35.926 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
user.php
170.322 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644
vars.php
6.337 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
version.php
0.909 KB
1 Oct 2025 2.26 AM
u550391411 / o200927086
0644
widgets.php
69.025 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
wp-db.php
0.435 KB
26 Oct 2024 10.48 AM
u550391411 / o200927086
0644
wp-diff.php
0.709 KB
30 Nov 2024 8.44 AM
u550391411 / o200927086
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF