����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

antiaginglove@216.73.216.204: ~ $
layout.php000064400000115773152222511210006601 0ustar00<?php
/**
 * Layout block support flag.
 *
 * @package WordPress
 * @since 5.8.0
 */

/**
 * Returns layout definitions, keyed by layout type.
 *
 * Provides a common definition of slugs, classnames, base styles, and spacing styles for each layout type.
 * When making changes or additions to layout definitions, the corresponding JavaScript definitions should
 * also be updated.
 *
 * @since 6.3.0
 * @since 6.6.0 Updated specificity for compatibility with 0-1-0 global styles specificity.
 * @access private
 *
 * @return array[] Layout definitions.
 */
function wp_get_layout_definitions() {
	$layout_definitions = array(
		'default'     => array(
			'name'          => 'default',
			'slug'          => 'flow',
			'className'     => 'is-layout-flow',
			'baseStyles'    => array(
				array(
					'selector' => ' > .alignleft',
					'rules'    => array(
						'float'               => 'left',
						'margin-inline-start' => '0',
						'margin-inline-end'   => '2em',
					),
				),
				array(
					'selector' => ' > .alignright',
					'rules'    => array(
						'float'               => 'right',
						'margin-inline-start' => '2em',
						'margin-inline-end'   => '0',
					),
				),
				array(
					'selector' => ' > .aligncenter',
					'rules'    => array(
						'margin-left'  => 'auto !important',
						'margin-right' => 'auto !important',
					),
				),
			),
			'spacingStyles' => array(
				array(
					'selector' => ' > :first-child',
					'rules'    => array(
						'margin-block-start' => '0',
					),
				),
				array(
					'selector' => ' > :last-child',
					'rules'    => array(
						'margin-block-end' => '0',
					),
				),
				array(
					'selector' => ' > *',
					'rules'    => array(
						'margin-block-start' => null,
						'margin-block-end'   => '0',
					),
				),
			),
		),
		'constrained' => array(
			'name'          => 'constrained',
			'slug'          => 'constrained',
			'className'     => 'is-layout-constrained',
			'baseStyles'    => array(
				array(
					'selector' => ' > .alignleft',
					'rules'    => array(
						'float'               => 'left',
						'margin-inline-start' => '0',
						'margin-inline-end'   => '2em',
					),
				),
				array(
					'selector' => ' > .alignright',
					'rules'    => array(
						'float'               => 'right',
						'margin-inline-start' => '2em',
						'margin-inline-end'   => '0',
					),
				),
				array(
					'selector' => ' > .aligncenter',
					'rules'    => array(
						'margin-left'  => 'auto !important',
						'margin-right' => 'auto !important',
					),
				),
				array(
					'selector' => ' > :where(:not(.alignleft):not(.alignright):not(.alignfull))',
					'rules'    => array(
						'max-width'    => 'var(--wp--style--global--content-size)',
						'margin-left'  => 'auto !important',
						'margin-right' => 'auto !important',
					),
				),
				array(
					'selector' => ' > .alignwide',
					'rules'    => array(
						'max-width' => 'var(--wp--style--global--wide-size)',
					),
				),
			),
			'spacingStyles' => array(
				array(
					'selector' => ' > :first-child',
					'rules'    => array(
						'margin-block-start' => '0',
					),
				),
				array(
					'selector' => ' > :last-child',
					'rules'    => array(
						'margin-block-end' => '0',
					),
				),
				array(
					'selector' => ' > *',
					'rules'    => array(
						'margin-block-start' => null,
						'margin-block-end'   => '0',
					),
				),
			),
		),
		'flex'        => array(
			'name'          => 'flex',
			'slug'          => 'flex',
			'className'     => 'is-layout-flex',
			'displayMode'   => 'flex',
			'baseStyles'    => array(
				array(
					'selector' => '',
					'rules'    => array(
						'flex-wrap'   => 'wrap',
						'align-items' => 'center',
					),
				),
				array(
					'selector' => ' > :is(*, div)', // :is(*, div) instead of just * increases the specificity by 001.
					'rules'    => array(
						'margin' => '0',
					),
				),
			),
			'spacingStyles' => array(
				array(
					'selector' => '',
					'rules'    => array(
						'gap' => null,
					),
				),
			),
		),
		'grid'        => array(
			'name'          => 'grid',
			'slug'          => 'grid',
			'className'     => 'is-layout-grid',
			'displayMode'   => 'grid',
			'baseStyles'    => array(
				array(
					'selector' => ' > :is(*, div)', // :is(*, div) instead of just * increases the specificity by 001.
					'rules'    => array(
						'margin' => '0',
					),
				),
			),
			'spacingStyles' => array(
				array(
					'selector' => '',
					'rules'    => array(
						'gap' => null,
					),
				),
			),
		),
	);

	return $layout_definitions;
}

/**
 * Registers the layout block attribute for block types that support it.
 *
 * @since 5.8.0
 * @since 6.3.0 Check for layout support via the `layout` key with fallback to `__experimentalLayout`.
 * @access private
 *
 * @param WP_Block_Type $block_type Block Type.
 */
function wp_register_layout_support( $block_type ) {
	$support_layout = block_has_support( $block_type, 'layout', false ) || block_has_support( $block_type, '__experimentalLayout', false );
	if ( $support_layout ) {
		if ( ! $block_type->attributes ) {
			$block_type->attributes = array();
		}

		if ( ! array_key_exists( 'layout', $block_type->attributes ) ) {
			$block_type->attributes['layout'] = array(
				'type' => 'object',
			);
		}
	}
}

/**
 * Generates the CSS corresponding to the provided layout.
 *
 * @since 5.9.0
 * @since 6.1.0 Added `$block_spacing` param, use style engine to enqueue styles.
 * @since 6.3.0 Added grid layout type.
 * @since 6.6.0 Removed duplicated selector from layout styles.
 *              Enabled negative margins for alignfull children of blocks with custom padding.
 * @access private
 *
 * @param string               $selector                      CSS selector.
 * @param array                $layout                        Layout object. The one that is passed has already checked
 *                                                            the existence of default block layout.
 * @param bool                 $has_block_gap_support         Optional. Whether the theme has support for the block gap. Default false.
 * @param string|string[]|null $gap_value                     Optional. The block gap value to apply. Default null.
 * @param bool                 $should_skip_gap_serialization Optional. Whether to skip applying the user-defined value set in the editor. Default false.
 * @param string               $fallback_gap_value            Optional. The block gap value to apply. Default '0.5em'.
 * @param array|null           $block_spacing                 Optional. Custom spacing set on the block. Default null.
 * @return string CSS styles on success. Else, empty string.
 */
function wp_get_layout_style( $selector, $layout, $has_block_gap_support = false, $gap_value = null, $should_skip_gap_serialization = false, $fallback_gap_value = '0.5em', $block_spacing = null ) {
	$layout_type   = isset( $layout['type'] ) ? $layout['type'] : 'default';
	$layout_styles = array();

	if ( 'default' === $layout_type ) {
		if ( $has_block_gap_support ) {
			if ( is_array( $gap_value ) ) {
				$gap_value = isset( $gap_value['top'] ) ? $gap_value['top'] : null;
			}
			if ( null !== $gap_value && ! $should_skip_gap_serialization ) {
				// Get spacing CSS variable from preset value if provided.
				if ( is_string( $gap_value ) && str_contains( $gap_value, 'var:preset|spacing|' ) ) {
					$index_to_splice = strrpos( $gap_value, '|' ) + 1;
					$slug            = _wp_to_kebab_case( substr( $gap_value, $index_to_splice ) );
					$gap_value       = "var(--wp--preset--spacing--$slug)";
				}

				array_push(
					$layout_styles,
					array(
						'selector'     => "$selector > *",
						'declarations' => array(
							'margin-block-start' => '0',
							'margin-block-end'   => '0',
						),
					),
					array(
						'selector'     => "$selector > * + *",
						'declarations' => array(
							'margin-block-start' => $gap_value,
							'margin-block-end'   => '0',
						),
					)
				);
			}
		}
	} elseif ( 'constrained' === $layout_type ) {
		$content_size    = isset( $layout['contentSize'] ) ? $layout['contentSize'] : '';
		$wide_size       = isset( $layout['wideSize'] ) ? $layout['wideSize'] : '';
		$justify_content = isset( $layout['justifyContent'] ) ? $layout['justifyContent'] : 'center';

		$all_max_width_value  = $content_size ? $content_size : $wide_size;
		$wide_max_width_value = $wide_size ? $wide_size : $content_size;

		// Make sure there is a single CSS rule, and all tags are stripped for security.
		$all_max_width_value  = safecss_filter_attr( explode( ';', $all_max_width_value )[0] );
		$wide_max_width_value = safecss_filter_attr( explode( ';', $wide_max_width_value )[0] );

		$margin_left  = 'left' === $justify_content ? '0 !important' : 'auto !important';
		$margin_right = 'right' === $justify_content ? '0 !important' : 'auto !important';

		if ( $content_size || $wide_size ) {
			array_push(
				$layout_styles,
				array(
					'selector'     => "$selector > :where(:not(.alignleft):not(.alignright):not(.alignfull))",
					'declarations' => array(
						'max-width'    => $all_max_width_value,
						'margin-left'  => $margin_left,
						'margin-right' => $margin_right,
					),
				),
				array(
					'selector'     => "$selector > .alignwide",
					'declarations' => array( 'max-width' => $wide_max_width_value ),
				),
				array(
					'selector'     => "$selector .alignfull",
					'declarations' => array( 'max-width' => 'none' ),
				)
			);
		}

		if ( isset( $block_spacing ) ) {
			$block_spacing_values = wp_style_engine_get_styles(
				array(
					'spacing' => $block_spacing,
				)
			);

			/*
			 * Handle negative margins for alignfull children of blocks with custom padding set.
			 * They're added separately because padding might only be set on one side.
			 */
			if ( isset( $block_spacing_values['declarations']['padding-right'] ) ) {
				$padding_right = $block_spacing_values['declarations']['padding-right'];
				// Add unit if 0.
				if ( '0' === $padding_right ) {
					$padding_right = '0px';
				}
				$layout_styles[] = array(
					'selector'     => "$selector > .alignfull",
					'declarations' => array( 'margin-right' => "calc($padding_right * -1)" ),
				);
			}
			if ( isset( $block_spacing_values['declarations']['padding-left'] ) ) {
				$padding_left = $block_spacing_values['declarations']['padding-left'];
				// Add unit if 0.
				if ( '0' === $padding_left ) {
					$padding_left = '0px';
				}
				$layout_styles[] = array(
					'selector'     => "$selector > .alignfull",
					'declarations' => array( 'margin-left' => "calc($padding_left * -1)" ),
				);
			}
		}

		if ( 'left' === $justify_content ) {
			$layout_styles[] = array(
				'selector'     => "$selector > :where(:not(.alignleft):not(.alignright):not(.alignfull))",
				'declarations' => array( 'margin-left' => '0 !important' ),
			);
		}

		if ( 'right' === $justify_content ) {
			$layout_styles[] = array(
				'selector'     => "$selector > :where(:not(.alignleft):not(.alignright):not(.alignfull))",
				'declarations' => array( 'margin-right' => '0 !important' ),
			);
		}

		if ( $has_block_gap_support ) {
			if ( is_array( $gap_value ) ) {
				$gap_value = isset( $gap_value['top'] ) ? $gap_value['top'] : null;
			}
			if ( null !== $gap_value && ! $should_skip_gap_serialization ) {
				// Get spacing CSS variable from preset value if provided.
				if ( is_string( $gap_value ) && str_contains( $gap_value, 'var:preset|spacing|' ) ) {
					$index_to_splice = strrpos( $gap_value, '|' ) + 1;
					$slug            = _wp_to_kebab_case( substr( $gap_value, $index_to_splice ) );
					$gap_value       = "var(--wp--preset--spacing--$slug)";
				}

				array_push(
					$layout_styles,
					array(
						'selector'     => "$selector > *",
						'declarations' => array(
							'margin-block-start' => '0',
							'margin-block-end'   => '0',
						),
					),
					array(
						'selector'     => "$selector > * + *",
						'declarations' => array(
							'margin-block-start' => $gap_value,
							'margin-block-end'   => '0',
						),
					)
				);
			}
		}
	} elseif ( 'flex' === $layout_type ) {
		$layout_orientation = isset( $layout['orientation'] ) ? $layout['orientation'] : 'horizontal';

		$justify_content_options = array(
			'left'   => 'flex-start',
			'right'  => 'flex-end',
			'center' => 'center',
		);

		$vertical_alignment_options = array(
			'top'    => 'flex-start',
			'center' => 'center',
			'bottom' => 'flex-end',
		);

		if ( 'horizontal' === $layout_orientation ) {
			$justify_content_options    += array( 'space-between' => 'space-between' );
			$vertical_alignment_options += array( 'stretch' => 'stretch' );
		} else {
			$justify_content_options    += array( 'stretch' => 'stretch' );
			$vertical_alignment_options += array( 'space-between' => 'space-between' );
		}

		if ( ! empty( $layout['flexWrap'] ) && 'nowrap' === $layout['flexWrap'] ) {
			$layout_styles[] = array(
				'selector'     => $selector,
				'declarations' => array( 'flex-wrap' => 'nowrap' ),
			);
		}

		if ( $has_block_gap_support && isset( $gap_value ) ) {
			$combined_gap_value = '';
			$gap_sides          = is_array( $gap_value ) ? array( 'top', 'left' ) : array( 'top' );

			foreach ( $gap_sides as $gap_side ) {
				$process_value = $gap_value;
				if ( is_array( $gap_value ) ) {
					$process_value = isset( $gap_value[ $gap_side ] ) ? $gap_value[ $gap_side ] : $fallback_gap_value;
				}
				// Get spacing CSS variable from preset value if provided.
				if ( is_string( $process_value ) && str_contains( $process_value, 'var:preset|spacing|' ) ) {
					$index_to_splice = strrpos( $process_value, '|' ) + 1;
					$slug            = _wp_to_kebab_case( substr( $process_value, $index_to_splice ) );
					$process_value   = "var(--wp--preset--spacing--$slug)";
				}
				$combined_gap_value .= "$process_value ";
			}
			$gap_value = trim( $combined_gap_value );

			if ( null !== $gap_value && ! $should_skip_gap_serialization ) {
				$layout_styles[] = array(
					'selector'     => $selector,
					'declarations' => array( 'gap' => $gap_value ),
				);
			}
		}

		if ( 'horizontal' === $layout_orientation ) {
			/*
			 * Add this style only if is not empty for backwards compatibility,
			 * since we intend to convert blocks that had flex layout implemented
			 * by custom css.
			 */
			if ( ! empty( $layout['justifyContent'] ) && array_key_exists( $layout['justifyContent'], $justify_content_options ) ) {
				$layout_styles[] = array(
					'selector'     => $selector,
					'declarations' => array( 'justify-content' => $justify_content_options[ $layout['justifyContent'] ] ),
				);
			}

			if ( ! empty( $layout['verticalAlignment'] ) && array_key_exists( $layout['verticalAlignment'], $vertical_alignment_options ) ) {
				$layout_styles[] = array(
					'selector'     => $selector,
					'declarations' => array( 'align-items' => $vertical_alignment_options[ $layout['verticalAlignment'] ] ),
				);
			}
		} else {
			$layout_styles[] = array(
				'selector'     => $selector,
				'declarations' => array( 'flex-direction' => 'column' ),
			);
			if ( ! empty( $layout['justifyContent'] ) && array_key_exists( $layout['justifyContent'], $justify_content_options ) ) {
				$layout_styles[] = array(
					'selector'     => $selector,
					'declarations' => array( 'align-items' => $justify_content_options[ $layout['justifyContent'] ] ),
				);
			} else {
				$layout_styles[] = array(
					'selector'     => $selector,
					'declarations' => array( 'align-items' => 'flex-start' ),
				);
			}
			if ( ! empty( $layout['verticalAlignment'] ) && array_key_exists( $layout['verticalAlignment'], $vertical_alignment_options ) ) {
				$layout_styles[] = array(
					'selector'     => $selector,
					'declarations' => array( 'justify-content' => $vertical_alignment_options[ $layout['verticalAlignment'] ] ),
				);
			}
		}
	} elseif ( 'grid' === $layout_type ) {
		if ( ! empty( $layout['columnCount'] ) ) {
			$layout_styles[] = array(
				'selector'     => $selector,
				'declarations' => array( 'grid-template-columns' => 'repeat(' . $layout['columnCount'] . ', minmax(0, 1fr))' ),
			);
		} else {
			$minimum_column_width = ! empty( $layout['minimumColumnWidth'] ) ? $layout['minimumColumnWidth'] : '12rem';

			$layout_styles[] = array(
				'selector'     => $selector,
				'declarations' => array(
					'grid-template-columns' => 'repeat(auto-fill, minmax(min(' . $minimum_column_width . ', 100%), 1fr))',
					'container-type'        => 'inline-size',
				),
			);
		}

		if ( $has_block_gap_support && isset( $gap_value ) ) {
			$combined_gap_value = '';
			$gap_sides          = is_array( $gap_value ) ? array( 'top', 'left' ) : array( 'top' );

			foreach ( $gap_sides as $gap_side ) {
				$process_value = $gap_value;
				if ( is_array( $gap_value ) ) {
					$process_value = isset( $gap_value[ $gap_side ] ) ? $gap_value[ $gap_side ] : $fallback_gap_value;
				}
				// Get spacing CSS variable from preset value if provided.
				if ( is_string( $process_value ) && str_contains( $process_value, 'var:preset|spacing|' ) ) {
					$index_to_splice = strrpos( $process_value, '|' ) + 1;
					$slug            = _wp_to_kebab_case( substr( $process_value, $index_to_splice ) );
					$process_value   = "var(--wp--preset--spacing--$slug)";
				}
				$combined_gap_value .= "$process_value ";
			}
			$gap_value = trim( $combined_gap_value );

			if ( null !== $gap_value && ! $should_skip_gap_serialization ) {
				$layout_styles[] = array(
					'selector'     => $selector,
					'declarations' => array( 'gap' => $gap_value ),
				);
			}
		}
	}

	if ( ! empty( $layout_styles ) ) {
		/*
		 * Add to the style engine store to enqueue and render layout styles.
		 * Return compiled layout styles to retain backwards compatibility.
		 * Since https://github.com/WordPress/gutenberg/pull/42452,
		 * wp_enqueue_block_support_styles is no longer called in this block supports file.
		 */
		return wp_style_engine_get_stylesheet_from_css_rules(
			$layout_styles,
			array(
				'context'  => 'block-supports',
				'prettify' => false,
			)
		);
	}

	return '';
}

/**
 * Renders the layout config to the block wrapper.
 *
 * @since 5.8.0
 * @since 6.3.0 Adds compound class to layout wrapper for global spacing styles.
 * @since 6.3.0 Check for layout support via the `layout` key with fallback to `__experimentalLayout`.
 * @since 6.6.0 Removed duplicate container class from layout styles.
 * @access private
 *
 * @param string $block_content Rendered block content.
 * @param array  $block         Block object.
 * @return string Filtered block content.
 */
function wp_render_layout_support_flag( $block_content, $block ) {
	$block_type            = WP_Block_Type_Registry::get_instance()->get_registered( $block['blockName'] );
	$block_supports_layout = block_has_support( $block_type, 'layout', false ) || block_has_support( $block_type, '__experimentalLayout', false );
	$child_layout          = isset( $block['attrs']['style']['layout'] ) ? $block['attrs']['style']['layout'] : null;

	if ( ! $block_supports_layout && ! $child_layout ) {
		return $block_content;
	}

	$outer_class_names = array();

	// Child layout specific logic.
	if ( $child_layout ) {
		/*
		 * Generates a unique class for child block layout styles.
		 *
		 * To ensure consistent class generation across different page renders,
		 * only properties that affect layout styling are used. These properties
		 * come from `$block['attrs']['style']['layout']` and `$block['parentLayout']`.
		 *
		 * As long as these properties coincide, the generated class will be the same.
		 */
		$container_content_class = wp_unique_id_from_values(
			array(
				'layout'       => array_intersect_key(
					$block['attrs']['style']['layout'] ?? array(),
					array_flip(
						array( 'selfStretch', 'flexSize', 'columnStart', 'columnSpan', 'rowStart', 'rowSpan' )
					)
				),
				'parentLayout' => array_intersect_key(
					$block['parentLayout'] ?? array(),
					array_flip(
						array( 'minimumColumnWidth', 'columnCount' )
					)
				),
			),
			'wp-container-content-'
		);

		$child_layout_declarations = array();
		$child_layout_styles       = array();

		$self_stretch = isset( $child_layout['selfStretch'] ) ? $child_layout['selfStretch'] : null;

		if ( 'fixed' === $self_stretch && isset( $child_layout['flexSize'] ) ) {
			$child_layout_declarations['flex-basis'] = $child_layout['flexSize'];
			$child_layout_declarations['box-sizing'] = 'border-box';
		} elseif ( 'fill' === $self_stretch ) {
			$child_layout_declarations['flex-grow'] = '1';
		}

		if ( isset( $child_layout['columnSpan'] ) ) {
			$column_span                              = $child_layout['columnSpan'];
			$child_layout_declarations['grid-column'] = "span $column_span";
		}
		if ( isset( $child_layout['rowSpan'] ) ) {
			$row_span                              = $child_layout['rowSpan'];
			$child_layout_declarations['grid-row'] = "span $row_span";
		}
		$child_layout_styles[] = array(
			'selector'     => ".$container_content_class",
			'declarations' => $child_layout_declarations,
		);

		/*
		 * If columnSpan is set, and the parent grid is responsive, i.e. if it has a minimumColumnWidth set,
		 * the columnSpan should be removed on small grids. If there's a minimumColumnWidth, the grid is responsive.
		 * But if the minimumColumnWidth value wasn't changed, it won't be set. In that case, if columnCount doesn't
		 * exist, we can assume that the grid is responsive.
		 */
		if ( isset( $child_layout['columnSpan'] ) && ( isset( $block['parentLayout']['minimumColumnWidth'] ) || ! isset( $block['parentLayout']['columnCount'] ) ) ) {
			$column_span_number  = floatval( $child_layout['columnSpan'] );
			$parent_column_width = isset( $block['parentLayout']['minimumColumnWidth'] ) ? $block['parentLayout']['minimumColumnWidth'] : '12rem';
			$parent_column_value = floatval( $parent_column_width );
			$parent_column_unit  = explode( $parent_column_value, $parent_column_width );

			/*
			 * If there is no unit, the width has somehow been mangled so we reset both unit and value
			 * to defaults.
			 * Additionally, the unit should be one of px, rem or em, so that also needs to be checked.
			 */
			if ( count( $parent_column_unit ) <= 1 ) {
				$parent_column_unit  = 'rem';
				$parent_column_value = 12;
			} else {
				$parent_column_unit = $parent_column_unit[1];

				if ( ! in_array( $parent_column_unit, array( 'px', 'rem', 'em' ), true ) ) {
					$parent_column_unit = 'rem';
				}
			}

			/*
			 * A default gap value is used for this computation because custom gap values may not be
			 * viable to use in the computation of the container query value.
			 */
			$default_gap_value     = 'px' === $parent_column_unit ? 24 : 1.5;
			$container_query_value = $column_span_number * $parent_column_value + ( $column_span_number - 1 ) * $default_gap_value;
			$container_query_value = $container_query_value . $parent_column_unit;

			$child_layout_styles[] = array(
				'rules_group'  => "@container (max-width: $container_query_value )",
				'selector'     => ".$container_content_class",
				'declarations' => array(
					'grid-column' => '1/-1',
				),
			);
		}

		/*
		 * Add to the style engine store to enqueue and render layout styles.
		 * Return styles here just to check if any exist.
		 */
		$child_css = wp_style_engine_get_stylesheet_from_css_rules(
			$child_layout_styles,
			array(
				'context'  => 'block-supports',
				'prettify' => false,
			)
		);

		if ( $child_css ) {
			$outer_class_names[] = $container_content_class;
		}
	}

	// Prep the processor for modifying the block output.
	$processor = new WP_HTML_Tag_Processor( $block_content );

	// Having no tags implies there are no tags onto which to add class names.
	if ( ! $processor->next_tag() ) {
		return $block_content;
	}

	/*
	 * A block may not support layout but still be affected by a parent block's layout.
	 *
	 * In these cases add the appropriate class names and then return early; there's
	 * no need to investigate on this block whether additional layout constraints apply.
	 */
	if ( ! $block_supports_layout && ! empty( $outer_class_names ) ) {
		foreach ( $outer_class_names as $class_name ) {
			$processor->add_class( $class_name );
		}
		return $processor->get_updated_html();
	} elseif ( ! $block_supports_layout ) {
		// Ensure layout classnames are not injected if there is no layout support.
		return $block_content;
	}

	$global_settings = wp_get_global_settings();
	$fallback_layout = isset( $block_type->supports['layout']['default'] )
		? $block_type->supports['layout']['default']
		: array();
	if ( empty( $fallback_layout ) ) {
		$fallback_layout = isset( $block_type->supports['__experimentalLayout']['default'] )
			? $block_type->supports['__experimentalLayout']['default']
			: array();
	}
	$used_layout = isset( $block['attrs']['layout'] ) ? $block['attrs']['layout'] : $fallback_layout;

	$class_names        = array();
	$layout_definitions = wp_get_layout_definitions();

	// Set the correct layout type for blocks using legacy content width.
	if ( isset( $used_layout['inherit'] ) && $used_layout['inherit'] || isset( $used_layout['contentSize'] ) && $used_layout['contentSize'] ) {
		$used_layout['type'] = 'constrained';
	}

	$root_padding_aware_alignments = isset( $global_settings['useRootPaddingAwareAlignments'] )
		? $global_settings['useRootPaddingAwareAlignments']
		: false;

	if (
		$root_padding_aware_alignments &&
		isset( $used_layout['type'] ) &&
		'constrained' === $used_layout['type']
	) {
		$class_names[] = 'has-global-padding';
	}

	/*
	 * The following section was added to reintroduce a small set of layout classnames that were
	 * removed in the 5.9 release (https://github.com/WordPress/gutenberg/issues/38719). It is
	 * not intended to provide an extended set of classes to match all block layout attributes
	 * here.
	 */
	if ( ! empty( $block['attrs']['layout']['orientation'] ) ) {
		$class_names[] = 'is-' . sanitize_title( $block['attrs']['layout']['orientation'] );
	}

	if ( ! empty( $block['attrs']['layout']['justifyContent'] ) ) {
		$class_names[] = 'is-content-justification-' . sanitize_title( $block['attrs']['layout']['justifyContent'] );
	}

	if ( ! empty( $block['attrs']['layout']['flexWrap'] ) && 'nowrap' === $block['attrs']['layout']['flexWrap'] ) {
		$class_names[] = 'is-nowrap';
	}

	// Get classname for layout type.
	if ( isset( $used_layout['type'] ) ) {
		$layout_classname = isset( $layout_definitions[ $used_layout['type'] ]['className'] )
			? $layout_definitions[ $used_layout['type'] ]['className']
			: '';
	} else {
		$layout_classname = isset( $layout_definitions['default']['className'] )
			? $layout_definitions['default']['className']
			: '';
	}

	if ( $layout_classname && is_string( $layout_classname ) ) {
		$class_names[] = sanitize_title( $layout_classname );
	}

	/*
	 * Only generate Layout styles if the theme has not opted-out.
	 * Attribute-based Layout classnames are output in all cases.
	 */
	if ( ! current_theme_supports( 'disable-layout-styles' ) ) {

		$gap_value = isset( $block['attrs']['style']['spacing']['blockGap'] )
			? $block['attrs']['style']['spacing']['blockGap']
			: null;
		/*
		 * Skip if gap value contains unsupported characters.
		 * Regex for CSS value borrowed from `safecss_filter_attr`, and used here
		 * to only match against the value, not the CSS attribute.
		 */
		if ( is_array( $gap_value ) ) {
			foreach ( $gap_value as $key => $value ) {
				$gap_value[ $key ] = $value && preg_match( '%[\\\(&=}]|/\*%', $value ) ? null : $value;
			}
		} else {
			$gap_value = $gap_value && preg_match( '%[\\\(&=}]|/\*%', $gap_value ) ? null : $gap_value;
		}

		$fallback_gap_value = isset( $block_type->supports['spacing']['blockGap']['__experimentalDefault'] )
			? $block_type->supports['spacing']['blockGap']['__experimentalDefault']
			: '0.5em';
		$block_spacing      = isset( $block['attrs']['style']['spacing'] )
			? $block['attrs']['style']['spacing']
			: null;

		/*
		 * If a block's block.json skips serialization for spacing or spacing.blockGap,
		 * don't apply the user-defined value to the styles.
		 */
		$should_skip_gap_serialization = wp_should_skip_block_supports_serialization( $block_type, 'spacing', 'blockGap' );

		$block_gap             = isset( $global_settings['spacing']['blockGap'] )
			? $global_settings['spacing']['blockGap']
			: null;
		$has_block_gap_support = isset( $block_gap );

		/*
		 * Generates a unique ID based on all the data required to obtain the
		 * corresponding layout style. Keeps the CSS class names the same
		 * even for different blocks on different places, as long as they have
		 * the same layout definition. Makes the CSS class names stable across
		 * paginations for features like the enhanced pagination of the Query block.
		 */
		$container_class = wp_unique_id_from_values(
			array(
				$used_layout,
				$has_block_gap_support,
				$gap_value,
				$should_skip_gap_serialization,
				$fallback_gap_value,
				$block_spacing,
			),
			'wp-container-' . sanitize_title( $block['blockName'] ) . '-is-layout-'
		);

		$style = wp_get_layout_style(
			".$container_class",
			$used_layout,
			$has_block_gap_support,
			$gap_value,
			$should_skip_gap_serialization,
			$fallback_gap_value,
			$block_spacing
		);

		// Only add container class and enqueue block support styles if unique styles were generated.
		if ( ! empty( $style ) ) {
			$class_names[] = $container_class;
		}
	}

	// Add combined layout and block classname for global styles to hook onto.
	$split_block_name = explode( '/', $block['blockName'] );
	$full_block_name  = 'core' === $split_block_name[0] ? end( $split_block_name ) : implode( '-', $split_block_name );
	$class_names[]    = 'wp-block-' . $full_block_name . '-' . $layout_classname;

	// Add classes to the outermost HTML tag if necessary.
	if ( ! empty( $outer_class_names ) ) {
		foreach ( $outer_class_names as $outer_class_name ) {
			$processor->add_class( $outer_class_name );
		}
	}

	/**
	 * Attempts to refer to the inner-block wrapping element by its class attribute.
	 *
	 * When examining a block's inner content, if a block has inner blocks, then
	 * the first content item will likely be a text (HTML) chunk immediately
	 * preceding the inner blocks. The last HTML tag in that chunk would then be
	 * an opening tag for an element that wraps the inner blocks.
	 *
	 * There's no reliable way to associate this wrapper in $block_content because
	 * it may have changed during the rendering pipeline (as inner contents is
	 * provided before rendering) and through previous filters. In many cases,
	 * however, the `class` attribute will be a good-enough identifier, so this
	 * code finds the last tag in that chunk and stores the `class` attribute
	 * so that it can be used later when working through the rendered block output
	 * to identify the wrapping element and add the remaining class names to it.
	 *
	 * It's also possible that no inner block wrapper even exists. If that's the
	 * case this code could apply the class names to an invalid element.
	 *
	 * Example:
	 *
	 *     $block['innerBlocks']  = array( $list_item );
	 *     $block['innerContent'] = array( '<ul class="list-wrapper is-unordered">', null, '</ul>' );
	 *
	 *     // After rendering, the initial contents may have been modified by other renderers or filters.
	 *     $block_content = <<<HTML
	 *         <figure>
	 *             <ul class="annotated-list list-wrapper is-unordered">
	 *                 <li>Code</li>
	 *             </ul><figcaption>It's a list!</figcaption>
	 *         </figure>
	 *     HTML;
	 *
	 * Although it is possible that the original block-wrapper classes are changed in $block_content
	 * from how they appear in $block['innerContent'], it's likely that the original class attributes
	 * are still present in the wrapper as they are in this example. Frequently, additional classes
	 * will also be present; rarely should classes be removed.
	 *
	 * @todo Find a better way to match the first inner block. If it's possible to identify where the
	 *       first inner block starts, then it will be possible to find the last tag before it starts
	 *       and then that tag, if an opening tag, can be solidly identified as a wrapping element.
	 *       Can some unique value or class or ID be added to the inner blocks when they process
	 *       so that they can be extracted here safely without guessing? Can the block rendering function
	 *       return information about where the rendered inner blocks start?
	 *
	 * @var string|null
	 */
	$inner_block_wrapper_classes = null;
	$first_chunk                 = isset( $block['innerContent'][0] ) ? $block['innerContent'][0] : null;
	if ( is_string( $first_chunk ) && count( $block['innerContent'] ) > 1 ) {
		$first_chunk_processor = new WP_HTML_Tag_Processor( $first_chunk );
		while ( $first_chunk_processor->next_tag() ) {
			$class_attribute = $first_chunk_processor->get_attribute( 'class' );
			if ( is_string( $class_attribute ) && ! empty( $class_attribute ) ) {
				$inner_block_wrapper_classes = $class_attribute;
			}
		}
	}

	/*
	 * If necessary, advance to what is likely to be an inner block wrapper tag.
	 *
	 * This advances until it finds the first tag containing the original class
	 * attribute from above. If none is found it will scan to the end of the block
	 * and fail to add any class names.
	 *
	 * If there is no block wrapper it won't advance at all, in which case the
	 * class names will be added to the first and outermost tag of the block.
	 * For cases where this outermost tag is the only tag surrounding inner
	 * blocks then the outer wrapper and inner wrapper are the same.
	 */
	do {
		if ( ! $inner_block_wrapper_classes ) {
			break;
		}

		$class_attribute = $processor->get_attribute( 'class' );
		if ( is_string( $class_attribute ) && str_contains( $class_attribute, $inner_block_wrapper_classes ) ) {
			break;
		}
	} while ( $processor->next_tag() );

	// Add the remaining class names.
	foreach ( $class_names as $class_name ) {
		$processor->add_class( $class_name );
	}

	return $processor->get_updated_html();
}

/**
 * Check if the parent block exists and if it has a layout attribute.
 * If it does, add the parent layout to the parsed block
 *
 * @since 6.6.0
 * @access private
 *
 * @param array    $parsed_block The parsed block.
 * @param array    $source_block The source block.
 * @param WP_Block $parent_block The parent block.
 * @return array The parsed block with parent layout attribute if it exists.
 */
function wp_add_parent_layout_to_parsed_block( $parsed_block, $source_block, $parent_block ) {
	if ( $parent_block && isset( $parent_block->parsed_block['attrs']['layout'] ) ) {
		$parsed_block['parentLayout'] = $parent_block->parsed_block['attrs']['layout'];
	}
	return $parsed_block;
}

add_filter( 'render_block_data', 'wp_add_parent_layout_to_parsed_block', 10, 3 );

// Register the block support.
WP_Block_Supports::get_instance()->register(
	'layout',
	array(
		'register_attribute' => 'wp_register_layout_support',
	)
);
add_filter( 'render_block', 'wp_render_layout_support_flag', 10, 2 );

/**
 * For themes without theme.json file, make sure
 * to restore the inner div for the group block
 * to avoid breaking styles relying on that div.
 *
 * @since 5.8.0
 * @since 6.6.1 Removed inner container from Grid variations.
 * @access private
 *
 * @param string $block_content Rendered block content.
 * @param array  $block         Block object.
 * @return string Filtered block content.
 */
function wp_restore_group_inner_container( $block_content, $block ) {
	$tag_name                         = isset( $block['attrs']['tagName'] ) ? $block['attrs']['tagName'] : 'div';
	$group_with_inner_container_regex = sprintf(
		'/(^\s*<%1$s\b[^>]*wp-block-group(\s|")[^>]*>)(\s*<div\b[^>]*wp-block-group__inner-container(\s|")[^>]*>)((.|\S|\s)*)/U',
		preg_quote( $tag_name, '/' )
	);

	if (
		wp_theme_has_theme_json() ||
		1 === preg_match( $group_with_inner_container_regex, $block_content ) ||
		( isset( $block['attrs']['layout']['type'] ) && ( 'flex' === $block['attrs']['layout']['type'] || 'grid' === $block['attrs']['layout']['type'] ) )
	) {
		return $block_content;
	}

	/*
	 * This filter runs after the layout classnames have been added to the block, so they
	 * have to be removed from the outer wrapper and then added to the inner.
	 */
	$layout_classes = array();
	$processor      = new WP_HTML_Tag_Processor( $block_content );

	if ( $processor->next_tag( array( 'class_name' => 'wp-block-group' ) ) ) {
		foreach ( $processor->class_list() as $class_name ) {
			if ( str_contains( $class_name, 'is-layout-' ) ) {
				$layout_classes[] = $class_name;
				$processor->remove_class( $class_name );
			}
		}
	}

	$content_without_layout_classes = $processor->get_updated_html();
	$replace_regex                  = sprintf(
		'/(^\s*<%1$s\b[^>]*wp-block-group[^>]*>)(.*)(<\/%1$s>\s*$)/ms',
		preg_quote( $tag_name, '/' )
	);
	$updated_content                = preg_replace_callback(
		$replace_regex,
		static function ( $matches ) {
			return $matches[1] . '<div class="wp-block-group__inner-container">' . $matches[2] . '</div>' . $matches[3];
		},
		$content_without_layout_classes
	);

	// Add layout classes to inner wrapper.
	if ( ! empty( $layout_classes ) ) {
		$processor = new WP_HTML_Tag_Processor( $updated_content );
		if ( $processor->next_tag( array( 'class_name' => 'wp-block-group__inner-container' ) ) ) {
			foreach ( $layout_classes as $class_name ) {
				$processor->add_class( $class_name );
			}
		}
		$updated_content = $processor->get_updated_html();
	}
	return $updated_content;
}

add_filter( 'render_block_core/group', 'wp_restore_group_inner_container', 10, 2 );

/**
 * For themes without theme.json file, make sure
 * to restore the outer div for the aligned image block
 * to avoid breaking styles relying on that div.
 *
 * @since 6.0.0
 * @access private
 *
 * @param string $block_content Rendered block content.
 * @param  array  $block        Block object.
 * @return string Filtered block content.
 */
function wp_restore_image_outer_container( $block_content, $block ) {
	if ( wp_theme_has_theme_json() ) {
		return $block_content;
	}

	$figure_processor = new WP_HTML_Tag_Processor( $block_content );
	if (
		! $figure_processor->next_tag( 'FIGURE' ) ||
		! $figure_processor->has_class( 'wp-block-image' ) ||
		! (
			$figure_processor->has_class( 'alignleft' ) ||
			$figure_processor->has_class( 'aligncenter' ) ||
			$figure_processor->has_class( 'alignright' )
		)
	) {
		return $block_content;
	}

	/*
	 * The next section of code wraps the existing figure in a new DIV element.
	 * While doing it, it needs to transfer the layout and the additional CSS
	 * class names from the original figure upward to the wrapper.
	 *
	 * Example:
	 *
	 *     // From this…
	 *     <!-- wp:image {"className":"hires"} -->
	 *     <figure class="wp-block-image wide hires">…
	 *
	 *     // To this…
	 *     <div class="wp-block-image hires"><figure class="wide">…
	 */
	$wrapper_processor = new WP_HTML_Tag_Processor( '<div>' );
	$wrapper_processor->next_token();
	$wrapper_processor->set_attribute(
		'class',
		is_string( $block['attrs']['className'] ?? null )
			? "wp-block-image {$block['attrs']['className']}"
			: 'wp-block-image'
	);

	// And remove them from the existing content; it has been transferred upward.
	$figure_processor->remove_class( 'wp-block-image' );
	foreach ( $wrapper_processor->class_list() as $class_name ) {
		$figure_processor->remove_class( $class_name );
	}

	return "{$wrapper_processor->get_updated_html()}{$figure_processor->get_updated_html()}</div>";
}

add_filter( 'render_block_core/image', 'wp_restore_image_outer_container', 10, 2 );
position.php000064400000010361152222511210007113 0ustar00<?php
/**
 * Position block support flag.
 *
 * @package WordPress
 * @since 6.2.0
 */

/**
 * Registers the style block attribute for block types that support it.
 *
 * @since 6.2.0
 * @access private
 *
 * @param WP_Block_Type $block_type Block Type.
 */
function wp_register_position_support( $block_type ) {
	$has_position_support = block_has_support( $block_type, 'position', false );

	// Set up attributes and styles within that if needed.
	if ( ! $block_type->attributes ) {
		$block_type->attributes = array();
	}

	if ( $has_position_support && ! array_key_exists( 'style', $block_type->attributes ) ) {
		$block_type->attributes['style'] = array(
			'type' => 'object',
		);
	}
}

/**
 * Renders position styles to the block wrapper.
 *
 * @since 6.2.0
 * @access private
 *
 * @param  string $block_content Rendered block content.
 * @param  array  $block         Block object.
 * @return string                Filtered block content.
 */
function wp_render_position_support( $block_content, $block ) {
	$block_type           = WP_Block_Type_Registry::get_instance()->get_registered( $block['blockName'] );
	$has_position_support = block_has_support( $block_type, 'position', false );

	if (
		! $has_position_support ||
		empty( $block['attrs']['style']['position'] )
	) {
		return $block_content;
	}

	$global_settings          = wp_get_global_settings();
	$theme_has_sticky_support = isset( $global_settings['position']['sticky'] ) ? $global_settings['position']['sticky'] : false;
	$theme_has_fixed_support  = isset( $global_settings['position']['fixed'] ) ? $global_settings['position']['fixed'] : false;

	// Only allow output for position types that the theme supports.
	$allowed_position_types = array();
	if ( true === $theme_has_sticky_support ) {
		$allowed_position_types[] = 'sticky';
	}
	if ( true === $theme_has_fixed_support ) {
		$allowed_position_types[] = 'fixed';
	}

	$style_attribute = isset( $block['attrs']['style'] ) ? $block['attrs']['style'] : null;
	$class_name      = wp_unique_id( 'wp-container-' );
	$selector        = ".$class_name";
	$position_styles = array();
	$position_type   = isset( $style_attribute['position']['type'] ) ? $style_attribute['position']['type'] : '';
	$wrapper_classes = array();

	if (
		in_array( $position_type, $allowed_position_types, true )
	) {
		$wrapper_classes[] = $class_name;
		$wrapper_classes[] = 'is-position-' . $position_type;
		$sides             = array( 'top', 'right', 'bottom', 'left' );

		foreach ( $sides as $side ) {
			$side_value = isset( $style_attribute['position'][ $side ] ) ? $style_attribute['position'][ $side ] : null;
			if ( null !== $side_value ) {
				/*
				 * For fixed or sticky top positions,
				 * ensure the value includes an offset for the logged in admin bar.
				 */
				if (
					'top' === $side &&
					( 'fixed' === $position_type || 'sticky' === $position_type )
				) {
					// Ensure 0 values can be used in `calc()` calculations.
					if ( '0' === $side_value || 0 === $side_value ) {
						$side_value = '0px';
					}

					// Ensure current side value also factors in the height of the logged in admin bar.
					$side_value = "calc($side_value + var(--wp-admin--admin-bar--position-offset, 0px))";
				}

				$position_styles[] =
					array(
						'selector'     => $selector,
						'declarations' => array(
							$side => $side_value,
						),
					);
			}
		}

		$position_styles[] =
			array(
				'selector'     => $selector,
				'declarations' => array(
					'position' => $position_type,
					'z-index'  => '10',
				),
			);
	}

	if ( ! empty( $position_styles ) ) {
		/*
		 * Add to the style engine store to enqueue and render position styles.
		 */
		wp_style_engine_get_stylesheet_from_css_rules(
			$position_styles,
			array(
				'context'  => 'block-supports',
				'prettify' => false,
			)
		);

		// Inject class name to block container markup.
		$content = new WP_HTML_Tag_Processor( $block_content );
		$content->next_tag();
		foreach ( $wrapper_classes as $class ) {
			$content->add_class( $class );
		}
		return (string) $content;
	}

	return $block_content;
}

// Register the block support.
WP_Block_Supports::get_instance()->register(
	'position',
	array(
		'register_attribute' => 'wp_register_position_support',
	)
);
add_filter( 'render_block', 'wp_render_position_support', 10, 2 );
border.php000064400000014426152222511210006532 0ustar00<?php
/**
 * Border block support flag.
 *
 * @package WordPress
 * @since 5.8.0
 */

/**
 * Registers the style attribute used by the border feature if needed for block
 * types that support borders.
 *
 * @since 5.8.0
 * @since 6.1.0 Improved conditional blocks optimization.
 * @access private
 *
 * @param WP_Block_Type $block_type Block Type.
 */
function wp_register_border_support( $block_type ) {
	// Setup attributes and styles within that if needed.
	if ( ! $block_type->attributes ) {
		$block_type->attributes = array();
	}

	if ( block_has_support( $block_type, '__experimentalBorder' ) && ! array_key_exists( 'style', $block_type->attributes ) ) {
		$block_type->attributes['style'] = array(
			'type' => 'object',
		);
	}

	if ( wp_has_border_feature_support( $block_type, 'color' ) && ! array_key_exists( 'borderColor', $block_type->attributes ) ) {
		$block_type->attributes['borderColor'] = array(
			'type' => 'string',
		);
	}
}

/**
 * Adds CSS classes and inline styles for border styles to the incoming
 * attributes array. This will be applied to the block markup in the front-end.
 *
 * @since 5.8.0
 * @since 6.1.0 Implemented the style engine to generate CSS and classnames.
 * @access private
 *
 * @param WP_Block_Type $block_type       Block type.
 * @param array         $block_attributes Block attributes.
 * @return array Border CSS classes and inline styles.
 */
function wp_apply_border_support( $block_type, $block_attributes ) {
	if ( wp_should_skip_block_supports_serialization( $block_type, 'border' ) ) {
		return array();
	}

	$border_block_styles      = array();
	$has_border_color_support = wp_has_border_feature_support( $block_type, 'color' );
	$has_border_width_support = wp_has_border_feature_support( $block_type, 'width' );

	// Border radius.
	if (
		wp_has_border_feature_support( $block_type, 'radius' ) &&
		isset( $block_attributes['style']['border']['radius'] ) &&
		! wp_should_skip_block_supports_serialization( $block_type, '__experimentalBorder', 'radius' )
	) {
		$border_radius = $block_attributes['style']['border']['radius'];

		if ( is_numeric( $border_radius ) ) {
			$border_radius .= 'px';
		}

		$border_block_styles['radius'] = $border_radius;
	}

	// Border style.
	if (
		wp_has_border_feature_support( $block_type, 'style' ) &&
		isset( $block_attributes['style']['border']['style'] ) &&
		! wp_should_skip_block_supports_serialization( $block_type, '__experimentalBorder', 'style' )
	) {
		$border_block_styles['style'] = $block_attributes['style']['border']['style'];
	}

	// Border width.
	if (
		$has_border_width_support &&
		isset( $block_attributes['style']['border']['width'] ) &&
		! wp_should_skip_block_supports_serialization( $block_type, '__experimentalBorder', 'width' )
	) {
		$border_width = $block_attributes['style']['border']['width'];

		// This check handles original unitless implementation.
		if ( is_numeric( $border_width ) ) {
			$border_width .= 'px';
		}

		$border_block_styles['width'] = $border_width;
	}

	// Border color.
	if (
		$has_border_color_support &&
		! wp_should_skip_block_supports_serialization( $block_type, '__experimentalBorder', 'color' )
	) {
		$preset_border_color          = array_key_exists( 'borderColor', $block_attributes ) ? "var:preset|color|{$block_attributes['borderColor']}" : null;
		$custom_border_color          = isset( $block_attributes['style']['border']['color'] ) ? $block_attributes['style']['border']['color'] : null;
		$border_block_styles['color'] = $preset_border_color ? $preset_border_color : $custom_border_color;
	}

	// Generates styles for individual border sides.
	if ( $has_border_color_support || $has_border_width_support ) {
		foreach ( array( 'top', 'right', 'bottom', 'left' ) as $side ) {
			$border                       = isset( $block_attributes['style']['border'][ $side ] ) ? $block_attributes['style']['border'][ $side ] : null;
			$border_side_values           = array(
				'width' => isset( $border['width'] ) && ! wp_should_skip_block_supports_serialization( $block_type, '__experimentalBorder', 'width' ) ? $border['width'] : null,
				'color' => isset( $border['color'] ) && ! wp_should_skip_block_supports_serialization( $block_type, '__experimentalBorder', 'color' ) ? $border['color'] : null,
				'style' => isset( $border['style'] ) && ! wp_should_skip_block_supports_serialization( $block_type, '__experimentalBorder', 'style' ) ? $border['style'] : null,
			);
			$border_block_styles[ $side ] = $border_side_values;
		}
	}

	// Collect classes and styles.
	$attributes = array();
	$styles     = wp_style_engine_get_styles( array( 'border' => $border_block_styles ) );

	if ( ! empty( $styles['classnames'] ) ) {
		$attributes['class'] = $styles['classnames'];
	}

	if ( ! empty( $styles['css'] ) ) {
		$attributes['style'] = $styles['css'];
	}

	return $attributes;
}

/**
 * Checks whether the current block type supports the border feature requested.
 *
 * If the `__experimentalBorder` support flag is a boolean `true` all border
 * support features are available. Otherwise, the specific feature's support
 * flag nested under `experimentalBorder` must be enabled for the feature
 * to be opted into.
 *
 * @since 5.8.0
 * @access private
 *
 * @param WP_Block_Type $block_type    Block type to check for support.
 * @param string        $feature       Name of the feature to check support for.
 * @param mixed         $default_value Fallback value for feature support, defaults to false.
 * @return bool Whether the feature is supported.
 */
function wp_has_border_feature_support( $block_type, $feature, $default_value = false ) {
	// Check if all border support features have been opted into via `"__experimentalBorder": true`.
	if ( $block_type instanceof WP_Block_Type ) {
		$block_type_supports_border = isset( $block_type->supports['__experimentalBorder'] )
			? $block_type->supports['__experimentalBorder']
			: $default_value;
		if ( true === $block_type_supports_border ) {
			return true;
		}
	}

	// Check if the specific feature has been opted into individually
	// via nested flag under `__experimentalBorder`.
	return block_has_support( $block_type, array( '__experimentalBorder', $feature ), $default_value );
}

// Register the block support.
WP_Block_Supports::get_instance()->register(
	'border',
	array(
		'register_attribute' => 'wp_register_border_support',
		'apply'              => 'wp_apply_border_support',
	)
);
block-style-variations.php000064400000022312152222511210011653 0ustar00<?php
/**
 * Block support to enable per-section styling of block types via
 * block style variations.
 *
 * @package WordPress
 * @since 6.6.0
 */

/**
 * Determines the block style variation names within a CSS class string.
 *
 * @since 6.6.0
 *
 * @param string $class_string CSS class string to look for a variation in.
 *
 * @return array|null The block style variation name if found.
 */
function wp_get_block_style_variation_name_from_class( $class_string ) {
	if ( ! is_string( $class_string ) ) {
		return null;
	}

	preg_match_all( '/\bis-style-(?!default)(\S+)\b/', $class_string, $matches );
	return $matches[1] ?? null;
}

/**
 * Recursively resolves any `ref` values within a block style variation's data.
 *
 * @since 6.6.0
 * @access private
 *
 * @param array $variation_data Reference to the variation data being processed.
 * @param array $theme_json     Theme.json data to retrieve referenced values from.
 */
function wp_resolve_block_style_variation_ref_values( &$variation_data, $theme_json ) {
	foreach ( $variation_data as $key => &$value ) {
		// Only need to potentially process arrays.
		if ( is_array( $value ) ) {
			// If ref value is set, attempt to find its matching value and update it.
			if ( array_key_exists( 'ref', $value ) ) {
				// Clean up any invalid ref value.
				if ( empty( $value['ref'] ) || ! is_string( $value['ref'] ) ) {
					unset( $variation_data[ $key ] );
				}

				$value_path = explode( '.', $value['ref'] ?? '' );
				$ref_value  = _wp_array_get( $theme_json, $value_path );

				// Only update the current value if the referenced path matched a value.
				if ( null === $ref_value ) {
					unset( $variation_data[ $key ] );
				} else {
					$value = $ref_value;
				}
			} else {
				// Recursively look for ref instances.
				wp_resolve_block_style_variation_ref_values( $value, $theme_json );
			}
		}
	}
}
/**
 * Renders the block style variation's styles.
 *
 * In the case of nested blocks with variations applied, we want the parent
 * variation's styles to be rendered before their descendants. This solves the
 * issue of a block type being styled in both the parent and descendant: we want
 * the descendant style to take priority, and this is done by loading it after,
 * in the DOM order. This is why the variation stylesheet generation is in a
 * different filter.
 *
 * @since 6.6.0
 * @access private
 *
 * @param array $parsed_block The parsed block.
 *
 * @return array The parsed block with block style variation classname added.
 */
function wp_render_block_style_variation_support_styles( $parsed_block ) {
	$classes    = $parsed_block['attrs']['className'] ?? null;
	$variations = wp_get_block_style_variation_name_from_class( $classes );

	if ( ! $variations ) {
		return $parsed_block;
	}

	$tree       = WP_Theme_JSON_Resolver::get_merged_data();
	$theme_json = $tree->get_raw_data();

	// Only the first block style variation with data is supported.
	$variation_data = array();
	foreach ( $variations as $variation ) {
		$variation_data = $theme_json['styles']['blocks'][ $parsed_block['blockName'] ]['variations'][ $variation ] ?? array();

		if ( ! empty( $variation_data ) ) {
			break;
		}
	}

	if ( empty( $variation_data ) ) {
		return $parsed_block;
	}

	/*
	 * Recursively resolve any ref values with the appropriate value within the
	 * theme_json data.
	 */
	wp_resolve_block_style_variation_ref_values( $variation_data, $theme_json );

	$variation_instance = wp_unique_id( $variation . '--' );
	$class_name         = "is-style-$variation_instance";
	$updated_class_name = $parsed_block['attrs']['className'] . " $class_name";

	/*
	 * Even though block style variations are effectively theme.json partials,
	 * they can't be processed completely as though they are.
	 *
	 * Block styles support custom selectors to direct specific types of styles
	 * to inner elements. For example, borders on Image block's get applied to
	 * the inner `img` element rather than the wrapping `figure`.
	 *
	 * The following relocates the "root" block style variation styles to
	 * under an appropriate blocks property to leverage the preexisting style
	 * generation for simple block style variations. This way they get the
	 * custom selectors they need.
	 *
	 * The inner elements and block styles for the variation itself are
	 * still included at the top level but scoped by the variation's selector
	 * when the stylesheet is generated.
	 */
	$elements_data = $variation_data['elements'] ?? array();
	$blocks_data   = $variation_data['blocks'] ?? array();
	unset( $variation_data['elements'] );
	unset( $variation_data['blocks'] );

	_wp_array_set(
		$blocks_data,
		array( $parsed_block['blockName'], 'variations', $variation_instance ),
		$variation_data
	);

	$config = array(
		'version' => WP_Theme_JSON::LATEST_SCHEMA,
		'styles'  => array(
			'elements' => $elements_data,
			'blocks'   => $blocks_data,
		),
	);

	// Turn off filter that excludes block nodes. They are needed here for the variation's inner block types.
	if ( ! is_admin() ) {
		remove_filter( 'wp_theme_json_get_style_nodes', 'wp_filter_out_block_nodes' );
	}

	// Temporarily prevent variation instance from being sanitized while processing theme.json.
	$styles_registry = WP_Block_Styles_Registry::get_instance();
	$styles_registry->register( $parsed_block['blockName'], array( 'name' => $variation_instance ) );

	$variation_theme_json = new WP_Theme_JSON( $config, 'blocks' );
	$variation_styles     = $variation_theme_json->get_stylesheet(
		array( 'styles' ),
		array( 'custom' ),
		array(
			'include_block_style_variations' => true,
			'skip_root_layout_styles'        => true,
			'scope'                          => ".$class_name",
		)
	);

	// Clean up temporary block style now instance styles have been processed.
	$styles_registry->unregister( $parsed_block['blockName'], $variation_instance );

	// Restore filter that excludes block nodes.
	if ( ! is_admin() ) {
		add_filter( 'wp_theme_json_get_style_nodes', 'wp_filter_out_block_nodes' );
	}

	if ( empty( $variation_styles ) ) {
		return $parsed_block;
	}

	wp_register_style( 'block-style-variation-styles', false, array( 'wp-block-library', 'global-styles' ) );
	wp_add_inline_style( 'block-style-variation-styles', $variation_styles );

	/*
	 * Add variation instance class name to block's className string so it can
	 * be enforced in the block markup via render_block filter.
	 */
	_wp_array_set( $parsed_block, array( 'attrs', 'className' ), $updated_class_name );

	return $parsed_block;
}

/**
 * Ensures the variation block support class name generated and added to
 * block attributes in the `render_block_data` filter gets applied to the
 * block's markup.
 *
 * @since 6.6.0
 * @access private
 *
 * @see wp_render_block_style_variation_support_styles
 *
 * @param  string $block_content Rendered block content.
 * @param  array  $block         Block object.
 *
 * @return string                Filtered block content.
 */
function wp_render_block_style_variation_class_name( $block_content, $block ) {
	if ( ! $block_content || empty( $block['attrs']['className'] ) ) {
		return $block_content;
	}

	/*
	 * Matches a class prefixed by `is-style`, followed by the
	 * variation slug, then `--`, and finally an instance number.
	 */
	preg_match( '/\bis-style-(\S+?--\d+)\b/', $block['attrs']['className'], $matches );

	if ( empty( $matches ) ) {
		return $block_content;
	}

	$tags = new WP_HTML_Tag_Processor( $block_content );

	if ( $tags->next_tag() ) {
		/*
		 * Ensure the variation instance class name set in the
		 * `render_block_data` filter is applied in markup.
		 * See `wp_render_block_style_variation_support_styles`.
		 */
		$tags->add_class( $matches[0] );
	}

	return $tags->get_updated_html();
}

/**
 * Enqueues styles for block style variations.
 *
 * @since 6.6.0
 * @access private
 */
function wp_enqueue_block_style_variation_styles() {
	wp_enqueue_style( 'block-style-variation-styles' );
}

// Register the block support.
WP_Block_Supports::get_instance()->register( 'block-style-variation', array() );

add_filter( 'render_block_data', 'wp_render_block_style_variation_support_styles', 10, 2 );
add_filter( 'render_block', 'wp_render_block_style_variation_class_name', 10, 2 );
add_action( 'wp_enqueue_scripts', 'wp_enqueue_block_style_variation_styles', 1 );

/**
 * Registers block style variations read in from theme.json partials.
 *
 * @since 6.6.0
 * @access private
 *
 * @param array $variations Shared block style variations.
 */
function wp_register_block_style_variations_from_theme_json_partials( $variations ) {
	if ( empty( $variations ) ) {
		return;
	}

	$registry = WP_Block_Styles_Registry::get_instance();

	foreach ( $variations as $variation ) {
		if ( empty( $variation['blockTypes'] ) || empty( $variation['styles'] ) ) {
			continue;
		}

		$variation_name  = $variation['slug'] ?? _wp_to_kebab_case( $variation['title'] );
		$variation_label = $variation['title'] ?? $variation_name;

		foreach ( $variation['blockTypes'] as $block_type ) {
			$registered_styles = $registry->get_registered_styles_for_block( $block_type );

			// Register block style variation if it hasn't already been registered.
			if ( ! array_key_exists( $variation_name, $registered_styles ) ) {
				register_block_style(
					$block_type,
					array(
						'name'  => $variation_name,
						'label' => $variation_label,
					)
				);
			}
		}
	}
}
colors.php000064400000013476152222511210006562 0ustar00<?php
/**
 * Colors block support flag.
 *
 * @package WordPress
 * @since 5.6.0
 */

/**
 * Registers the style and colors block attributes for block types that support it.
 *
 * @since 5.6.0
 * @since 6.1.0 Improved $color_support assignment optimization.
 * @access private
 *
 * @param WP_Block_Type $block_type Block Type.
 */
function wp_register_colors_support( $block_type ) {
	$color_support = false;
	if ( $block_type instanceof WP_Block_Type ) {
		$color_support = isset( $block_type->supports['color'] ) ? $block_type->supports['color'] : false;
	}
	$has_text_colors_support       = true === $color_support ||
		( isset( $color_support['text'] ) && $color_support['text'] ) ||
		( is_array( $color_support ) && ! isset( $color_support['text'] ) );
	$has_background_colors_support = true === $color_support ||
		( isset( $color_support['background'] ) && $color_support['background'] ) ||
		( is_array( $color_support ) && ! isset( $color_support['background'] ) );
	$has_gradients_support         = isset( $color_support['gradients'] ) ? $color_support['gradients'] : false;
	$has_link_colors_support       = isset( $color_support['link'] ) ? $color_support['link'] : false;
	$has_button_colors_support     = isset( $color_support['button'] ) ? $color_support['button'] : false;
	$has_heading_colors_support    = isset( $color_support['heading'] ) ? $color_support['heading'] : false;
	$has_color_support             = $has_text_colors_support ||
		$has_background_colors_support ||
		$has_gradients_support ||
		$has_link_colors_support ||
		$has_button_colors_support ||
		$has_heading_colors_support;

	if ( ! $block_type->attributes ) {
		$block_type->attributes = array();
	}

	if ( $has_color_support && ! array_key_exists( 'style', $block_type->attributes ) ) {
		$block_type->attributes['style'] = array(
			'type' => 'object',
		);
	}

	if ( $has_background_colors_support && ! array_key_exists( 'backgroundColor', $block_type->attributes ) ) {
		$block_type->attributes['backgroundColor'] = array(
			'type' => 'string',
		);
	}

	if ( $has_text_colors_support && ! array_key_exists( 'textColor', $block_type->attributes ) ) {
		$block_type->attributes['textColor'] = array(
			'type' => 'string',
		);
	}

	if ( $has_gradients_support && ! array_key_exists( 'gradient', $block_type->attributes ) ) {
		$block_type->attributes['gradient'] = array(
			'type' => 'string',
		);
	}
}


/**
 * Adds CSS classes and inline styles for colors to the incoming attributes array.
 * This will be applied to the block markup in the front-end.
 *
 * @since 5.6.0
 * @since 6.1.0 Implemented the style engine to generate CSS and classnames.
 * @access private
 *
 * @param  WP_Block_Type $block_type       Block type.
 * @param  array         $block_attributes Block attributes.
 *
 * @return array Colors CSS classes and inline styles.
 */
function wp_apply_colors_support( $block_type, $block_attributes ) {
	$color_support = isset( $block_type->supports['color'] ) ? $block_type->supports['color'] : false;

	if (
		is_array( $color_support ) &&
		wp_should_skip_block_supports_serialization( $block_type, 'color' )
	) {
		return array();
	}

	$has_text_colors_support       = true === $color_support ||
		( isset( $color_support['text'] ) && $color_support['text'] ) ||
		( is_array( $color_support ) && ! isset( $color_support['text'] ) );
	$has_background_colors_support = true === $color_support ||
		( isset( $color_support['background'] ) && $color_support['background'] ) ||
		( is_array( $color_support ) && ! isset( $color_support['background'] ) );
	$has_gradients_support         = isset( $color_support['gradients'] ) ? $color_support['gradients'] : false;
	$color_block_styles            = array();

	// Text colors.
	if ( $has_text_colors_support && ! wp_should_skip_block_supports_serialization( $block_type, 'color', 'text' ) ) {
		$preset_text_color          = array_key_exists( 'textColor', $block_attributes ) ? "var:preset|color|{$block_attributes['textColor']}" : null;
		$custom_text_color          = isset( $block_attributes['style']['color']['text'] ) ? $block_attributes['style']['color']['text'] : null;
		$color_block_styles['text'] = $preset_text_color ? $preset_text_color : $custom_text_color;
	}

	// Background colors.
	if ( $has_background_colors_support && ! wp_should_skip_block_supports_serialization( $block_type, 'color', 'background' ) ) {
		$preset_background_color          = array_key_exists( 'backgroundColor', $block_attributes ) ? "var:preset|color|{$block_attributes['backgroundColor']}" : null;
		$custom_background_color          = isset( $block_attributes['style']['color']['background'] ) ? $block_attributes['style']['color']['background'] : null;
		$color_block_styles['background'] = $preset_background_color ? $preset_background_color : $custom_background_color;
	}

	// Gradients.
	if ( $has_gradients_support && ! wp_should_skip_block_supports_serialization( $block_type, 'color', 'gradients' ) ) {
		$preset_gradient_color          = array_key_exists( 'gradient', $block_attributes ) ? "var:preset|gradient|{$block_attributes['gradient']}" : null;
		$custom_gradient_color          = isset( $block_attributes['style']['color']['gradient'] ) ? $block_attributes['style']['color']['gradient'] : null;
		$color_block_styles['gradient'] = $preset_gradient_color ? $preset_gradient_color : $custom_gradient_color;
	}

	$attributes = array();
	$styles     = wp_style_engine_get_styles( array( 'color' => $color_block_styles ), array( 'convert_vars_to_classnames' => true ) );

	if ( ! empty( $styles['classnames'] ) ) {
		$attributes['class'] = $styles['classnames'];
	}

	if ( ! empty( $styles['css'] ) ) {
		$attributes['style'] = $styles['css'];
	}

	return $attributes;
}

// Register the block support.
WP_Block_Supports::get_instance()->register(
	'colors',
	array(
		'register_attribute' => 'wp_register_colors_support',
		'apply'              => 'wp_apply_colors_support',
	)
);
error_log000064400001630337152222511210006467 0ustar00[17-Feb-2024 04:41:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[17-Feb-2024 04:41:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[17-Feb-2024 04:41:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[17-Feb-2024 04:41:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[17-Feb-2024 04:41:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[17-Feb-2024 04:41:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:87
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 87
[17-Feb-2024 04:41:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[17-Feb-2024 04:41:59 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:231
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 231
[17-Feb-2024 04:42:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[17-Feb-2024 04:42:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:851
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 851
[17-Feb-2024 04:42:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[17-Feb-2024 04:42:16 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[17-Feb-2024 04:42:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:76
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 76
[17-Feb-2024 04:42:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[17-Feb-2024 04:42:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:646
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 646
[17-Feb-2024 06:20:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[17-Feb-2024 06:20:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[17-Feb-2024 06:20:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[17-Feb-2024 06:20:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[17-Feb-2024 06:20:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[17-Feb-2024 06:21:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:87
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 87
[17-Feb-2024 06:21:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[17-Feb-2024 06:21:07 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:231
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 231
[17-Feb-2024 06:21:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[17-Feb-2024 06:21:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:851
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 851
[17-Feb-2024 06:21:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[17-Feb-2024 06:21:18 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[17-Feb-2024 06:21:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:76
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 76
[17-Feb-2024 06:21:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[17-Feb-2024 06:21:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:646
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 646
[21-Feb-2024 04:53:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[21-Feb-2024 04:53:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[21-Feb-2024 04:53:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[21-Feb-2024 04:54:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[21-Feb-2024 04:54:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:87
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 87
[21-Feb-2024 04:54:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:87
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 87
[21-Feb-2024 04:54:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[21-Feb-2024 04:54:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[21-Feb-2024 04:54:20 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:231
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 231
[21-Feb-2024 04:54:23 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:231
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 231
[21-Feb-2024 04:54:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:851
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 851
[21-Feb-2024 04:54:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:851
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 851
[21-Feb-2024 04:54:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[21-Feb-2024 04:54:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[21-Feb-2024 04:54:37 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[21-Feb-2024 04:54:41 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[21-Feb-2024 04:54:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:76
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 76
[21-Feb-2024 04:54:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:76
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 76
[21-Feb-2024 04:54:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[21-Feb-2024 04:54:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[02-Mar-2024 03:30:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[02-Mar-2024 03:30:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[02-Mar-2024 03:30:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[02-Mar-2024 03:30:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[02-Mar-2024 03:30:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:87
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 87
[02-Mar-2024 03:30:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:87
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 87
[02-Mar-2024 03:30:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[02-Mar-2024 03:30:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[02-Mar-2024 03:30:52 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:231
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 231
[02-Mar-2024 03:30:55 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:231
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 231
[02-Mar-2024 03:30:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:851
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 851
[02-Mar-2024 03:30:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:851
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 851
[02-Mar-2024 03:31:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[02-Mar-2024 03:31:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[02-Mar-2024 03:31:09 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[02-Mar-2024 03:31:11 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[02-Mar-2024 03:31:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:76
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 76
[02-Mar-2024 03:31:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:76
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 76
[02-Mar-2024 03:31:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[02-Mar-2024 03:31:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[24-Mar-2024 10:55:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[24-Mar-2024 10:55:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[24-Mar-2024 11:07:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[24-Mar-2024 11:07:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[31-Mar-2024 19:58:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[31-Mar-2024 19:58:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[31-Mar-2024 19:58:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[31-Mar-2024 19:58:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[31-Mar-2024 19:58:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[31-Mar-2024 19:58:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:87
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 87
[31-Mar-2024 19:58:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[31-Mar-2024 19:58:37 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:231
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 231
[31-Mar-2024 19:58:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[31-Mar-2024 19:58:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:851
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 851
[31-Mar-2024 19:58:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[31-Mar-2024 19:58:38 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[31-Mar-2024 19:58:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:76
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 76
[31-Mar-2024 19:58:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[31-Mar-2024 19:58:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:646
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 646
[01-Apr-2024 16:17:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[01-Apr-2024 16:17:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[01-Apr-2024 16:17:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[01-Apr-2024 16:17:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[01-Apr-2024 16:17:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[01-Apr-2024 16:17:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:87
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 87
[01-Apr-2024 16:17:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[01-Apr-2024 16:17:24 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:231
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 231
[01-Apr-2024 16:17:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[01-Apr-2024 16:17:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:851
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 851
[01-Apr-2024 16:17:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[01-Apr-2024 16:17:24 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[01-Apr-2024 16:17:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:76
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 76
[01-Apr-2024 16:17:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[01-Apr-2024 16:17:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:646
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 646
[02-May-2024 20:48:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[02-May-2024 20:48:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:131
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 131
[02-May-2024 20:48:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[02-May-2024 20:48:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[02-May-2024 20:48:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[02-May-2024 20:48:38 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[02-May-2024 20:48:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[02-May-2024 20:48:44 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:231
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 231
[02-May-2024 20:48:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[02-May-2024 20:48:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:855
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 855
[02-May-2024 20:48:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[02-May-2024 20:48:56 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[02-May-2024 20:49:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:75
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 75
[02-May-2024 20:49:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[02-May-2024 20:49:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:653
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 653
[06-May-2024 05:41:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[06-May-2024 05:41:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:131
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 131
[06-May-2024 05:41:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[06-May-2024 05:41:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[06-May-2024 05:41:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[06-May-2024 05:42:02 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[06-May-2024 05:42:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[06-May-2024 05:42:21 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:231
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 231
[06-May-2024 05:42:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[06-May-2024 05:42:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:855
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 855
[06-May-2024 05:42:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[06-May-2024 05:42:59 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[06-May-2024 05:43:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:75
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 75
[06-May-2024 05:43:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[06-May-2024 05:43:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:653
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 653
[11-May-2024 16:23:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[11-May-2024 16:23:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:131
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 131
[11-May-2024 16:24:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[11-May-2024 16:24:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[11-May-2024 16:24:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[11-May-2024 16:24:21 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[11-May-2024 16:24:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[11-May-2024 16:24:33 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:231
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 231
[11-May-2024 16:24:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[11-May-2024 16:24:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:855
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 855
[11-May-2024 16:24:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[11-May-2024 16:24:59 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[11-May-2024 16:25:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:75
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 75
[11-May-2024 16:25:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[11-May-2024 16:25:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:653
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 653
[12-Jul-2024 17:12:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[12-Jul-2024 17:12:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:131
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 131
[12-Jul-2024 17:13:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[12-Jul-2024 17:13:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[12-Jul-2024 17:13:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[12-Jul-2024 17:13:36 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[12-Jul-2024 17:13:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[12-Jul-2024 17:13:51 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:231
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 231
[12-Jul-2024 17:13:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[12-Jul-2024 17:14:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:855
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 855
[12-Jul-2024 17:14:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[12-Jul-2024 17:14:31 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[12-Jul-2024 17:14:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:75
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 75
[12-Jul-2024 17:15:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[12-Jul-2024 17:15:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:653
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 653
[18-Jul-2024 16:26:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[18-Jul-2024 16:26:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:131
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 131
[18-Jul-2024 16:26:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[18-Jul-2024 16:27:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[18-Jul-2024 16:27:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[18-Jul-2024 16:27:25 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[18-Jul-2024 16:27:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[18-Jul-2024 16:27:45 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:231
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 231
[18-Jul-2024 16:28:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[18-Jul-2024 16:28:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:855
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 855
[18-Jul-2024 16:28:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[18-Jul-2024 16:28:33 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[18-Jul-2024 16:28:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:75
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 75
[18-Jul-2024 16:28:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[18-Jul-2024 16:29:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:653
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 653
[22-Jul-2024 20:18:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[22-Jul-2024 20:18:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[22-Jul-2024 20:18:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:268
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 268
[22-Jul-2024 20:19:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[22-Jul-2024 20:19:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[29-Jul-2024 02:48:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[29-Jul-2024 02:48:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[29-Jul-2024 02:48:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:268
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 268
[29-Jul-2024 02:48:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[29-Jul-2024 02:48:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[29-Jul-2024 02:48:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[29-Jul-2024 02:48:48 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[29-Jul-2024 02:48:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[29-Jul-2024 02:49:00 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[29-Jul-2024 02:49:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[29-Jul-2024 02:49:09 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[29-Jul-2024 02:49:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[29-Jul-2024 02:49:16 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[29-Jul-2024 02:49:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[29-Jul-2024 02:49:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[29-Jul-2024 02:49:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:685
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 685
[07-Aug-2024 05:15:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[07-Aug-2024 05:15:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[07-Aug-2024 05:15:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:268
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 268
[07-Aug-2024 05:15:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[07-Aug-2024 05:15:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[07-Aug-2024 05:15:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[07-Aug-2024 05:15:35 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[07-Aug-2024 05:15:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[07-Aug-2024 05:15:45 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[07-Aug-2024 05:15:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[07-Aug-2024 05:15:53 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[07-Aug-2024 05:15:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[07-Aug-2024 05:16:00 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[07-Aug-2024 05:16:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[07-Aug-2024 05:16:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[07-Aug-2024 05:16:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:685
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 685
[10-Aug-2024 20:52:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[10-Aug-2024 20:52:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[10-Aug-2024 20:53:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:268
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 268
[10-Aug-2024 20:53:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[10-Aug-2024 20:53:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[10-Aug-2024 20:53:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[10-Aug-2024 20:54:16 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[10-Aug-2024 20:54:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[10-Aug-2024 20:54:34 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[10-Aug-2024 20:54:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[10-Aug-2024 20:54:50 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[10-Aug-2024 20:55:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[10-Aug-2024 20:55:08 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[10-Aug-2024 20:55:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[10-Aug-2024 20:55:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[10-Aug-2024 20:55:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:685
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 685
[02-Sep-2024 21:38:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[02-Sep-2024 21:38:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[02-Sep-2024 21:38:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:268
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 268
[02-Sep-2024 21:38:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:268
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 268
[02-Sep-2024 21:46:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[02-Sep-2024 21:46:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[02-Sep-2024 21:46:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:268
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 268
[02-Sep-2024 21:46:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:268
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 268
[08-Sep-2024 21:05:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[08-Sep-2024 21:05:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[08-Sep-2024 21:05:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:268
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 268
[08-Sep-2024 21:05:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[08-Sep-2024 21:05:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[08-Sep-2024 21:05:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[08-Sep-2024 21:05:42 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[08-Sep-2024 21:05:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[08-Sep-2024 21:05:44 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[08-Sep-2024 21:05:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[08-Sep-2024 21:05:48 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[08-Sep-2024 21:05:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[19-Sep-2024 20:16:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[19-Sep-2024 20:16:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[19-Sep-2024 20:16:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:268
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 268
[19-Sep-2024 20:16:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[19-Sep-2024 20:16:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[19-Sep-2024 20:16:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[19-Sep-2024 20:16:04 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[19-Sep-2024 20:16:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[19-Sep-2024 20:16:05 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[19-Sep-2024 20:16:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[19-Sep-2024 20:16:05 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[19-Sep-2024 20:16:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[19-Sep-2024 20:16:06 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[19-Sep-2024 20:16:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[19-Sep-2024 20:16:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[19-Sep-2024 20:16:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:685
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 685
[23-Oct-2024 10:22:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[23-Oct-2024 10:22:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[23-Oct-2024 10:22:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:268
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 268
[23-Oct-2024 10:23:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:268
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 268
[23-Oct-2024 10:23:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[23-Oct-2024 10:23:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[23-Oct-2024 10:23:11 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[23-Oct-2024 10:23:13 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[23-Oct-2024 10:23:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[23-Oct-2024 10:23:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[23-Oct-2024 10:23:18 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[23-Oct-2024 10:23:19 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[23-Oct-2024 10:23:29 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[23-Oct-2024 10:23:36 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[23-Oct-2024 10:23:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[23-Oct-2024 10:23:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[23-Oct-2024 10:23:52 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[23-Oct-2024 10:23:55 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[23-Oct-2024 10:24:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[23-Oct-2024 10:24:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[23-Oct-2024 10:24:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[23-Oct-2024 10:24:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[27-Oct-2024 02:01:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[27-Oct-2024 02:01:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[27-Oct-2024 02:01:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[27-Oct-2024 02:01:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[27-Oct-2024 02:01:38 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[27-Oct-2024 02:01:40 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[27-Oct-2024 02:01:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[27-Oct-2024 02:01:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[27-Oct-2024 02:01:49 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[27-Oct-2024 02:01:57 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[27-Oct-2024 02:02:02 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[27-Oct-2024 02:02:07 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[27-Oct-2024 02:02:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[27-Oct-2024 02:02:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[27-Oct-2024 02:02:21 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[27-Oct-2024 02:02:26 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[27-Oct-2024 02:02:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[27-Oct-2024 02:02:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[27-Oct-2024 02:02:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[27-Oct-2024 02:02:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[29-Oct-2024 17:02:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[29-Oct-2024 17:02:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[29-Oct-2024 17:02:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[29-Oct-2024 17:02:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[29-Oct-2024 17:02:19 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[29-Oct-2024 17:02:19 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[29-Oct-2024 17:02:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[29-Oct-2024 17:02:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[29-Oct-2024 17:02:20 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[29-Oct-2024 17:02:21 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[29-Oct-2024 17:02:21 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[29-Oct-2024 17:02:22 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[29-Oct-2024 17:02:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[29-Oct-2024 17:02:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[29-Oct-2024 17:02:23 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[29-Oct-2024 17:02:24 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[29-Oct-2024 17:02:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[29-Oct-2024 17:02:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[29-Oct-2024 17:02:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[29-Oct-2024 17:02:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[10-Nov-2024 09:10:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[10-Nov-2024 09:10:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[10-Nov-2024 09:10:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:268
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 268
[10-Nov-2024 09:10:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[10-Nov-2024 09:11:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[10-Nov-2024 09:11:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[10-Nov-2024 09:11:18 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[10-Nov-2024 09:11:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[10-Nov-2024 09:11:38 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[10-Nov-2024 09:11:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[10-Nov-2024 09:11:56 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[10-Nov-2024 09:12:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[10-Nov-2024 09:12:30 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[10-Nov-2024 09:12:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[10-Nov-2024 09:12:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[10-Nov-2024 09:13:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:685
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 685
[13-Nov-2024 09:48:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:685
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 685
[13-Nov-2024 09:48:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[13-Nov-2024 09:48:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:268
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 268
[13-Nov-2024 09:48:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[13-Nov-2024 09:48:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[13-Nov-2024 09:48:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[13-Nov-2024 09:48:45 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[13-Nov-2024 09:48:46 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[13-Nov-2024 09:48:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[13-Nov-2024 09:48:48 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[13-Nov-2024 09:48:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[13-Nov-2024 09:48:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[13-Nov-2024 09:48:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[13-Nov-2024 09:48:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[13-Nov-2024 09:48:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[13-Nov-2024 22:21:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[13-Nov-2024 22:22:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[13-Nov-2024 22:22:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:268
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 268
[13-Nov-2024 22:22:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:268
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 268
[13-Nov-2024 22:22:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[13-Nov-2024 22:22:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[13-Nov-2024 22:22:25 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[13-Nov-2024 22:22:29 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[13-Nov-2024 22:22:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[13-Nov-2024 22:22:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[13-Nov-2024 22:22:43 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[13-Nov-2024 22:22:46 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[13-Nov-2024 22:22:50 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[13-Nov-2024 22:22:53 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[13-Nov-2024 22:22:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[13-Nov-2024 22:23:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[13-Nov-2024 22:23:08 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[13-Nov-2024 22:23:10 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[13-Nov-2024 22:23:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[13-Nov-2024 22:23:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[13-Nov-2024 22:23:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[13-Nov-2024 22:23:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[16-Nov-2024 04:31:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[16-Nov-2024 04:31:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[16-Nov-2024 04:31:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[16-Nov-2024 04:31:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[16-Nov-2024 04:31:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[16-Nov-2024 04:31:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[16-Nov-2024 04:31:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[16-Nov-2024 04:31:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[16-Nov-2024 04:31:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[16-Nov-2024 04:31:44 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[16-Nov-2024 04:31:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[16-Nov-2024 04:31:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[16-Nov-2024 04:31:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[16-Nov-2024 04:31:46 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[16-Nov-2024 04:31:47 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[17-Nov-2024 02:04:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[17-Nov-2024 02:04:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[17-Nov-2024 02:04:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[17-Nov-2024 02:04:14 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[17-Nov-2024 02:04:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[17-Nov-2024 02:04:15 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[17-Nov-2024 02:04:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[17-Nov-2024 02:04:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[17-Nov-2024 02:04:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[17-Nov-2024 02:04:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[17-Nov-2024 02:04:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[17-Nov-2024 02:04:17 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[17-Nov-2024 02:04:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[17-Nov-2024 02:04:19 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[17-Nov-2024 02:04:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[17-Nov-2024 02:04:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[19-Nov-2024 00:26:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[19-Nov-2024 00:26:52 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[19-Nov-2024 00:26:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[19-Nov-2024 00:26:53 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[19-Nov-2024 00:26:53 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[19-Nov-2024 00:26:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[19-Nov-2024 00:26:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[19-Nov-2024 00:26:55 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[19-Nov-2024 00:26:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[19-Nov-2024 00:26:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[19-Nov-2024 00:26:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[19-Nov-2024 00:26:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[19-Nov-2024 00:26:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[19-Nov-2024 00:27:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[19-Nov-2024 00:27:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[19-Nov-2024 00:27:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[26-Nov-2024 14:04:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[26-Nov-2024 14:04:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[26-Nov-2024 14:04:40 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[26-Nov-2024 14:04:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[26-Nov-2024 14:04:49 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[26-Nov-2024 14:04:53 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[26-Nov-2024 14:04:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[26-Nov-2024 14:05:03 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[26-Nov-2024 14:05:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[26-Nov-2024 14:05:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[08-Dec-2024 16:13:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[08-Dec-2024 16:13:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[08-Dec-2024 16:13:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[08-Dec-2024 16:13:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[08-Dec-2024 16:13:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[08-Dec-2024 16:13:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[08-Dec-2024 16:13:35 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[08-Dec-2024 16:13:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[08-Dec-2024 16:13:46 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[08-Dec-2024 16:13:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[08-Dec-2024 16:13:57 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[08-Dec-2024 16:14:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[08-Dec-2024 16:14:09 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[08-Dec-2024 16:14:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[08-Dec-2024 16:14:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[08-Dec-2024 16:14:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[14-Dec-2024 08:32:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[14-Dec-2024 08:32:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[14-Dec-2024 08:32:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[14-Dec-2024 08:32:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[14-Dec-2024 08:32:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[14-Dec-2024 08:32:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[14-Dec-2024 08:32:23 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[14-Dec-2024 08:32:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[14-Dec-2024 08:32:24 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[14-Dec-2024 08:32:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[14-Dec-2024 08:32:26 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[14-Dec-2024 08:32:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[14-Dec-2024 08:32:28 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[14-Dec-2024 08:32:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[14-Dec-2024 08:32:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[14-Dec-2024 08:32:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[16-Jan-2025 06:56:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[16-Jan-2025 06:56:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[16-Jan-2025 06:56:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[16-Jan-2025 06:56:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[16-Jan-2025 06:56:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[16-Jan-2025 06:56:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[16-Jan-2025 06:56:42 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[16-Jan-2025 06:56:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[16-Jan-2025 06:56:42 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[16-Jan-2025 06:56:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[16-Jan-2025 06:56:43 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[16-Jan-2025 06:56:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[16-Jan-2025 06:56:44 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[16-Jan-2025 06:56:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[16-Jan-2025 06:56:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[16-Jan-2025 06:56:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[17-Jan-2025 13:07:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[17-Jan-2025 13:07:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[17-Jan-2025 13:07:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[17-Jan-2025 13:07:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[17-Jan-2025 13:07:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[17-Jan-2025 13:07:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[17-Jan-2025 13:07:29 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[17-Jan-2025 13:07:30 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[17-Jan-2025 13:07:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[17-Jan-2025 13:07:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[17-Jan-2025 13:07:34 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[17-Jan-2025 13:07:39 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[17-Jan-2025 13:07:41 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[17-Jan-2025 13:07:43 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[17-Jan-2025 13:07:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[17-Jan-2025 13:07:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[17-Jan-2025 13:07:54 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[17-Jan-2025 13:08:01 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[17-Jan-2025 13:08:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[17-Jan-2025 13:08:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[17-Jan-2025 13:08:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[17-Jan-2025 13:08:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[27-Jan-2025 02:01:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[27-Jan-2025 02:01:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[27-Jan-2025 02:01:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[27-Jan-2025 02:01:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[27-Jan-2025 02:01:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[27-Jan-2025 02:01:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[27-Jan-2025 02:01:26 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[27-Jan-2025 02:01:28 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[27-Jan-2025 02:01:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[27-Jan-2025 02:01:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[27-Jan-2025 02:01:40 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[27-Jan-2025 02:01:43 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[27-Jan-2025 02:01:47 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[27-Jan-2025 02:01:50 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[27-Jan-2025 02:01:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[27-Jan-2025 02:01:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[27-Jan-2025 02:02:01 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[27-Jan-2025 02:02:04 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[27-Jan-2025 02:02:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[27-Jan-2025 02:02:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[27-Jan-2025 02:02:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[27-Jan-2025 02:02:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[02-Feb-2025 01:52:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[02-Feb-2025 01:52:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[02-Feb-2025 01:52:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[02-Feb-2025 01:52:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[02-Feb-2025 01:52:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[02-Feb-2025 01:52:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[02-Feb-2025 01:53:04 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[02-Feb-2025 01:53:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[02-Feb-2025 01:53:04 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[02-Feb-2025 01:53:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[02-Feb-2025 01:53:05 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[02-Feb-2025 01:53:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[02-Feb-2025 01:53:05 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[02-Feb-2025 01:53:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[02-Feb-2025 01:53:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[02-Feb-2025 01:53:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[22-Feb-2025 06:17:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[22-Feb-2025 06:17:05 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[22-Feb-2025 06:17:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[22-Feb-2025 06:17:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[22-Feb-2025 06:17:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[22-Feb-2025 06:17:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[22-Feb-2025 06:17:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[22-Feb-2025 06:17:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[22-Feb-2025 06:17:08 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[22-Feb-2025 06:17:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[22-Feb-2025 06:17:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[22-Feb-2025 06:17:09 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[22-Feb-2025 06:17:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[22-Feb-2025 06:17:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[22-Feb-2025 06:17:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[22-Feb-2025 06:17:10 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[11-Mar-2025 11:10:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[11-Mar-2025 11:10:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[11-Mar-2025 11:10:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[11-Mar-2025 11:10:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[11-Mar-2025 11:10:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[11-Mar-2025 11:11:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[11-Mar-2025 11:11:19 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[11-Mar-2025 11:11:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[11-Mar-2025 11:11:54 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[11-Mar-2025 11:12:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[11-Mar-2025 11:12:47 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[11-Mar-2025 11:12:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[11-Mar-2025 11:12:56 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[11-Mar-2025 11:13:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[11-Mar-2025 11:13:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[11-Mar-2025 11:13:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[29-Mar-2025 10:04:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[29-Mar-2025 10:04:22 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[29-Mar-2025 10:04:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[29-Mar-2025 10:04:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[29-Mar-2025 10:04:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[29-Mar-2025 10:04:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[29-Mar-2025 10:04:30 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:945
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 945
[29-Mar-2025 10:04:31 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[29-Mar-2025 10:04:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[29-Mar-2025 10:04:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[29-Mar-2025 10:04:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[29-Mar-2025 10:04:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[29-Mar-2025 10:04:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[29-Mar-2025 10:04:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[29-Mar-2025 10:04:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[29-Mar-2025 10:04:39 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[20-Apr-2025 03:59:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[20-Apr-2025 03:59:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[20-Apr-2025 03:59:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[20-Apr-2025 03:59:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[20-Apr-2025 03:59:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[20-Apr-2025 04:00:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[20-Apr-2025 04:00:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[20-Apr-2025 04:00:18 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[20-Apr-2025 04:00:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[20-Apr-2025 04:00:30 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[20-Apr-2025 04:00:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[20-Apr-2025 04:00:40 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[20-Apr-2025 04:00:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[20-Apr-2025 04:00:47 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[20-Apr-2025 04:00:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[20-Apr-2025 04:00:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[20-Apr-2025 04:01:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[13-May-2025 09:55:47 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[13-May-2025 09:55:47 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[13-May-2025 09:55:48 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[13-May-2025 09:55:51 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[13-May-2025 09:55:51 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[13-May-2025 09:55:51 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[13-May-2025 09:55:52 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[13-May-2025 09:55:55 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[13-May-2025 09:55:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[13-May-2025 09:55:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[13-May-2025 09:55:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[13-May-2025 09:55:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[13-May-2025 09:55:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[13-May-2025 09:55:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[13-May-2025 09:56:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[13-May-2025 09:56:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[13-May-2025 09:56:03 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[13-May-2025 09:56:03 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[13-May-2025 09:56:04 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[13-May-2025 09:56:06 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[13-May-2025 09:56:07 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[13-May-2025 09:56:07 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[13-May-2025 09:56:08 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[13-May-2025 09:56:10 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[13-May-2025 09:56:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[13-May-2025 09:56:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[13-May-2025 09:56:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[13-May-2025 09:56:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[13-May-2025 09:56:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[13-May-2025 09:56:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[13-May-2025 09:56:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[13-May-2025 09:56:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[13-May-2025 09:56:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[13-May-2025 09:56:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[13-May-2025 09:56:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[13-May-2025 09:56:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[13-May-2025 09:56:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[13-May-2025 09:56:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[13-May-2025 09:56:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[13-May-2025 09:56:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[13-May-2025 09:56:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[13-May-2025 09:56:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[13-May-2025 09:56:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[13-May-2025 09:56:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[13-May-2025 09:56:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[13-May-2025 09:56:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[13-May-2025 09:56:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[13-May-2025 09:56:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[13-May-2025 09:56:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[13-May-2025 09:56:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[13-May-2025 09:56:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[13-May-2025 09:56:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[13-May-2025 09:56:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[13-May-2025 09:56:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[13-May-2025 09:56:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[13-May-2025 09:56:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[13-May-2025 09:56:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[13-May-2025 09:56:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[13-May-2025 09:56:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[13-May-2025 09:56:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[13-May-2025 09:56:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[13-May-2025 09:56:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[13-May-2025 09:56:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[13-May-2025 09:56:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[13-May-2025 09:56:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[13-May-2025 09:56:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[13-May-2025 09:56:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[13-May-2025 09:56:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[14-May-2025 12:05:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[14-May-2025 12:05:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[14-May-2025 12:05:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[14-May-2025 12:05:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[14-May-2025 12:05:04 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[14-May-2025 12:05:04 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[14-May-2025 12:05:06 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[14-May-2025 12:05:08 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[14-May-2025 12:05:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[14-May-2025 12:05:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[14-May-2025 12:05:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[14-May-2025 12:05:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[14-May-2025 12:05:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[14-May-2025 12:05:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[14-May-2025 12:05:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[14-May-2025 12:05:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[14-May-2025 12:05:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[14-May-2025 12:05:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[14-May-2025 12:05:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[14-May-2025 12:05:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[14-May-2025 12:05:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[14-May-2025 12:05:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[14-May-2025 12:05:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[14-May-2025 12:05:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[14-May-2025 12:05:22 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[14-May-2025 12:05:22 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[14-May-2025 12:05:24 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[14-May-2025 12:05:26 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[14-May-2025 12:05:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[14-May-2025 12:05:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[14-May-2025 12:05:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[14-May-2025 12:05:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[14-May-2025 12:05:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[14-May-2025 12:05:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[14-May-2025 12:05:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[14-May-2025 12:05:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[14-May-2025 12:05:33 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[14-May-2025 12:05:33 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[14-May-2025 12:05:34 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[14-May-2025 12:05:36 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[14-May-2025 12:05:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[14-May-2025 12:05:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[14-May-2025 12:05:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[14-May-2025 12:05:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[14-May-2025 12:05:40 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[14-May-2025 12:05:40 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[14-May-2025 12:05:41 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[14-May-2025 12:05:43 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[14-May-2025 12:05:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[14-May-2025 12:05:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[14-May-2025 12:05:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[14-May-2025 12:05:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[14-May-2025 12:05:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[14-May-2025 12:05:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[14-May-2025 12:05:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[14-May-2025 12:05:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[14-May-2025 12:05:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[14-May-2025 12:05:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[14-May-2025 12:05:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[14-May-2025 12:05:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[14-May-2025 12:05:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[14-May-2025 12:05:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[14-May-2025 12:05:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[14-May-2025 12:05:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[14-May-2025 12:05:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[14-May-2025 12:05:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[14-May-2025 12:05:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[14-May-2025 12:06:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[14-May-2025 14:32:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[14-May-2025 14:32:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[14-May-2025 14:32:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[14-May-2025 14:32:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[14-May-2025 14:32:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[14-May-2025 14:32:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[14-May-2025 14:32:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[14-May-2025 14:32:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[14-May-2025 14:32:27 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[14-May-2025 14:32:27 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[14-May-2025 14:32:28 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[14-May-2025 14:32:30 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[14-May-2025 14:32:30 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[14-May-2025 14:32:31 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[14-May-2025 14:32:32 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[14-May-2025 14:32:34 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[14-May-2025 14:32:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[14-May-2025 14:32:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[14-May-2025 14:32:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[14-May-2025 14:32:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[14-May-2025 14:32:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[14-May-2025 14:32:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[14-May-2025 14:32:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[14-May-2025 14:32:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[14-May-2025 14:32:41 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[14-May-2025 14:32:41 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[14-May-2025 14:32:42 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[14-May-2025 14:32:44 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[14-May-2025 14:32:45 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[14-May-2025 14:32:45 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[14-May-2025 14:32:46 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[14-May-2025 14:32:48 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[14-May-2025 14:32:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[14-May-2025 14:32:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[14-May-2025 14:32:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[14-May-2025 14:32:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[14-May-2025 14:32:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[14-May-2025 14:32:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[14-May-2025 14:32:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[14-May-2025 14:32:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[14-May-2025 14:32:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[14-May-2025 14:32:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[14-May-2025 14:32:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[14-May-2025 14:32:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[14-May-2025 14:32:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[14-May-2025 14:32:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[14-May-2025 14:33:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[14-May-2025 14:33:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[14-May-2025 14:33:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[14-May-2025 14:33:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[14-May-2025 14:33:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[14-May-2025 14:33:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[14-May-2025 14:33:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[14-May-2025 14:33:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[14-May-2025 14:33:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[14-May-2025 14:33:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[14-May-2025 14:33:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[14-May-2025 14:33:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[14-May-2025 14:33:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[14-May-2025 14:33:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[14-May-2025 14:33:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[14-May-2025 14:33:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[14-May-2025 14:33:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[14-May-2025 14:33:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[14-May-2025 14:33:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[14-May-2025 14:33:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[14-May-2025 14:33:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[14-May-2025 14:33:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[18-Jun-2025 16:52:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[18-Jun-2025 16:52:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[18-Jun-2025 16:52:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[18-Jun-2025 16:52:53 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[18-Jun-2025 16:52:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[18-Jun-2025 16:52:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[18-Jun-2025 16:52:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[18-Jun-2025 16:52:55 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[18-Jun-2025 16:52:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[18-Jun-2025 16:52:55 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[18-Jun-2025 16:52:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[18-Jun-2025 16:52:56 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[01-Jul-2025 14:17:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[01-Jul-2025 14:17:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[01-Jul-2025 14:17:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[01-Jul-2025 14:17:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[01-Jul-2025 14:17:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[01-Jul-2025 14:17:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[01-Jul-2025 14:17:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[01-Jul-2025 14:17:54 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[01-Jul-2025 14:17:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[01-Jul-2025 14:17:58 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[01-Jul-2025 14:18:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[01-Jul-2025 14:18:01 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[01-Jul-2025 14:18:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[01-Jul-2025 14:18:04 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[01-Jul-2025 14:18:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[01-Jul-2025 14:18:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[01-Jul-2025 14:18:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[19-Jul-2025 09:23:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[19-Jul-2025 09:23:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[19-Jul-2025 09:23:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[19-Jul-2025 09:23:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[19-Jul-2025 09:23:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[19-Jul-2025 09:23:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[19-Jul-2025 09:23:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[19-Jul-2025 09:23:30 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[19-Jul-2025 09:23:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[19-Jul-2025 09:23:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[19-Jul-2025 09:23:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[19-Jul-2025 09:23:36 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[19-Jul-2025 09:23:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[19-Jul-2025 09:23:43 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[19-Jul-2025 09:23:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[19-Jul-2025 09:23:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[19-Jul-2025 09:23:51 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[08-Aug-2025 10:17:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[08-Aug-2025 10:17:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[08-Aug-2025 10:17:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[08-Aug-2025 10:17:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[08-Aug-2025 10:17:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[08-Aug-2025 10:17:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[08-Aug-2025 10:17:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[08-Aug-2025 10:17:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[08-Aug-2025 10:18:05 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[08-Aug-2025 10:18:12 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[08-Aug-2025 10:18:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[08-Aug-2025 10:18:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[08-Aug-2025 10:18:31 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[08-Aug-2025 10:18:37 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[08-Aug-2025 10:18:45 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[08-Aug-2025 10:18:50 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[08-Aug-2025 10:18:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[08-Aug-2025 10:19:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[08-Aug-2025 10:19:10 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[08-Aug-2025 10:19:17 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[08-Aug-2025 10:19:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[08-Aug-2025 10:19:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[08-Aug-2025 10:19:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[08-Aug-2025 10:19:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[14-Aug-2025 04:44:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[14-Aug-2025 04:44:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[14-Aug-2025 04:44:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[14-Aug-2025 04:44:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[14-Aug-2025 04:44:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[14-Aug-2025 04:44:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[14-Aug-2025 04:44:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[14-Aug-2025 04:44:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[14-Aug-2025 04:44:48 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[14-Aug-2025 04:44:50 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[14-Aug-2025 04:44:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[14-Aug-2025 04:44:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[14-Aug-2025 04:45:02 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[14-Aug-2025 04:45:08 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[14-Aug-2025 04:45:11 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[14-Aug-2025 04:45:15 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[14-Aug-2025 04:45:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[14-Aug-2025 04:45:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[14-Aug-2025 04:45:26 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[14-Aug-2025 04:45:29 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[14-Aug-2025 04:45:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[14-Aug-2025 04:45:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[14-Aug-2025 04:45:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[14-Aug-2025 04:45:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[20-Aug-2025 23:22:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[20-Aug-2025 23:22:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[20-Aug-2025 23:22:05 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[20-Aug-2025 23:22:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[20-Aug-2025 23:22:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[20-Aug-2025 23:22:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[20-Aug-2025 23:22:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[20-Aug-2025 23:22:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[20-Aug-2025 23:22:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[20-Aug-2025 23:22:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[20-Aug-2025 23:22:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[20-Aug-2025 23:22:09 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[20-Aug-2025 23:22:10 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[20-Aug-2025 23:22:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[20-Aug-2025 23:22:12 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[20-Aug-2025 23:22:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[20-Aug-2025 23:22:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[21-Aug-2025 21:17:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[21-Aug-2025 21:17:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[21-Aug-2025 21:17:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[21-Aug-2025 21:18:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[21-Aug-2025 21:18:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[21-Aug-2025 21:18:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[21-Aug-2025 21:18:36 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[21-Aug-2025 21:18:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[21-Aug-2025 21:18:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[21-Aug-2025 21:19:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[21-Aug-2025 21:19:10 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[21-Aug-2025 21:19:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[21-Aug-2025 21:19:21 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[21-Aug-2025 21:19:27 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[21-Aug-2025 21:19:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[21-Aug-2025 21:19:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[21-Aug-2025 21:19:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[22-Aug-2025 20:31:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[22-Aug-2025 20:31:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[22-Aug-2025 20:31:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[22-Aug-2025 20:31:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[22-Aug-2025 20:31:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[22-Aug-2025 20:31:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[22-Aug-2025 20:31:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[22-Aug-2025 20:31:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[22-Aug-2025 20:31:37 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[22-Aug-2025 20:31:38 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[22-Aug-2025 20:31:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[22-Aug-2025 20:31:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[22-Aug-2025 20:31:44 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[22-Aug-2025 20:31:45 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[22-Aug-2025 20:31:47 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[22-Aug-2025 20:31:48 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[22-Aug-2025 20:31:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[22-Aug-2025 20:31:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[22-Aug-2025 20:31:53 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[22-Aug-2025 20:31:55 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[22-Aug-2025 20:31:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[22-Aug-2025 20:31:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[22-Aug-2025 20:32:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[22-Aug-2025 20:32:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[26-Aug-2025 06:21:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[26-Aug-2025 06:21:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[26-Aug-2025 06:21:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[26-Aug-2025 06:21:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[26-Aug-2025 06:21:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[26-Aug-2025 06:21:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[26-Aug-2025 06:21:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[26-Aug-2025 06:21:04 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[26-Aug-2025 06:21:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[26-Aug-2025 06:21:06 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[26-Aug-2025 06:21:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[26-Aug-2025 06:21:07 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[26-Aug-2025 06:21:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[26-Aug-2025 06:21:08 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[26-Aug-2025 06:21:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[26-Aug-2025 06:21:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[26-Aug-2025 06:21:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[26-Aug-2025 06:33:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[26-Aug-2025 06:33:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[26-Aug-2025 06:33:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[26-Aug-2025 06:33:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[26-Aug-2025 06:33:03 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[26-Aug-2025 06:33:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[26-Aug-2025 06:33:04 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[26-Aug-2025 06:33:04 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[26-Aug-2025 06:33:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[26-Aug-2025 06:33:05 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[26-Aug-2025 06:33:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[26-Aug-2025 06:33:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[27-Aug-2025 12:12:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[27-Aug-2025 12:12:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[27-Aug-2025 12:13:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[27-Aug-2025 12:13:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[27-Aug-2025 12:13:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[27-Aug-2025 12:14:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[27-Aug-2025 12:14:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[27-Aug-2025 12:15:01 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[27-Aug-2025 12:15:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[27-Aug-2025 12:16:23 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[27-Aug-2025 12:16:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[27-Aug-2025 12:16:37 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[27-Aug-2025 12:17:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[27-Aug-2025 12:17:08 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[27-Aug-2025 12:17:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[27-Aug-2025 12:17:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[27-Aug-2025 12:17:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[27-Aug-2025 14:57:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[27-Aug-2025 14:57:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[27-Aug-2025 14:58:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[27-Aug-2025 14:58:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[27-Aug-2025 14:58:46 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[27-Aug-2025 14:58:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[27-Aug-2025 14:59:19 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[27-Aug-2025 14:59:19 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[27-Aug-2025 14:59:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[27-Aug-2025 15:00:19 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[27-Aug-2025 15:00:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[27-Aug-2025 15:01:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[04-Sep-2025 00:32:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[04-Sep-2025 00:33:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[04-Sep-2025 00:33:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[04-Sep-2025 00:33:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[04-Sep-2025 00:33:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[04-Sep-2025 00:33:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[04-Sep-2025 00:33:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[04-Sep-2025 00:33:09 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[04-Sep-2025 00:33:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[04-Sep-2025 00:33:09 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[04-Sep-2025 00:33:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[04-Sep-2025 00:33:12 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[04-Sep-2025 00:33:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[04-Sep-2025 00:33:12 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[04-Sep-2025 00:33:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[04-Sep-2025 00:33:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[04-Sep-2025 00:33:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[04-Sep-2025 00:56:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[04-Sep-2025 00:56:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[04-Sep-2025 00:56:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[04-Sep-2025 00:56:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[04-Sep-2025 00:56:30 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[04-Sep-2025 00:56:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[04-Sep-2025 00:56:36 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[04-Sep-2025 00:56:37 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[04-Sep-2025 00:56:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[04-Sep-2025 00:56:37 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[04-Sep-2025 00:56:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[04-Sep-2025 00:56:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[06-Sep-2025 01:51:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[06-Sep-2025 01:51:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[06-Sep-2025 01:51:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[06-Sep-2025 01:51:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[06-Sep-2025 01:51:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[06-Sep-2025 01:51:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[06-Sep-2025 01:51:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[06-Sep-2025 01:51:08 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[06-Sep-2025 01:51:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[06-Sep-2025 01:51:08 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[06-Sep-2025 01:51:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[06-Sep-2025 01:51:09 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[06-Sep-2025 01:51:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[06-Sep-2025 01:51:10 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[06-Sep-2025 01:51:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[06-Sep-2025 01:51:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[06-Sep-2025 01:51:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[06-Sep-2025 02:01:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[06-Sep-2025 02:01:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[06-Sep-2025 02:01:20 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[06-Sep-2025 02:01:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[06-Sep-2025 02:01:22 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[06-Sep-2025 02:01:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[06-Sep-2025 02:01:22 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[06-Sep-2025 02:01:23 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[06-Sep-2025 02:01:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[06-Sep-2025 02:01:23 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[06-Sep-2025 02:01:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[06-Sep-2025 02:01:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[09-Sep-2025 17:36:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[09-Sep-2025 17:36:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[09-Sep-2025 17:36:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[09-Sep-2025 17:36:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[09-Sep-2025 17:36:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[09-Sep-2025 17:37:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[09-Sep-2025 17:37:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[09-Sep-2025 17:37:02 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[09-Sep-2025 17:37:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[09-Sep-2025 17:37:06 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[09-Sep-2025 17:37:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[09-Sep-2025 17:37:07 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[09-Sep-2025 17:37:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[09-Sep-2025 17:37:08 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[09-Sep-2025 17:37:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[09-Sep-2025 17:37:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[09-Sep-2025 17:37:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[09-Sep-2025 17:52:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[09-Sep-2025 17:52:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[09-Sep-2025 17:52:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[09-Sep-2025 17:52:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[09-Sep-2025 17:52:55 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[09-Sep-2025 17:52:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[09-Sep-2025 17:52:56 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[09-Sep-2025 17:52:57 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[09-Sep-2025 17:52:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[09-Sep-2025 17:52:57 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[09-Sep-2025 17:53:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[09-Sep-2025 17:53:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[14-Sep-2025 15:04:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[14-Sep-2025 15:04:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[14-Sep-2025 15:04:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[14-Sep-2025 15:04:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[14-Sep-2025 15:04:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[14-Sep-2025 15:04:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[14-Sep-2025 15:04:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[14-Sep-2025 15:04:23 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[14-Sep-2025 15:04:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[14-Sep-2025 15:04:27 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[14-Sep-2025 15:04:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[14-Sep-2025 15:04:28 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[14-Sep-2025 15:04:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[14-Sep-2025 15:04:28 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[14-Sep-2025 15:04:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[14-Sep-2025 15:04:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[14-Sep-2025 15:04:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[14-Sep-2025 15:14:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[14-Sep-2025 15:14:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[14-Sep-2025 15:14:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[14-Sep-2025 15:14:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[14-Sep-2025 15:14:23 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[14-Sep-2025 15:14:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[14-Sep-2025 15:14:24 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[14-Sep-2025 15:14:24 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[14-Sep-2025 15:14:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[14-Sep-2025 15:14:25 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[14-Sep-2025 15:14:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[14-Sep-2025 15:14:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[18-Sep-2025 16:56:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[18-Sep-2025 16:56:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[18-Sep-2025 16:56:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[18-Sep-2025 16:56:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[18-Sep-2025 16:56:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[18-Sep-2025 16:56:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[18-Sep-2025 16:56:37 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[18-Sep-2025 16:56:39 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[18-Sep-2025 16:56:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[18-Sep-2025 16:56:45 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[18-Sep-2025 16:56:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[18-Sep-2025 16:56:46 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[18-Sep-2025 16:56:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[18-Sep-2025 16:56:48 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[18-Sep-2025 16:56:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[18-Sep-2025 16:56:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[18-Sep-2025 16:56:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[18-Sep-2025 17:12:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[18-Sep-2025 17:12:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[18-Sep-2025 17:12:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[18-Sep-2025 17:12:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[18-Sep-2025 17:12:15 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[18-Sep-2025 17:12:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[18-Sep-2025 17:12:16 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[18-Sep-2025 17:12:17 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[18-Sep-2025 17:12:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[18-Sep-2025 17:12:17 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[18-Sep-2025 17:12:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[18-Sep-2025 17:12:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[19-Sep-2025 06:26:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[19-Sep-2025 06:26:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[19-Sep-2025 06:26:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[19-Sep-2025 06:26:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[19-Sep-2025 06:26:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[19-Sep-2025 06:26:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[19-Sep-2025 06:26:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[19-Sep-2025 06:26:55 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[19-Sep-2025 06:26:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[19-Sep-2025 06:27:01 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[19-Sep-2025 06:27:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[19-Sep-2025 06:27:05 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[19-Sep-2025 06:27:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[19-Sep-2025 06:27:07 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[19-Sep-2025 06:27:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[19-Sep-2025 06:27:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[19-Sep-2025 06:27:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[19-Sep-2025 06:43:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[19-Sep-2025 06:43:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[19-Sep-2025 06:43:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[19-Sep-2025 06:43:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[19-Sep-2025 06:43:52 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[19-Sep-2025 06:43:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[19-Sep-2025 06:43:52 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[19-Sep-2025 06:43:54 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[19-Sep-2025 06:43:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[19-Sep-2025 06:43:55 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[19-Sep-2025 06:43:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[19-Sep-2025 06:43:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[22-Sep-2025 12:34:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[22-Sep-2025 12:34:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[22-Sep-2025 12:34:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[22-Sep-2025 12:34:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[22-Sep-2025 12:34:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[22-Sep-2025 12:34:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[22-Sep-2025 12:34:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[22-Sep-2025 12:34:19 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[22-Sep-2025 12:34:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[22-Sep-2025 12:34:21 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[22-Sep-2025 12:34:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[22-Sep-2025 12:34:22 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[22-Sep-2025 12:34:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[22-Sep-2025 12:34:23 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[22-Sep-2025 12:34:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[22-Sep-2025 12:34:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[22-Sep-2025 12:34:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[22-Sep-2025 12:54:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[22-Sep-2025 12:54:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[22-Sep-2025 12:54:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[22-Sep-2025 12:54:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[22-Sep-2025 12:54:27 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[22-Sep-2025 12:54:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[22-Sep-2025 12:54:28 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[22-Sep-2025 12:54:28 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[22-Sep-2025 12:54:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[22-Sep-2025 12:54:30 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[22-Sep-2025 12:54:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[22-Sep-2025 12:54:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[25-Sep-2025 21:53:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[25-Sep-2025 21:53:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[25-Sep-2025 21:53:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[25-Sep-2025 21:53:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[25-Sep-2025 21:53:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[25-Sep-2025 21:53:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[25-Sep-2025 21:53:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[25-Sep-2025 21:53:37 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[25-Sep-2025 21:53:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[25-Sep-2025 21:53:38 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[25-Sep-2025 21:53:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[25-Sep-2025 21:53:39 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[25-Sep-2025 21:53:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[25-Sep-2025 21:53:39 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[25-Sep-2025 21:53:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[25-Sep-2025 21:53:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[25-Sep-2025 21:53:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[25-Sep-2025 22:09:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[25-Sep-2025 22:09:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[25-Sep-2025 22:09:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[25-Sep-2025 22:09:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[25-Sep-2025 22:09:11 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[25-Sep-2025 22:09:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[25-Sep-2025 22:09:16 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[25-Sep-2025 22:09:16 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[25-Sep-2025 22:09:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[25-Sep-2025 22:09:18 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[25-Sep-2025 22:09:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[25-Sep-2025 22:09:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[02-Oct-2025 10:37:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[02-Oct-2025 10:37:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[02-Oct-2025 10:37:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[02-Oct-2025 10:37:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[02-Oct-2025 10:37:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[02-Oct-2025 10:37:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[02-Oct-2025 10:37:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[02-Oct-2025 10:37:41 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[02-Oct-2025 10:37:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[02-Oct-2025 10:37:41 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[02-Oct-2025 10:37:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[02-Oct-2025 10:37:42 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[02-Oct-2025 10:37:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[02-Oct-2025 10:37:42 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[02-Oct-2025 10:37:42 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[02-Oct-2025 10:37:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[02-Oct-2025 10:37:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[02-Oct-2025 10:47:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[02-Oct-2025 10:47:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[02-Oct-2025 10:47:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[02-Oct-2025 10:47:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[02-Oct-2025 10:47:16 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[02-Oct-2025 10:47:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[02-Oct-2025 10:47:16 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[02-Oct-2025 10:47:16 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[02-Oct-2025 10:47:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[02-Oct-2025 10:47:17 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[02-Oct-2025 10:47:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[02-Oct-2025 10:47:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[07-Oct-2025 16:08:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[07-Oct-2025 16:13:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[07-Oct-2025 16:20:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[07-Oct-2025 16:28:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[07-Oct-2025 16:52:29 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[07-Oct-2025 16:58:51 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[07-Oct-2025 17:01:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[07-Oct-2025 17:11:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[02-Nov-2025 08:25:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[02-Nov-2025 08:25:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[02-Nov-2025 08:25:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[02-Nov-2025 08:25:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[02-Nov-2025 08:25:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[02-Nov-2025 08:25:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[02-Nov-2025 08:25:46 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[02-Nov-2025 08:25:46 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[02-Nov-2025 08:25:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[02-Nov-2025 08:25:47 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[02-Nov-2025 08:25:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[02-Nov-2025 08:25:48 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[02-Nov-2025 08:25:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[02-Nov-2025 08:25:49 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[02-Nov-2025 08:25:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[02-Nov-2025 08:25:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[02-Nov-2025 08:25:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[02-Nov-2025 08:37:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[02-Nov-2025 08:37:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[02-Nov-2025 08:37:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[02-Nov-2025 08:37:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[02-Nov-2025 08:37:27 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[02-Nov-2025 08:37:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[02-Nov-2025 08:37:28 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[02-Nov-2025 08:37:29 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[02-Nov-2025 08:37:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[02-Nov-2025 08:37:31 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[02-Nov-2025 08:37:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[02-Nov-2025 08:37:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[06-Dec-2025 18:40:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[06-Dec-2025 18:40:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[06-Dec-2025 18:40:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[06-Dec-2025 18:40:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[06-Dec-2025 18:41:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[06-Dec-2025 18:41:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[06-Dec-2025 18:41:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[06-Dec-2025 18:41:04 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[06-Dec-2025 18:41:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[06-Dec-2025 18:41:07 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[06-Dec-2025 18:41:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[06-Dec-2025 18:41:10 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[06-Dec-2025 18:41:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[06-Dec-2025 18:41:12 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[06-Dec-2025 18:41:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[06-Dec-2025 18:41:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[06-Dec-2025 18:41:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:684
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 684
[06-Dec-2025 18:55:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[06-Dec-2025 18:55:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:111
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 111
[06-Dec-2025 18:55:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[06-Dec-2025 18:55:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[06-Dec-2025 18:55:35 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[06-Dec-2025 18:55:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[06-Dec-2025 18:55:37 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[06-Dec-2025 18:55:37 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:980
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 980
[06-Dec-2025 18:55:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[06-Dec-2025 18:55:39 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[06-Dec-2025 18:55:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[06-Dec-2025 18:55:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[23-Dec-2025 11:34:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[23-Dec-2025 11:34:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[23-Dec-2025 11:34:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[23-Dec-2025 11:34:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[23-Dec-2025 11:34:33 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php:33
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php on line 33
[23-Dec-2025 11:34:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[23-Dec-2025 11:34:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[23-Dec-2025 11:34:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[23-Dec-2025 11:34:41 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[23-Dec-2025 11:34:45 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[23-Dec-2025 11:34:47 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[23-Dec-2025 11:34:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[23-Dec-2025 11:34:49 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:981
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 981
[23-Dec-2025 11:34:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[23-Dec-2025 11:34:54 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[23-Dec-2025 11:34:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[23-Dec-2025 11:34:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[23-Dec-2025 11:35:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:703
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 703
[23-Dec-2025 11:57:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[23-Dec-2025 11:57:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[23-Dec-2025 11:57:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[23-Dec-2025 11:57:16 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php:33
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php on line 33
[23-Dec-2025 11:57:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[23-Dec-2025 11:57:18 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[23-Dec-2025 11:57:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[23-Dec-2025 11:57:21 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[23-Dec-2025 11:57:22 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:981
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 981
[23-Dec-2025 11:57:23 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[23-Dec-2025 11:57:24 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[23-Dec-2025 11:57:26 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[23-Dec-2025 11:57:28 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[24-Dec-2025 14:47:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[24-Dec-2025 14:47:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[24-Dec-2025 14:47:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[24-Dec-2025 14:47:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[24-Dec-2025 14:47:35 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php:33
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php on line 33
[24-Dec-2025 14:47:38 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[24-Dec-2025 14:47:39 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[24-Dec-2025 14:47:40 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[24-Dec-2025 14:47:42 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[24-Dec-2025 14:47:43 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[24-Dec-2025 14:47:45 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[24-Dec-2025 14:47:47 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[24-Dec-2025 14:47:49 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:981
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 981
[24-Dec-2025 14:47:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[24-Dec-2025 14:47:54 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[24-Dec-2025 14:47:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[24-Dec-2025 14:47:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[24-Dec-2025 14:48:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:703
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 703
[24-Dec-2025 15:16:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[24-Dec-2025 15:16:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[24-Dec-2025 15:16:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[24-Dec-2025 15:16:21 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php:33
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php on line 33
[24-Dec-2025 15:16:25 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[24-Dec-2025 15:16:26 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[24-Dec-2025 15:16:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[24-Dec-2025 15:16:31 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[24-Dec-2025 15:16:34 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:981
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 981
[24-Dec-2025 15:16:36 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[24-Dec-2025 15:16:39 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[24-Dec-2025 15:16:41 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[24-Dec-2025 15:16:44 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[04-Jan-2026 10:05:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[04-Jan-2026 10:05:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[04-Jan-2026 10:05:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[04-Jan-2026 10:05:30 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[04-Jan-2026 10:05:31 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php:33
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php on line 33
[04-Jan-2026 10:05:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[04-Jan-2026 10:05:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[04-Jan-2026 10:05:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[04-Jan-2026 10:05:32 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[04-Jan-2026 10:05:32 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[04-Jan-2026 10:05:32 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[04-Jan-2026 10:05:33 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[04-Jan-2026 10:05:33 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:981
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 981
[04-Jan-2026 10:05:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[04-Jan-2026 10:05:34 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[04-Jan-2026 10:05:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[04-Jan-2026 10:05:34 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[04-Jan-2026 10:05:35 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:703
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 703
[04-Jan-2026 10:16:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[04-Jan-2026 10:16:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[04-Jan-2026 10:16:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[04-Jan-2026 10:17:00 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php:33
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php on line 33
[04-Jan-2026 10:17:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[04-Jan-2026 10:17:01 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[04-Jan-2026 10:17:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[04-Jan-2026 10:17:02 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[04-Jan-2026 10:17:02 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:981
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 981
[04-Jan-2026 10:17:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[04-Jan-2026 10:17:03 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[04-Jan-2026 10:17:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[04-Jan-2026 10:17:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[05-Jan-2026 18:29:52 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[05-Jan-2026 18:29:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[05-Jan-2026 18:29:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[05-Jan-2026 18:29:55 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[05-Jan-2026 18:29:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[05-Jan-2026 18:29:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[05-Jan-2026 18:29:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[05-Jan-2026 18:29:59 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:981
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 981
[05-Jan-2026 18:29:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[05-Jan-2026 18:30:00 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[05-Jan-2026 18:30:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[05-Jan-2026 18:30:02 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[05-Jan-2026 18:30:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:703
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 703
[05-Jan-2026 18:30:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[05-Jan-2026 18:30:04 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[05-Jan-2026 18:30:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[05-Jan-2026 18:30:06 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[05-Jan-2026 18:30:07 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php:33
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php on line 33
[06-Jan-2026 01:15:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[06-Jan-2026 01:15:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[06-Jan-2026 01:15:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[06-Jan-2026 01:15:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[06-Jan-2026 01:15:55 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php:33
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php on line 33
[06-Jan-2026 01:15:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[06-Jan-2026 01:15:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[06-Jan-2026 01:15:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[06-Jan-2026 01:16:00 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[06-Jan-2026 01:16:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[06-Jan-2026 01:16:02 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[06-Jan-2026 01:16:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[06-Jan-2026 01:16:05 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:981
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 981
[06-Jan-2026 01:16:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[06-Jan-2026 01:16:06 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[06-Jan-2026 01:16:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[06-Jan-2026 01:16:08 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[06-Jan-2026 01:16:09 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:703
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 703
[06-Jan-2026 01:30:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[06-Jan-2026 01:30:49 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[06-Jan-2026 01:30:50 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[06-Jan-2026 01:30:51 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php:33
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php on line 33
[06-Jan-2026 01:30:52 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[06-Jan-2026 01:30:52 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[06-Jan-2026 01:30:53 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[06-Jan-2026 01:30:53 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[06-Jan-2026 01:30:54 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:981
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 981
[06-Jan-2026 01:30:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[06-Jan-2026 01:30:56 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[06-Jan-2026 01:30:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[06-Jan-2026 01:30:59 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[07-Jan-2026 04:24:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[07-Jan-2026 04:24:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:703
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 703
[07-Jan-2026 04:24:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[07-Jan-2026 04:24:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[07-Jan-2026 04:24:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[07-Jan-2026 04:24:16 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[07-Jan-2026 04:24:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[07-Jan-2026 04:24:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[07-Jan-2026 04:24:16 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:981
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 981
[07-Jan-2026 04:24:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[07-Jan-2026 04:24:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[07-Jan-2026 04:24:17 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[07-Jan-2026 04:24:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[07-Jan-2026 04:24:18 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[07-Jan-2026 04:24:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[07-Jan-2026 04:24:18 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php:33
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php on line 33
[07-Jan-2026 04:24:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[07-Jan-2026 04:24:18 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[13-Jan-2026 06:28:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[13-Jan-2026 06:28:11 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[13-Jan-2026 06:28:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[13-Jan-2026 06:28:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[13-Jan-2026 06:28:12 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php:33
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php on line 33
[13-Jan-2026 06:28:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[13-Jan-2026 06:28:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[13-Jan-2026 06:28:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[13-Jan-2026 06:28:13 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[13-Jan-2026 06:28:13 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[13-Jan-2026 06:28:14 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[13-Jan-2026 06:28:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[13-Jan-2026 06:28:14 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:981
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 981
[13-Jan-2026 06:28:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[13-Jan-2026 06:28:15 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[13-Jan-2026 06:28:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[13-Jan-2026 06:28:15 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[13-Jan-2026 06:28:16 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:703
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 703
[13-Jan-2026 23:48:48 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[13-Jan-2026 23:48:51 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[13-Jan-2026 23:48:54 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[13-Jan-2026 23:48:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[13-Jan-2026 23:48:58 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php:33
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php on line 33
[13-Jan-2026 23:49:01 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[13-Jan-2026 23:49:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[13-Jan-2026 23:49:06 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[13-Jan-2026 23:49:09 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[13-Jan-2026 23:49:12 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[13-Jan-2026 23:49:14 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[13-Jan-2026 23:49:17 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[13-Jan-2026 23:49:19 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:981
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 981
[13-Jan-2026 23:49:22 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[13-Jan-2026 23:49:24 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[13-Jan-2026 23:49:27 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[13-Jan-2026 23:49:29 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[13-Jan-2026 23:49:31 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:703
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 703
[14-Jan-2026 00:12:03 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[14-Jan-2026 00:12:05 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[14-Jan-2026 00:12:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[14-Jan-2026 00:12:09 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php:33
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php on line 33
[14-Jan-2026 00:12:10 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[14-Jan-2026 00:12:12 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[14-Jan-2026 00:12:14 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[14-Jan-2026 00:12:16 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[14-Jan-2026 00:12:18 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:981
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 981
[14-Jan-2026 00:12:19 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[14-Jan-2026 00:12:20 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[14-Jan-2026 00:12:21 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[14-Jan-2026 00:12:24 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[21-Feb-2026 02:55:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/align.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/align.php on line 59
[21-Feb-2026 02:55:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php:64
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/aria-label.php on line 64
[21-Feb-2026 02:55:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/background.php:108
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/background.php on line 108
[21-Feb-2026 02:55:55 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php:251
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-style-variations.php on line 251
[21-Feb-2026 02:55:56 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php:33
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/block-visibility.php on line 33
[21-Feb-2026 02:55:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/border.php:170
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/border.php on line 170
[21-Feb-2026 02:55:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php:138
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/colors.php on line 138
[21-Feb-2026 02:55:56 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php:59
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/custom-classname.php on line 59
[21-Feb-2026 02:55:57 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php:164
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/dimensions.php on line 164
[21-Feb-2026 02:55:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php:36
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/duotone.php on line 36
[21-Feb-2026 02:55:57 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php:263
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/elements.php on line 263
[21-Feb-2026 02:55:57 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php:66
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/generated-classname.php on line 66
[21-Feb-2026 02:55:57 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php:981
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/layout.php on line 981
[21-Feb-2026 02:55:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/position.php:145
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/position.php on line 145
[21-Feb-2026 02:55:58 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_filter() in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php:151
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/settings.php on line 151
[21-Feb-2026 02:55:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php:79
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/shadow.php on line 79
[21-Feb-2026 02:55:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php:83
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/spacing.php on line 83
[21-Feb-2026 02:55:58 UTC] PHP Fatal error:  Uncaught Error: Class 'WP_Block_Supports' not found in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php:703
Stack trace:
#0 {main}
  thrown in /home/antiaginglove/public_html/wp-includes/block-supports/typography.php on line 703
block-visibility.php000064400000001526152222511210010531 0ustar00<?php
/**
 * Block visibility block support flag.
 *
 * @package WordPress
 * @since 6.9.0
 */

/**
 * Render nothing if the block is hidden.
 *
 * @since 6.9.0
 * @access private
 *
 * @param string $block_content Rendered block content.
 * @param array  $block         Block object.
 * @return string Filtered block content.
 */
function wp_render_block_visibility_support( $block_content, $block ) {
	$block_type = WP_Block_Type_Registry::get_instance()->get_registered( $block['blockName'] );

	if ( ! $block_type || ! block_has_support( $block_type, 'visibility', true ) ) {
		return $block_content;
	}

	if ( isset( $block['attrs']['metadata']['blockVisibility'] ) && false === $block['attrs']['metadata']['blockVisibility'] ) {
		return '';
	}

	return $block_content;
}

add_filter( 'render_block', 'wp_render_block_visibility_support', 10, 2 );
typography.php000064400000072125152222511210007463 0ustar00<?php
/**
 * Typography block support flag.
 *
 * @package WordPress
 * @since 5.6.0
 */

/**
 * Registers the style and typography block attributes for block types that support it.
 *
 * @since 5.6.0
 * @since 6.3.0 Added support for text-columns.
 * @access private
 *
 * @param WP_Block_Type $block_type Block Type.
 */
function wp_register_typography_support( $block_type ) {
	if ( ! ( $block_type instanceof WP_Block_Type ) ) {
		return;
	}

	$typography_supports = isset( $block_type->supports['typography'] ) ? $block_type->supports['typography'] : false;
	if ( ! $typography_supports ) {
		return;
	}

	$has_font_family_support     = isset( $typography_supports['__experimentalFontFamily'] ) ? $typography_supports['__experimentalFontFamily'] : false;
	$has_font_size_support       = isset( $typography_supports['fontSize'] ) ? $typography_supports['fontSize'] : false;
	$has_font_style_support      = isset( $typography_supports['__experimentalFontStyle'] ) ? $typography_supports['__experimentalFontStyle'] : false;
	$has_font_weight_support     = isset( $typography_supports['__experimentalFontWeight'] ) ? $typography_supports['__experimentalFontWeight'] : false;
	$has_letter_spacing_support  = isset( $typography_supports['__experimentalLetterSpacing'] ) ? $typography_supports['__experimentalLetterSpacing'] : false;
	$has_line_height_support     = isset( $typography_supports['lineHeight'] ) ? $typography_supports['lineHeight'] : false;
	$has_text_align_support      = isset( $typography_supports['textAlign'] ) ? $typography_supports['textAlign'] : false;
	$has_text_columns_support    = isset( $typography_supports['textColumns'] ) ? $typography_supports['textColumns'] : false;
	$has_text_decoration_support = isset( $typography_supports['__experimentalTextDecoration'] ) ? $typography_supports['__experimentalTextDecoration'] : false;
	$has_text_transform_support  = isset( $typography_supports['__experimentalTextTransform'] ) ? $typography_supports['__experimentalTextTransform'] : false;
	$has_writing_mode_support    = isset( $typography_supports['__experimentalWritingMode'] ) ? $typography_supports['__experimentalWritingMode'] : false;

	$has_typography_support = $has_font_family_support
		|| $has_font_size_support
		|| $has_font_style_support
		|| $has_font_weight_support
		|| $has_letter_spacing_support
		|| $has_line_height_support
		|| $has_text_align_support
		|| $has_text_columns_support
		|| $has_text_decoration_support
		|| $has_text_transform_support
		|| $has_writing_mode_support;

	if ( ! $block_type->attributes ) {
		$block_type->attributes = array();
	}

	if ( $has_typography_support && ! array_key_exists( 'style', $block_type->attributes ) ) {
		$block_type->attributes['style'] = array(
			'type' => 'object',
		);
	}

	if ( $has_font_size_support && ! array_key_exists( 'fontSize', $block_type->attributes ) ) {
		$block_type->attributes['fontSize'] = array(
			'type' => 'string',
		);
	}

	if ( $has_font_family_support && ! array_key_exists( 'fontFamily', $block_type->attributes ) ) {
		$block_type->attributes['fontFamily'] = array(
			'type' => 'string',
		);
	}
}

/**
 * Adds CSS classes and inline styles for typography features such as font sizes
 * to the incoming attributes array. This will be applied to the block markup in
 * the front-end.
 *
 * @since 5.6.0
 * @since 6.1.0 Used the style engine to generate CSS and classnames.
 * @since 6.3.0 Added support for text-columns.
 * @access private
 *
 * @param WP_Block_Type $block_type       Block type.
 * @param array         $block_attributes Block attributes.
 * @return array Typography CSS classes and inline styles.
 */
function wp_apply_typography_support( $block_type, $block_attributes ) {
	if ( ! ( $block_type instanceof WP_Block_Type ) ) {
		return array();
	}

	$typography_supports = isset( $block_type->supports['typography'] )
		? $block_type->supports['typography']
		: false;
	if ( ! $typography_supports ) {
		return array();
	}

	if ( wp_should_skip_block_supports_serialization( $block_type, 'typography' ) ) {
		return array();
	}

	$has_font_family_support     = isset( $typography_supports['__experimentalFontFamily'] ) ? $typography_supports['__experimentalFontFamily'] : false;
	$has_font_size_support       = isset( $typography_supports['fontSize'] ) ? $typography_supports['fontSize'] : false;
	$has_font_style_support      = isset( $typography_supports['__experimentalFontStyle'] ) ? $typography_supports['__experimentalFontStyle'] : false;
	$has_font_weight_support     = isset( $typography_supports['__experimentalFontWeight'] ) ? $typography_supports['__experimentalFontWeight'] : false;
	$has_letter_spacing_support  = isset( $typography_supports['__experimentalLetterSpacing'] ) ? $typography_supports['__experimentalLetterSpacing'] : false;
	$has_line_height_support     = isset( $typography_supports['lineHeight'] ) ? $typography_supports['lineHeight'] : false;
	$has_text_align_support      = isset( $typography_supports['textAlign'] ) ? $typography_supports['textAlign'] : false;
	$has_text_columns_support    = isset( $typography_supports['textColumns'] ) ? $typography_supports['textColumns'] : false;
	$has_text_decoration_support = isset( $typography_supports['__experimentalTextDecoration'] ) ? $typography_supports['__experimentalTextDecoration'] : false;
	$has_text_transform_support  = isset( $typography_supports['__experimentalTextTransform'] ) ? $typography_supports['__experimentalTextTransform'] : false;
	$has_writing_mode_support    = isset( $typography_supports['__experimentalWritingMode'] ) ? $typography_supports['__experimentalWritingMode'] : false;

	// Whether to skip individual block support features.
	$should_skip_font_size       = wp_should_skip_block_supports_serialization( $block_type, 'typography', 'fontSize' );
	$should_skip_font_family     = wp_should_skip_block_supports_serialization( $block_type, 'typography', 'fontFamily' );
	$should_skip_font_style      = wp_should_skip_block_supports_serialization( $block_type, 'typography', 'fontStyle' );
	$should_skip_font_weight     = wp_should_skip_block_supports_serialization( $block_type, 'typography', 'fontWeight' );
	$should_skip_line_height     = wp_should_skip_block_supports_serialization( $block_type, 'typography', 'lineHeight' );
	$should_skip_text_align      = wp_should_skip_block_supports_serialization( $block_type, 'typography', 'textAlign' );
	$should_skip_text_columns    = wp_should_skip_block_supports_serialization( $block_type, 'typography', 'textColumns' );
	$should_skip_text_decoration = wp_should_skip_block_supports_serialization( $block_type, 'typography', 'textDecoration' );
	$should_skip_text_transform  = wp_should_skip_block_supports_serialization( $block_type, 'typography', 'textTransform' );
	$should_skip_letter_spacing  = wp_should_skip_block_supports_serialization( $block_type, 'typography', 'letterSpacing' );
	$should_skip_writing_mode    = wp_should_skip_block_supports_serialization( $block_type, 'typography', 'writingMode' );

	$typography_block_styles = array();
	if ( $has_font_size_support && ! $should_skip_font_size ) {
		$preset_font_size                    = array_key_exists( 'fontSize', $block_attributes )
			? "var:preset|font-size|{$block_attributes['fontSize']}"
			: null;
		$custom_font_size                    = isset( $block_attributes['style']['typography']['fontSize'] )
			? $block_attributes['style']['typography']['fontSize']
			: null;
		$typography_block_styles['fontSize'] = $preset_font_size ? $preset_font_size : wp_get_typography_font_size_value(
			array(
				'size' => $custom_font_size,
			)
		);
	}

	if ( $has_font_family_support && ! $should_skip_font_family ) {
		$preset_font_family                    = array_key_exists( 'fontFamily', $block_attributes )
			? "var:preset|font-family|{$block_attributes['fontFamily']}"
			: null;
		$custom_font_family                    = isset( $block_attributes['style']['typography']['fontFamily'] )
			? wp_typography_get_preset_inline_style_value( $block_attributes['style']['typography']['fontFamily'], 'font-family' )
			: null;
		$typography_block_styles['fontFamily'] = $preset_font_family ? $preset_font_family : $custom_font_family;
	}

	if (
		$has_font_style_support &&
		! $should_skip_font_style &&
		isset( $block_attributes['style']['typography']['fontStyle'] )
	) {
		$typography_block_styles['fontStyle'] = wp_typography_get_preset_inline_style_value(
			$block_attributes['style']['typography']['fontStyle'],
			'font-style'
		);
	}

	if (
		$has_font_weight_support &&
		! $should_skip_font_weight &&
		isset( $block_attributes['style']['typography']['fontWeight'] )
	) {
		$typography_block_styles['fontWeight'] = wp_typography_get_preset_inline_style_value(
			$block_attributes['style']['typography']['fontWeight'],
			'font-weight'
		);
	}

	if ( $has_line_height_support && ! $should_skip_line_height ) {
		$typography_block_styles['lineHeight'] = isset( $block_attributes['style']['typography']['lineHeight'] )
			? $block_attributes['style']['typography']['lineHeight']
			: null;
	}

	if ( $has_text_align_support && ! $should_skip_text_align ) {
		$typography_block_styles['textAlign'] = isset( $block_attributes['style']['typography']['textAlign'] )
			? $block_attributes['style']['typography']['textAlign']
			: null;
	}

	if ( $has_text_columns_support && ! $should_skip_text_columns && isset( $block_attributes['style']['typography']['textColumns'] ) ) {
		$typography_block_styles['textColumns'] = isset( $block_attributes['style']['typography']['textColumns'] )
			? $block_attributes['style']['typography']['textColumns']
			: null;
	}

	if (
		$has_text_decoration_support &&
		! $should_skip_text_decoration &&
		isset( $block_attributes['style']['typography']['textDecoration'] )
	) {
		$typography_block_styles['textDecoration'] = wp_typography_get_preset_inline_style_value(
			$block_attributes['style']['typography']['textDecoration'],
			'text-decoration'
		);
	}

	if (
		$has_text_transform_support &&
		! $should_skip_text_transform &&
		isset( $block_attributes['style']['typography']['textTransform'] )
	) {
		$typography_block_styles['textTransform'] = wp_typography_get_preset_inline_style_value(
			$block_attributes['style']['typography']['textTransform'],
			'text-transform'
		);
	}

	if (
		$has_letter_spacing_support &&
		! $should_skip_letter_spacing &&
		isset( $block_attributes['style']['typography']['letterSpacing'] )
	) {
		$typography_block_styles['letterSpacing'] = wp_typography_get_preset_inline_style_value(
			$block_attributes['style']['typography']['letterSpacing'],
			'letter-spacing'
		);
	}

	if ( $has_writing_mode_support &&
		! $should_skip_writing_mode &&
		isset( $block_attributes['style']['typography']['writingMode'] )
	) {
		$typography_block_styles['writingMode'] = isset( $block_attributes['style']['typography']['writingMode'] )
			? $block_attributes['style']['typography']['writingMode']
			: null;
	}

	$attributes = array();
	$classnames = array();
	$styles     = wp_style_engine_get_styles(
		array( 'typography' => $typography_block_styles ),
		array( 'convert_vars_to_classnames' => true )
	);

	if ( ! empty( $styles['classnames'] ) ) {
		$classnames[] = $styles['classnames'];
	}

	if ( $has_text_align_support && ! $should_skip_text_align && isset( $block_attributes['style']['typography']['textAlign'] ) ) {
		$classnames[] = 'has-text-align-' . $block_attributes['style']['typography']['textAlign'];
	}

	if ( ! empty( $classnames ) ) {
		$attributes['class'] = implode( ' ', $classnames );
	}

	if ( ! empty( $styles['css'] ) ) {
		$attributes['style'] = $styles['css'];
	}

	return $attributes;
}

/**
 * Generates an inline style value for a typography feature e.g. text decoration,
 * text transform, and font style.
 *
 * Note: This function is for backwards compatibility.
 * * It is necessary to parse older blocks whose typography styles contain presets.
 * * It mostly replaces the deprecated `wp_typography_get_css_variable_inline_style()`,
 *   but skips compiling a CSS declaration as the style engine takes over this role.
 * @link https://github.com/wordpress/gutenberg/pull/27555
 *
 * @since 6.1.0
 *
 * @param string $style_value  A raw style value for a single typography feature from a block's style attribute.
 * @param string $css_property Slug for the CSS property the inline style sets.
 * @return string A CSS inline style value.
 */
function wp_typography_get_preset_inline_style_value( $style_value, $css_property ) {
	// If the style value is not a preset CSS variable go no further.
	if ( empty( $style_value ) || ! str_contains( $style_value, "var:preset|{$css_property}|" ) ) {
		return $style_value;
	}

	/*
	 * For backwards compatibility.
	 * Presets were removed in WordPress/gutenberg#27555.
	 * A preset CSS variable is the style.
	 * Gets the style value from the string and return CSS style.
	 */
	$index_to_splice = strrpos( $style_value, '|' ) + 1;
	$slug            = _wp_to_kebab_case( substr( $style_value, $index_to_splice ) );

	// Return the actual CSS inline style value,
	// e.g. `var(--wp--preset--text-decoration--underline);`.
	return sprintf( 'var(--wp--preset--%s--%s);', $css_property, $slug );
}

/**
 * Renders typography styles/content to the block wrapper.
 *
 * @since 6.1.0
 *
 * @param string $block_content Rendered block content.
 * @param array  $block         Block object.
 * @return string Filtered block content.
 */
function wp_render_typography_support( $block_content, $block ) {
	if ( ! empty( $block['attrs']['fitText'] ) && $block['attrs']['fitText'] && ! is_admin() ) {
		wp_enqueue_script_module( '@wordpress/block-editor/utils/fit-text-frontend' );

		// Add Interactivity API directives for fit text to work with client-side navigation.
		if ( ! empty( $block_content ) ) {
			$processor = new WP_HTML_Tag_Processor( $block_content );
			if ( $processor->next_tag() ) {
				if ( ! $processor->get_attribute( 'data-wp-interactive' ) ) {
					$processor->set_attribute( 'data-wp-interactive', true );
				}
				$processor->set_attribute( 'data-wp-context---core-fit-text', 'core/fit-text::{"fontSize":""}' );
				$processor->set_attribute( 'data-wp-init---core-fit-text', 'core/fit-text::callbacks.init' );
				$processor->set_attribute( 'data-wp-style--font-size', 'core/fit-text::context.fontSize' );
				$block_content = $processor->get_updated_html();
			}
		}
		// fitText supersedes any other typography features
		return $block_content;
	}
	if ( ! isset( $block['attrs']['style']['typography']['fontSize'] ) ) {
		return $block_content;
	}

	$custom_font_size = $block['attrs']['style']['typography']['fontSize'];
	$fluid_font_size  = wp_get_typography_font_size_value( array( 'size' => $custom_font_size ) );

	/*
	 * Checks that $fluid_font_size does not match $custom_font_size,
	 * which means it's been mutated by the fluid font size functions.
	 */
	if ( ! empty( $fluid_font_size ) && $fluid_font_size !== $custom_font_size ) {
		// Replaces the first instance of `font-size:$custom_font_size` with `font-size:$fluid_font_size`.
		return preg_replace( '/font-size\s*:\s*' . preg_quote( $custom_font_size, '/' ) . '\s*;?/', 'font-size:' . esc_attr( $fluid_font_size ) . ';', $block_content, 1 );
	}

	return $block_content;
}

/**
 * Checks a string for a unit and value and returns an array
 * consisting of `'value'` and `'unit'`, e.g. array( '42', 'rem' ).
 *
 * @since 6.1.0
 *
 * @param string|int|float $raw_value Raw size value from theme.json.
 * @param array            $options   {
 *     Optional. An associative array of options. Default is empty array.
 *
 *     @type string   $coerce_to        Coerce the value to rem or px. Default `'rem'`.
 *     @type int      $root_size_value  Value of root font size for rem|em <-> px conversion. Default `16`.
 *     @type string[] $acceptable_units An array of font size units. Default `array( 'rem', 'px', 'em' )`;
 * }
 * @return array|null An array consisting of `'value'` and `'unit'` properties on success.
 *                    `null` on failure.
 */
function wp_get_typography_value_and_unit( $raw_value, $options = array() ) {
	if ( ! is_string( $raw_value ) && ! is_int( $raw_value ) && ! is_float( $raw_value ) ) {
		_doing_it_wrong(
			__FUNCTION__,
			__( 'Raw size value must be a string, integer, or float.' ),
			'6.1.0'
		);
		return null;
	}

	if ( empty( $raw_value ) ) {
		return null;
	}

	// Converts numbers to pixel values by default.
	if ( is_numeric( $raw_value ) ) {
		$raw_value = $raw_value . 'px';
	}

	$defaults = array(
		'coerce_to'        => '',
		'root_size_value'  => 16,
		'acceptable_units' => array( 'rem', 'px', 'em' ),
	);

	$options = wp_parse_args( $options, $defaults );

	$acceptable_units_group = implode( '|', $options['acceptable_units'] );
	$pattern                = '/^(\d*\.?\d+)(' . $acceptable_units_group . '){1,1}$/';

	preg_match( $pattern, $raw_value, $matches );

	// Bails out if not a number value and a px or rem unit.
	if ( ! isset( $matches[1] ) || ! isset( $matches[2] ) ) {
		return null;
	}

	$value = $matches[1];
	$unit  = $matches[2];

	/*
	 * Default browser font size. Later, possibly could inject some JS to
	 * compute this `getComputedStyle( document.querySelector( "html" ) ).fontSize`.
	 */
	if ( 'px' === $options['coerce_to'] && ( 'em' === $unit || 'rem' === $unit ) ) {
		$value = $value * $options['root_size_value'];
		$unit  = $options['coerce_to'];
	}

	if ( 'px' === $unit && ( 'em' === $options['coerce_to'] || 'rem' === $options['coerce_to'] ) ) {
		$value = $value / $options['root_size_value'];
		$unit  = $options['coerce_to'];
	}

	/*
	 * No calculation is required if swapping between em and rem yet,
	 * since we assume a root size value. Later we might like to differentiate between
	 * :root font size (rem) and parent element font size (em) relativity.
	 */
	if ( ( 'em' === $options['coerce_to'] || 'rem' === $options['coerce_to'] ) && ( 'em' === $unit || 'rem' === $unit ) ) {
		$unit = $options['coerce_to'];
	}

	return array(
		'value' => round( $value, 3 ),
		'unit'  => $unit,
	);
}

/**
 * Internal implementation of CSS clamp() based on available min/max viewport
 * width and min/max font sizes.
 *
 * @since 6.1.0
 * @since 6.3.0 Checks for unsupported min/max viewport values that cause invalid clamp values.
 * @since 6.5.0 Returns early when min and max viewport subtraction is zero to avoid division by zero.
 * @access private
 *
 * @param array $args {
 *     Optional. An associative array of values to calculate a fluid formula
 *     for font size. Default is empty array.
 *
 *     @type string $maximum_viewport_width Maximum size up to which type will have fluidity.
 *     @type string $minimum_viewport_width Minimum viewport size from which type will have fluidity.
 *     @type string $maximum_font_size      Maximum font size for any clamp() calculation.
 *     @type string $minimum_font_size      Minimum font size for any clamp() calculation.
 *     @type int    $scale_factor           A scale factor to determine how fast a font scales within boundaries.
 * }
 * @return string|null A font-size value using clamp() on success, otherwise null.
 */
function wp_get_computed_fluid_typography_value( $args = array() ) {
	$maximum_viewport_width_raw = isset( $args['maximum_viewport_width'] ) ? $args['maximum_viewport_width'] : null;
	$minimum_viewport_width_raw = isset( $args['minimum_viewport_width'] ) ? $args['minimum_viewport_width'] : null;
	$maximum_font_size_raw      = isset( $args['maximum_font_size'] ) ? $args['maximum_font_size'] : null;
	$minimum_font_size_raw      = isset( $args['minimum_font_size'] ) ? $args['minimum_font_size'] : null;
	$scale_factor               = isset( $args['scale_factor'] ) ? $args['scale_factor'] : null;

	// Normalizes the minimum font size in order to use the value for calculations.
	$minimum_font_size = wp_get_typography_value_and_unit( $minimum_font_size_raw );

	/*
	 * We get a 'preferred' unit to keep units consistent when calculating,
	 * otherwise the result will not be accurate.
	 */
	$font_size_unit = isset( $minimum_font_size['unit'] ) ? $minimum_font_size['unit'] : 'rem';

	// Normalizes the maximum font size in order to use the value for calculations.
	$maximum_font_size = wp_get_typography_value_and_unit(
		$maximum_font_size_raw,
		array(
			'coerce_to' => $font_size_unit,
		)
	);

	// Checks for mandatory min and max sizes, and protects against unsupported units.
	if ( ! $maximum_font_size || ! $minimum_font_size ) {
		return null;
	}

	// Uses rem for accessible fluid target font scaling.
	$minimum_font_size_rem = wp_get_typography_value_and_unit(
		$minimum_font_size_raw,
		array(
			'coerce_to' => 'rem',
		)
	);

	// Viewport widths defined for fluid typography. Normalize units.
	$maximum_viewport_width = wp_get_typography_value_and_unit(
		$maximum_viewport_width_raw,
		array(
			'coerce_to' => $font_size_unit,
		)
	);
	$minimum_viewport_width = wp_get_typography_value_and_unit(
		$minimum_viewport_width_raw,
		array(
			'coerce_to' => $font_size_unit,
		)
	);

	// Protects against unsupported units in min and max viewport widths.
	if ( ! $minimum_viewport_width || ! $maximum_viewport_width ) {
		return null;
	}

	// Calculates the linear factor denominator. If it's 0, we cannot calculate a fluid value.
	$linear_factor_denominator = $maximum_viewport_width['value'] - $minimum_viewport_width['value'];
	if ( empty( $linear_factor_denominator ) ) {
		return null;
	}

	/*
	 * Build CSS rule.
	 * Borrowed from https://websemantics.uk/tools/responsive-font-calculator/.
	 */
	$view_port_width_offset = round( $minimum_viewport_width['value'] / 100, 3 ) . $font_size_unit;
	$linear_factor          = 100 * ( ( $maximum_font_size['value'] - $minimum_font_size['value'] ) / ( $linear_factor_denominator ) );
	$linear_factor_scaled   = round( $linear_factor * $scale_factor, 3 );
	$linear_factor_scaled   = empty( $linear_factor_scaled ) ? 1 : $linear_factor_scaled;
	$fluid_target_font_size = implode( '', $minimum_font_size_rem ) . " + ((1vw - $view_port_width_offset) * $linear_factor_scaled)";

	return "clamp($minimum_font_size_raw, $fluid_target_font_size, $maximum_font_size_raw)";
}

/**
 * Returns a font-size value based on a given font-size preset.
 * Takes into account fluid typography parameters and attempts to return a CSS
 * formula depending on available, valid values.
 *
 * @since 6.1.0
 * @since 6.1.1 Adjusted rules for min and max font sizes.
 * @since 6.2.0 Added 'settings.typography.fluid.minFontSize' support.
 * @since 6.3.0 Using layout.wideSize as max viewport width, and logarithmic scale factor to calculate minimum font scale.
 * @since 6.4.0 Added configurable min and max viewport width values to the typography.fluid theme.json schema.
 * @since 6.6.0 Deprecated bool argument $should_use_fluid_typography.
 * @since 6.7.0 Font size presets can enable fluid typography individually, even if it’s disabled globally.
 *
 * @param array      $preset   {
 *     Required. fontSizes preset value as seen in theme.json.
 *
 *     @type string           $name Name of the font size preset.
 *     @type string           $slug Kebab-case, unique identifier for the font size preset.
 *     @type string|int|float $size CSS font-size value, including units if applicable.
 * }
 * @param bool|array $settings Optional Theme JSON settings array that overrides any global theme settings.
 *                             Default is false.
 * @return string|null Font-size value or null if a size is not passed in $preset.
 */


function wp_get_typography_font_size_value( $preset, $settings = array() ) {
	if ( ! isset( $preset['size'] ) ) {
		return null;
	}

	/*
	 * Catches falsy values and 0/'0'. Fluid calculations cannot be performed on `0`.
	 * Also returns early when a preset font size explicitly disables fluid typography with `false`.
	 */
	$fluid_font_size_settings = $preset['fluid'] ?? null;
	if ( false === $fluid_font_size_settings || empty( $preset['size'] ) ) {
		return $preset['size'];
	}

	/*
	 * As a boolean (deprecated since 6.6), $settings acts as an override to switch fluid typography "on" (`true`) or "off" (`false`).
	 */
	if ( is_bool( $settings ) ) {
		_deprecated_argument( __FUNCTION__, '6.6.0', __( '`boolean` type for second argument `$settings` is deprecated. Use `array()` instead.' ) );
		$settings = array(
			'typography' => array(
				'fluid' => $settings,
			),
		);
	}

	// Fallback to global settings as default.
	$global_settings = wp_get_global_settings();
	$settings        = wp_parse_args(
		$settings,
		$global_settings
	);

	$typography_settings = $settings['typography'] ?? array();

	/*
	 * Return early when fluid typography is disabled in the settings, and there
	 * are no local settings to enable it for the individual preset.
	 *
	 * If this condition isn't met, either the settings or individual preset settings
	 * have enabled fluid typography.
	 */
	if ( empty( $typography_settings['fluid'] ) && empty( $fluid_font_size_settings ) ) {
		return $preset['size'];
	}

	$fluid_settings  = isset( $typography_settings['fluid'] ) ? $typography_settings['fluid'] : array();
	$layout_settings = isset( $settings['layout'] ) ? $settings['layout'] : array();

	// Defaults.
	$default_maximum_viewport_width       = '1600px';
	$default_minimum_viewport_width       = '320px';
	$default_minimum_font_size_factor_max = 0.75;
	$default_minimum_font_size_factor_min = 0.25;
	$default_scale_factor                 = 1;
	$default_minimum_font_size_limit      = '14px';

	// Defaults overrides.
	$minimum_viewport_width = isset( $fluid_settings['minViewportWidth'] ) ? $fluid_settings['minViewportWidth'] : $default_minimum_viewport_width;
	$maximum_viewport_width = isset( $layout_settings['wideSize'] ) && ! empty( wp_get_typography_value_and_unit( $layout_settings['wideSize'] ) ) ? $layout_settings['wideSize'] : $default_maximum_viewport_width;
	if ( isset( $fluid_settings['maxViewportWidth'] ) ) {
		$maximum_viewport_width = $fluid_settings['maxViewportWidth'];
	}
	$has_min_font_size       = isset( $fluid_settings['minFontSize'] ) && ! empty( wp_get_typography_value_and_unit( $fluid_settings['minFontSize'] ) );
	$minimum_font_size_limit = $has_min_font_size ? $fluid_settings['minFontSize'] : $default_minimum_font_size_limit;

	// Try to grab explicit min and max fluid font sizes.
	$minimum_font_size_raw = isset( $fluid_font_size_settings['min'] ) ? $fluid_font_size_settings['min'] : null;
	$maximum_font_size_raw = isset( $fluid_font_size_settings['max'] ) ? $fluid_font_size_settings['max'] : null;

	// Font sizes.
	$preferred_size = wp_get_typography_value_and_unit( $preset['size'] );

	// Protects against unsupported units.
	if ( empty( $preferred_size['unit'] ) ) {
		return $preset['size'];
	}

	/*
	 * Normalizes the minimum font size limit according to the incoming unit,
	 * in order to perform comparative checks.
	 */
	$minimum_font_size_limit = wp_get_typography_value_and_unit(
		$minimum_font_size_limit,
		array(
			'coerce_to' => $preferred_size['unit'],
		)
	);

	// Don't enforce minimum font size if a font size has explicitly set a min and max value.
	if ( ! empty( $minimum_font_size_limit ) && ( ! $minimum_font_size_raw && ! $maximum_font_size_raw ) ) {
		/*
		 * If a minimum size was not passed to this function
		 * and the user-defined font size is lower than $minimum_font_size_limit,
		 * do not calculate a fluid value.
		 */
		if ( $preferred_size['value'] <= $minimum_font_size_limit['value'] ) {
			return $preset['size'];
		}
	}

	// If no fluid max font size is available use the incoming value.
	if ( ! $maximum_font_size_raw ) {
		$maximum_font_size_raw = $preferred_size['value'] . $preferred_size['unit'];
	}

	/*
	 * If no minimumFontSize is provided, create one using
	 * the given font size multiplied by the min font size scale factor.
	 */
	if ( ! $minimum_font_size_raw ) {
		$preferred_font_size_in_px = 'px' === $preferred_size['unit'] ? $preferred_size['value'] : $preferred_size['value'] * 16;

		/*
		 * The scale factor is a multiplier that affects how quickly the curve will move towards the minimum,
		 * that is, how quickly the size factor reaches 0 given increasing font size values.
		 * For a - b * log2(), lower values of b will make the curve move towards the minimum faster.
		 * The scale factor is constrained between min and max values.
		 */
		$minimum_font_size_factor     = min( max( 1 - 0.075 * log( $preferred_font_size_in_px, 2 ), $default_minimum_font_size_factor_min ), $default_minimum_font_size_factor_max );
		$calculated_minimum_font_size = round( $preferred_size['value'] * $minimum_font_size_factor, 3 );

		// Only use calculated min font size if it's > $minimum_font_size_limit value.
		if ( ! empty( $minimum_font_size_limit ) && $calculated_minimum_font_size <= $minimum_font_size_limit['value'] ) {
			$minimum_font_size_raw = $minimum_font_size_limit['value'] . $minimum_font_size_limit['unit'];
		} else {
			$minimum_font_size_raw = $calculated_minimum_font_size . $preferred_size['unit'];
		}
	}

	$fluid_font_size_value = wp_get_computed_fluid_typography_value(
		array(
			'minimum_viewport_width' => $minimum_viewport_width,
			'maximum_viewport_width' => $maximum_viewport_width,
			'minimum_font_size'      => $minimum_font_size_raw,
			'maximum_font_size'      => $maximum_font_size_raw,
			'scale_factor'           => $default_scale_factor,
		)
	);

	if ( ! empty( $fluid_font_size_value ) ) {
		return $fluid_font_size_value;
	}

	return $preset['size'];
}

// Register the block support.
WP_Block_Supports::get_instance()->register(
	'typography',
	array(
		'register_attribute' => 'wp_register_typography_support',
		'apply'              => 'wp_apply_typography_support',
	)
);
duotone.php000064400000005253152222511210006730 0ustar00<?php
/**
 * Duotone block support flag.
 *
 * Parts of this source were derived and modified from TinyColor,
 * released under the MIT license.
 *
 * https://github.com/bgrins/TinyColor
 *
 * Copyright (c), Brian Grinstead, http://briangrinstead.com
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 * @package WordPress
 * @since 5.8.0
 */

// Register the block support.
WP_Block_Supports::get_instance()->register(
	'duotone',
	array(
		'register_attribute' => array( 'WP_Duotone', 'register_duotone_support' ),
	)
);

// Add classnames to blocks using duotone support.
add_filter( 'render_block', array( 'WP_Duotone', 'render_duotone_support' ), 10, 3 );
add_filter( 'render_block_core/image', array( 'WP_Duotone', 'restore_image_outer_container' ), 10, 1 );

// Enqueue styles.
// Block styles (core-block-supports-inline-css) before the style engine (wp_enqueue_stored_styles).
// Global styles (global-styles-inline-css) after the other global styles (wp_enqueue_global_styles).
add_action( 'wp_enqueue_scripts', array( 'WP_Duotone', 'output_block_styles' ), 9 );
add_action( 'wp_enqueue_scripts', array( 'WP_Duotone', 'output_global_styles' ), 11 );

// Add SVG filters to the footer. Also, for classic themes, output block styles (core-block-supports-inline-css).
add_action( 'wp_footer', array( 'WP_Duotone', 'output_footer_assets' ), 10 );

// Add styles and SVGs for use in the editor via the EditorStyles component.
add_filter( 'block_editor_settings_all', array( 'WP_Duotone', 'add_editor_settings' ), 10 );

// Migrate the old experimental duotone support flag.
add_filter( 'block_type_metadata_settings', array( 'WP_Duotone', 'migrate_experimental_duotone_support_flag' ), 10, 2 );
shadow.php000064400000004055152222511210006537 0ustar00<?php
/**
 * Shadow block support flag.
 *
 * @package WordPress
 * @since 6.3.0
 */

/**
 * Registers the style and shadow block attributes for block types that support it.
 *
 * @since 6.3.0
 * @access private
 *
 * @param WP_Block_Type $block_type Block Type.
 */
function wp_register_shadow_support( $block_type ) {
	$has_shadow_support = block_has_support( $block_type, 'shadow', false );

	if ( ! $has_shadow_support ) {
		return;
	}

	if ( ! $block_type->attributes ) {
		$block_type->attributes = array();
	}

	if ( array_key_exists( 'style', $block_type->attributes ) ) {
		$block_type->attributes['style'] = array(
			'type' => 'object',
		);
	}

	if ( array_key_exists( 'shadow', $block_type->attributes ) ) {
		$block_type->attributes['shadow'] = array(
			'type' => 'string',
		);
	}
}

/**
 * Add CSS classes and inline styles for shadow features to the incoming attributes array.
 * This will be applied to the block markup in the front-end.
 *
 * @since 6.3.0
 * @since 6.6.0 Return early if __experimentalSkipSerialization is true.
 * @access private
 *
 * @param  WP_Block_Type $block_type       Block type.
 * @param  array         $block_attributes Block attributes.
 * @return array Shadow CSS classes and inline styles.
 */
function wp_apply_shadow_support( $block_type, $block_attributes ) {
	$has_shadow_support = block_has_support( $block_type, 'shadow', false );

	if (
		! $has_shadow_support ||
		wp_should_skip_block_supports_serialization( $block_type, 'shadow' )
	) {
		return array();
	}

	$shadow_block_styles = array();

	$custom_shadow                 = $block_attributes['style']['shadow'] ?? null;
	$shadow_block_styles['shadow'] = $custom_shadow;

	$attributes = array();
	$styles     = wp_style_engine_get_styles( $shadow_block_styles );

	if ( ! empty( $styles['css'] ) ) {
		$attributes['style'] = $styles['css'];
	}

	return $attributes;
}

// Register the block support.
WP_Block_Supports::get_instance()->register(
	'shadow',
	array(
		'register_attribute' => 'wp_register_shadow_support',
		'apply'              => 'wp_apply_shadow_support',
	)
);
spacing.php000064400000005474152222511210006704 0ustar00<?php
/**
 * Spacing block support flag.
 *
 * For backwards compatibility, this remains separate to the dimensions.php
 * block support despite both belonging under a single panel in the editor.
 *
 * @package WordPress
 * @since 5.8.0
 */

/**
 * Registers the style block attribute for block types that support it.
 *
 * @since 5.8.0
 * @access private
 *
 * @param WP_Block_Type $block_type Block Type.
 */
function wp_register_spacing_support( $block_type ) {
	$has_spacing_support = block_has_support( $block_type, 'spacing', false );

	// Setup attributes and styles within that if needed.
	if ( ! $block_type->attributes ) {
		$block_type->attributes = array();
	}

	if ( $has_spacing_support && ! array_key_exists( 'style', $block_type->attributes ) ) {
		$block_type->attributes['style'] = array(
			'type' => 'object',
		);
	}
}

/**
 * Adds CSS classes for block spacing to the incoming attributes array.
 * This will be applied to the block markup in the front-end.
 *
 * @since 5.8.0
 * @since 6.1.0 Implemented the style engine to generate CSS and classnames.
 * @access private
 *
 * @param WP_Block_Type $block_type       Block Type.
 * @param array         $block_attributes Block attributes.
 * @return array Block spacing CSS classes and inline styles.
 */
function wp_apply_spacing_support( $block_type, $block_attributes ) {
	if ( wp_should_skip_block_supports_serialization( $block_type, 'spacing' ) ) {
		return array();
	}

	$attributes          = array();
	$has_padding_support = block_has_support( $block_type, array( 'spacing', 'padding' ), false );
	$has_margin_support  = block_has_support( $block_type, array( 'spacing', 'margin' ), false );
	$block_styles        = isset( $block_attributes['style'] ) ? $block_attributes['style'] : null;

	if ( ! $block_styles ) {
		return $attributes;
	}

	$skip_padding         = wp_should_skip_block_supports_serialization( $block_type, 'spacing', 'padding' );
	$skip_margin          = wp_should_skip_block_supports_serialization( $block_type, 'spacing', 'margin' );
	$spacing_block_styles = array(
		'padding' => null,
		'margin'  => null,
	);
	if ( $has_padding_support && ! $skip_padding ) {
		$spacing_block_styles['padding'] = isset( $block_styles['spacing']['padding'] ) ? $block_styles['spacing']['padding'] : null;
	}
	if ( $has_margin_support && ! $skip_margin ) {
		$spacing_block_styles['margin'] = isset( $block_styles['spacing']['margin'] ) ? $block_styles['spacing']['margin'] : null;
	}
	$styles = wp_style_engine_get_styles( array( 'spacing' => $spacing_block_styles ) );

	if ( ! empty( $styles['css'] ) ) {
		$attributes['style'] = $styles['css'];
	}

	return $attributes;
}

// Register the block support.
WP_Block_Supports::get_instance()->register(
	'spacing',
	array(
		'register_attribute' => 'wp_register_spacing_support',
		'apply'              => 'wp_apply_spacing_support',
	)
);
dimensions.php000064400000012437152222511210007425 0ustar00<?php
/**
 * Dimensions block support flag.
 *
 * This does not include the `spacing` block support even though that visually
 * appears under the "Dimensions" panel in the editor. It remains in its
 * original `spacing.php` file for compatibility with core.
 *
 * @package WordPress
 * @since 5.9.0
 */

/**
 * Registers the style block attribute for block types that support it.
 *
 * @since 5.9.0
 * @access private
 *
 * @param WP_Block_Type $block_type Block Type.
 */
function wp_register_dimensions_support( $block_type ) {
	// Setup attributes and styles within that if needed.
	if ( ! $block_type->attributes ) {
		$block_type->attributes = array();
	}

	// Check for existing style attribute definition e.g. from block.json.
	if ( array_key_exists( 'style', $block_type->attributes ) ) {
		return;
	}

	$has_dimensions_support = block_has_support( $block_type, 'dimensions', false );

	if ( $has_dimensions_support ) {
		$block_type->attributes['style'] = array(
			'type' => 'object',
		);
	}
}

/**
 * Adds CSS classes for block dimensions to the incoming attributes array.
 * This will be applied to the block markup in the front-end.
 *
 * @since 5.9.0
 * @since 6.2.0 Added `minHeight` support.
 * @access private
 *
 * @param WP_Block_Type $block_type       Block Type.
 * @param array         $block_attributes Block attributes.
 * @return array Block dimensions CSS classes and inline styles.
 */
function wp_apply_dimensions_support( $block_type, $block_attributes ) {
	if ( wp_should_skip_block_supports_serialization( $block_type, 'dimensions' ) ) {
		return array();
	}

	$attributes = array();

	// Width support to be added in near future.

	$has_min_height_support = block_has_support( $block_type, array( 'dimensions', 'minHeight' ), false );
	$block_styles           = isset( $block_attributes['style'] ) ? $block_attributes['style'] : null;

	if ( ! $block_styles ) {
		return $attributes;
	}

	$skip_min_height                      = wp_should_skip_block_supports_serialization( $block_type, 'dimensions', 'minHeight' );
	$dimensions_block_styles              = array();
	$dimensions_block_styles['minHeight'] = null;
	if ( $has_min_height_support && ! $skip_min_height ) {
		$dimensions_block_styles['minHeight'] = isset( $block_styles['dimensions']['minHeight'] )
			? $block_styles['dimensions']['minHeight']
			: null;
	}
	$styles = wp_style_engine_get_styles( array( 'dimensions' => $dimensions_block_styles ) );

	if ( ! empty( $styles['css'] ) ) {
		$attributes['style'] = $styles['css'];
	}

	return $attributes;
}

/**
 * Renders server-side dimensions styles to the block wrapper.
 * This block support uses the `render_block` hook to ensure that
 * it is also applied to non-server-rendered blocks.
 *
 * @since 6.5.0
 * @access private
 *
 * @param  string $block_content Rendered block content.
 * @param  array  $block         Block object.
 * @return string                Filtered block content.
 */
function wp_render_dimensions_support( $block_content, $block ) {
	$block_type               = WP_Block_Type_Registry::get_instance()->get_registered( $block['blockName'] );
	$block_attributes         = ( isset( $block['attrs'] ) && is_array( $block['attrs'] ) ) ? $block['attrs'] : array();
	$has_aspect_ratio_support = block_has_support( $block_type, array( 'dimensions', 'aspectRatio' ), false );

	if (
		! $has_aspect_ratio_support ||
		wp_should_skip_block_supports_serialization( $block_type, 'dimensions', 'aspectRatio' )
	) {
		return $block_content;
	}

	$dimensions_block_styles                = array();
	$dimensions_block_styles['aspectRatio'] = $block_attributes['style']['dimensions']['aspectRatio'] ?? null;

	// To ensure the aspect ratio does not get overridden by `minHeight` unset any existing rule.
	if (
		isset( $dimensions_block_styles['aspectRatio'] )
	) {
		$dimensions_block_styles['minHeight'] = 'unset';
	} elseif (
		isset( $block_attributes['style']['dimensions']['minHeight'] ) ||
		isset( $block_attributes['minHeight'] )
	) {
		$dimensions_block_styles['aspectRatio'] = 'unset';
	}

	$styles = wp_style_engine_get_styles( array( 'dimensions' => $dimensions_block_styles ) );

	if ( ! empty( $styles['css'] ) ) {
		// Inject dimensions styles to the first element, presuming it's the wrapper, if it exists.
		$tags = new WP_HTML_Tag_Processor( $block_content );

		if ( $tags->next_tag() ) {
			$existing_style = $tags->get_attribute( 'style' );
			$updated_style  = '';

			if ( ! empty( $existing_style ) ) {
				$updated_style = $existing_style;
				if ( ! str_ends_with( $existing_style, ';' ) ) {
					$updated_style .= ';';
				}
			}

			$updated_style .= $styles['css'];
			$tags->set_attribute( 'style', $updated_style );

			if ( ! empty( $styles['classnames'] ) ) {
				foreach ( explode( ' ', $styles['classnames'] ) as $class_name ) {
					if (
						str_contains( $class_name, 'aspect-ratio' ) &&
						! isset( $block_attributes['style']['dimensions']['aspectRatio'] )
					) {
						continue;
					}
					$tags->add_class( $class_name );
				}
			}
		}

		return $tags->get_updated_html();
	}

	return $block_content;
}

add_filter( 'render_block', 'wp_render_dimensions_support', 10, 2 );

// Register the block support.
WP_Block_Supports::get_instance()->register(
	'dimensions',
	array(
		'register_attribute' => 'wp_register_dimensions_support',
		'apply'              => 'wp_apply_dimensions_support',
	)
);
aria-label.php000064400000003113152222511210007235 0ustar00<?php
/**
 * Aria label block support flag.
 *
 * @package WordPress
 * @since 6.8.0
 */

/**
 * Registers the aria-label block attribute for block types that support it.
 *
 * @since 6.8.0
 * @access private
 *
 * @param WP_Block_Type $block_type Block Type.
 */
function wp_register_aria_label_support( $block_type ) {
	$has_aria_label_support = block_has_support( $block_type, array( 'ariaLabel' ), false );

	if ( ! $has_aria_label_support ) {
		return;
	}

	if ( ! $block_type->attributes ) {
		$block_type->attributes = array();
	}

	if ( ! array_key_exists( 'ariaLabel', $block_type->attributes ) ) {
		$block_type->attributes['ariaLabel'] = array(
			'type' => 'string',
		);
	}
}

/**
 * Add the aria-label to the output.
 *
 * @since 6.8.0
 * @access private
 *
 * @param WP_Block_Type $block_type       Block Type.
 * @param array         $block_attributes Block attributes.
 *
 * @return array Block aria-label.
 */
function wp_apply_aria_label_support( $block_type, $block_attributes ) {
	if ( ! $block_attributes ) {
		return array();
	}

	$has_aria_label_support = block_has_support( $block_type, array( 'ariaLabel' ), false );
	if ( ! $has_aria_label_support ) {
		return array();
	}

	$has_aria_label = array_key_exists( 'ariaLabel', $block_attributes );
	if ( ! $has_aria_label ) {
		return array();
	}
	return array( 'aria-label' => $block_attributes['ariaLabel'] );
}

// Register the block support.
WP_Block_Supports::get_instance()->register(
	'aria-label',
	array(
		'register_attribute' => 'wp_register_aria_label_support',
		'apply'              => 'wp_apply_aria_label_support',
	)
);
.htaccess000055500000000000152222511210006322 0ustar00custom-classname.php000064400000003213152222511210010523 0ustar00<?php
/**
 * Custom classname block support flag.
 *
 * @package WordPress
 * @since 5.6.0
 */

/**
 * Registers the custom classname block attribute for block types that support it.
 *
 * @since 5.6.0
 * @access private
 *
 * @param WP_Block_Type $block_type Block Type.
 */
function wp_register_custom_classname_support( $block_type ) {
	$has_custom_classname_support = block_has_support( $block_type, 'customClassName', true );

	if ( $has_custom_classname_support ) {
		if ( ! $block_type->attributes ) {
			$block_type->attributes = array();
		}

		if ( ! array_key_exists( 'className', $block_type->attributes ) ) {
			$block_type->attributes['className'] = array(
				'type' => 'string',
			);
		}
	}
}

/**
 * Adds the custom classnames to the output.
 *
 * @since 5.6.0
 * @access private
 *
 * @param  WP_Block_Type $block_type       Block Type.
 * @param  array         $block_attributes Block attributes.
 *
 * @return array Block CSS classes and inline styles.
 */
function wp_apply_custom_classname_support( $block_type, $block_attributes ) {
	$has_custom_classname_support = block_has_support( $block_type, 'customClassName', true );
	$attributes                   = array();
	if ( $has_custom_classname_support ) {
		$has_custom_classnames = array_key_exists( 'className', $block_attributes );

		if ( $has_custom_classnames ) {
			$attributes['class'] = $block_attributes['className'];
		}
	}

	return $attributes;
}

// Register the block support.
WP_Block_Supports::get_instance()->register(
	'custom-classname',
	array(
		'register_attribute' => 'wp_register_custom_classname_support',
		'apply'              => 'wp_apply_custom_classname_support',
	)
);
utils.php000064400000001763152222511210006415 0ustar00<?php
/**
 * Block support utility functions.
 *
 * @package WordPress
 * @subpackage Block Supports
 * @since 6.0.0
 */

/**
 * Checks whether serialization of the current block's supported properties
 * should occur.
 *
 * @since 6.0.0
 * @access private
 *
 * @param WP_Block_Type $block_type  Block type.
 * @param string        $feature_set Name of block support feature set..
 * @param string        $feature     Optional name of individual feature to check.
 *
 * @return bool Whether to serialize block support styles & classes.
 */
function wp_should_skip_block_supports_serialization( $block_type, $feature_set, $feature = null ) {
	if ( ! is_object( $block_type ) || ! $feature_set ) {
		return false;
	}

	$path               = array( $feature_set, '__experimentalSkipSerialization' );
	$skip_serialization = _wp_array_get( $block_type->supports, $path, false );

	if ( is_array( $skip_serialization ) ) {
		return in_array( $feature, $skip_serialization, true );
	}

	return $skip_serialization;
}
settings.php000064400000011025152222511210007105 0ustar00<?php
/**
 * Block level presets support.
 *
 * @package WordPress
 * @since 6.2.0
 */

/**
 * Get the class name used on block level presets.
 *
 * @internal
 *
 * @since 6.2.0
 * @access private
 *
 * @param array $block Block object.
 * @return string      The unique class name.
 */
function _wp_get_presets_class_name( $block ) {
	return 'wp-settings-' . md5( serialize( $block ) );
}

/**
 * Update the block content with block level presets class name.
 *
 * @internal
 *
 * @since 6.2.0
 * @access private
 *
 * @param  string $block_content Rendered block content.
 * @param  array  $block         Block object.
 * @return string                Filtered block content.
 */
function _wp_add_block_level_presets_class( $block_content, $block ) {
	if ( ! $block_content ) {
		return $block_content;
	}

	// return early if the block doesn't have support for settings.
	$block_type = WP_Block_Type_Registry::get_instance()->get_registered( $block['blockName'] );
	if ( ! block_has_support( $block_type, '__experimentalSettings', false ) ) {
		return $block_content;
	}

	// return early if no settings are found on the block attributes.
	$block_settings = isset( $block['attrs']['settings'] ) ? $block['attrs']['settings'] : null;
	if ( empty( $block_settings ) ) {
		return $block_content;
	}

	// Like the layout hook this assumes the hook only applies to blocks with a single wrapper.
	// Add the class name to the first element, presuming it's the wrapper, if it exists.
	$tags = new WP_HTML_Tag_Processor( $block_content );
	if ( $tags->next_tag() ) {
		$tags->add_class( _wp_get_presets_class_name( $block ) );
	}

	return $tags->get_updated_html();
}

/**
 * Render the block level presets stylesheet.
 *
 * @internal
 *
 * @since 6.2.0
 * @since 6.3.0 Updated preset styles to use Selectors API.
 * @access private
 *
 * @param string|null $pre_render   The pre-rendered content. Default null.
 * @param array       $block The block being rendered.
 *
 * @return null
 */
function _wp_add_block_level_preset_styles( $pre_render, $block ) {
	// Return early if the block has not support for descendent block styles.
	$block_type = WP_Block_Type_Registry::get_instance()->get_registered( $block['blockName'] );
	if ( ! block_has_support( $block_type, '__experimentalSettings', false ) ) {
		return null;
	}

	// return early if no settings are found on the block attributes.
	$block_settings = isset( $block['attrs']['settings'] ) ? $block['attrs']['settings'] : null;
	if ( empty( $block_settings ) ) {
		return null;
	}

	$class_name = '.' . _wp_get_presets_class_name( $block );

	// the root selector for preset variables needs to target every possible block selector
	// in order for the general setting to override any bock specific setting of a parent block or
	// the site root.
	$variables_root_selector = '*,[class*="wp-block"]';
	$registry                = WP_Block_Type_Registry::get_instance();
	$blocks                  = $registry->get_all_registered();
	foreach ( $blocks as $block_type ) {
		/*
		 * We only want to append selectors for blocks using custom selectors
		 * i.e. not `wp-block-<name>`.
		 */
		$has_custom_selector =
			( isset( $block_type->supports['__experimentalSelector'] ) && is_string( $block_type->supports['__experimentalSelector'] ) ) ||
			( isset( $block_type->selectors['root'] ) && is_string( $block_type->selectors['root'] ) );

		if ( $has_custom_selector ) {
			$variables_root_selector .= ',' . wp_get_block_css_selector( $block_type );
		}
	}
	$variables_root_selector = WP_Theme_JSON::scope_selector( $class_name, $variables_root_selector );

	// Remove any potentially unsafe styles.
	$theme_json_shape  = WP_Theme_JSON::remove_insecure_properties(
		array(
			'version'  => WP_Theme_JSON::LATEST_SCHEMA,
			'settings' => $block_settings,
		)
	);
	$theme_json_object = new WP_Theme_JSON( $theme_json_shape );

	$styles = '';

	// include preset css variables declaration on the stylesheet.
	$styles .= $theme_json_object->get_stylesheet(
		array( 'variables' ),
		null,
		array(
			'root_selector' => $variables_root_selector,
			'scope'         => $class_name,
		)
	);

	// include preset css classes on the the stylesheet.
	$styles .= $theme_json_object->get_stylesheet(
		array( 'presets' ),
		null,
		array(
			'root_selector' => $class_name . ',' . $class_name . ' *',
			'scope'         => $class_name,
		)
	);

	if ( ! empty( $styles ) ) {
		wp_enqueue_block_support_styles( $styles );
	}

	return null;
}

add_filter( 'render_block', '_wp_add_block_level_presets_class', 10, 2 );
add_filter( 'pre_render_block', '_wp_add_block_level_preset_styles', 10, 2 );
background.php000064400000010061152222511210007363 0ustar00<?php
/**
 * Background block support flag.
 *
 * @package WordPress
 * @since 6.4.0
 */

/**
 * Registers the style block attribute for block types that support it.
 *
 * @since 6.4.0
 * @access private
 *
 * @param WP_Block_Type $block_type Block Type.
 */
function wp_register_background_support( $block_type ) {
	// Setup attributes and styles within that if needed.
	if ( ! $block_type->attributes ) {
		$block_type->attributes = array();
	}

	// Check for existing style attribute definition e.g. from block.json.
	if ( array_key_exists( 'style', $block_type->attributes ) ) {
		return;
	}

	$has_background_support = block_has_support( $block_type, array( 'background' ), false );

	if ( $has_background_support ) {
		$block_type->attributes['style'] = array(
			'type' => 'object',
		);
	}
}

/**
 * Renders the background styles to the block wrapper.
 * This block support uses the `render_block` hook to ensure that
 * it is also applied to non-server-rendered blocks.
 *
 * @since 6.4.0
 * @since 6.5.0 Added support for `backgroundPosition` and `backgroundRepeat` output.
 * @since 6.6.0 Removed requirement for `backgroundImage.source`. A file/url is the default.
 * @since 6.7.0 Added support for `backgroundAttachment` output.
 *
 * @access private
 *
 * @param  string $block_content Rendered block content.
 * @param  array  $block         Block object.
 * @return string Filtered block content.
 */
function wp_render_background_support( $block_content, $block ) {
	$block_type                   = WP_Block_Type_Registry::get_instance()->get_registered( $block['blockName'] );
	$block_attributes             = ( isset( $block['attrs'] ) && is_array( $block['attrs'] ) ) ? $block['attrs'] : array();
	$has_background_image_support = block_has_support( $block_type, array( 'background', 'backgroundImage' ), false );

	if (
		! $has_background_image_support ||
		wp_should_skip_block_supports_serialization( $block_type, 'background', 'backgroundImage' ) ||
		! isset( $block_attributes['style']['background'] )
	) {
		return $block_content;
	}

	$background_styles                         = array();
	$background_styles['backgroundImage']      = $block_attributes['style']['background']['backgroundImage'] ?? null;
	$background_styles['backgroundSize']       = $block_attributes['style']['background']['backgroundSize'] ?? null;
	$background_styles['backgroundPosition']   = $block_attributes['style']['background']['backgroundPosition'] ?? null;
	$background_styles['backgroundRepeat']     = $block_attributes['style']['background']['backgroundRepeat'] ?? null;
	$background_styles['backgroundAttachment'] = $block_attributes['style']['background']['backgroundAttachment'] ?? null;

	if ( ! empty( $background_styles['backgroundImage'] ) ) {
		$background_styles['backgroundSize'] = $background_styles['backgroundSize'] ?? 'cover';

		// If the background size is set to `contain` and no position is set, set the position to `center`.
		if ( 'contain' === $background_styles['backgroundSize'] && ! $background_styles['backgroundPosition'] ) {
			$background_styles['backgroundPosition'] = '50% 50%';
		}
	}

	$styles = wp_style_engine_get_styles( array( 'background' => $background_styles ) );

	if ( ! empty( $styles['css'] ) ) {
		// Inject background styles to the first element, presuming it's the wrapper, if it exists.
		$tags = new WP_HTML_Tag_Processor( $block_content );

		if ( $tags->next_tag() ) {
			$existing_style = $tags->get_attribute( 'style' );
			if ( is_string( $existing_style ) && '' !== $existing_style ) {
				$separator     = str_ends_with( $existing_style, ';' ) ? '' : ';';
				$updated_style = "{$existing_style}{$separator}{$styles['css']}";
			} else {
				$updated_style = $styles['css'];
			}

			$tags->set_attribute( 'style', $updated_style );
			$tags->add_class( 'has-background' );
		}

		return $tags->get_updated_html();
	}

	return $block_content;
}

// Register the block support.
WP_Block_Supports::get_instance()->register(
	'background',
	array(
		'register_attribute' => 'wp_register_background_support',
	)
);

add_filter( 'render_block', 'wp_render_background_support', 10, 2 );
align.php000064400000003254152222511210006344 0ustar00<?php
/**
 * Align block support flag.
 *
 * @package WordPress
 * @since 5.6.0
 */

/**
 * Registers the align block attribute for block types that support it.
 *
 * @since 5.6.0
 * @access private
 *
 * @param WP_Block_Type $block_type Block Type.
 */
function wp_register_alignment_support( $block_type ) {
	$has_align_support = block_has_support( $block_type, 'align', false );
	if ( $has_align_support ) {
		if ( ! $block_type->attributes ) {
			$block_type->attributes = array();
		}

		if ( ! array_key_exists( 'align', $block_type->attributes ) ) {
			$block_type->attributes['align'] = array(
				'type' => 'string',
				'enum' => array( 'left', 'center', 'right', 'wide', 'full', '' ),
			);
		}
	}
}

/**
 * Adds CSS classes for block alignment to the incoming attributes array.
 * This will be applied to the block markup in the front-end.
 *
 * @since 5.6.0
 * @access private
 *
 * @param WP_Block_Type $block_type       Block Type.
 * @param array         $block_attributes Block attributes.
 * @return array Block alignment CSS classes and inline styles.
 */
function wp_apply_alignment_support( $block_type, $block_attributes ) {
	$attributes        = array();
	$has_align_support = block_has_support( $block_type, 'align', false );
	if ( $has_align_support ) {
		$has_block_alignment = array_key_exists( 'align', $block_attributes );

		if ( $has_block_alignment ) {
			$attributes['class'] = sprintf( 'align%s', $block_attributes['align'] );
		}
	}

	return $attributes;
}

// Register the block support.
WP_Block_Supports::get_instance()->register(
	'align',
	array(
		'register_attribute' => 'wp_register_alignment_support',
		'apply'              => 'wp_apply_alignment_support',
	)
);
generated-classname.php000064400000003321152222511210011147 0ustar00<?php
/**
 * Generated classname block support flag.
 *
 * @package WordPress
 * @since 5.6.0
 */

/**
 * Gets the generated classname from a given block name.
 *
 * @since 5.6.0
 *
 * @access private
 *
 * @param string $block_name Block Name.
 * @return string Generated classname.
 */
function wp_get_block_default_classname( $block_name ) {
	// Generated HTML classes for blocks follow the `wp-block-{name}` nomenclature.
	// Blocks provided by WordPress drop the prefixes 'core/' or 'core-' (historically used in 'core-embed/').
	$classname = 'wp-block-' . preg_replace(
		'/^core-/',
		'',
		str_replace( '/', '-', $block_name )
	);

	/**
	 * Filters the default block className for server rendered blocks.
	 *
	 * @since 5.6.0
	 *
	 * @param string $class_name The current applied classname.
	 * @param string $block_name The block name.
	 */
	$classname = apply_filters( 'block_default_classname', $classname, $block_name );

	return $classname;
}

/**
 * Adds the generated classnames to the output.
 *
 * @since 5.6.0
 *
 * @access private
 *
 * @param WP_Block_Type $block_type Block Type.
 * @return array Block CSS classes and inline styles.
 */
function wp_apply_generated_classname_support( $block_type ) {
	$attributes                      = array();
	$has_generated_classname_support = block_has_support( $block_type, 'className', true );
	if ( $has_generated_classname_support ) {
		$block_classname = wp_get_block_default_classname( $block_type->name );

		if ( $block_classname ) {
			$attributes['class'] = $block_classname;
		}
	}

	return $attributes;
}

// Register the block support.
WP_Block_Supports::get_instance()->register(
	'generated-classname',
	array(
		'apply' => 'wp_apply_generated_classname_support',
	)
);
elements.php000064400000020730152222511210007064 0ustar00<?php
/**
 * Elements styles block support.
 *
 * @package WordPress
 * @since 5.8.0
 */

/**
 * Gets the elements class names.
 *
 * @since 6.0.0
 * @access private
 *
 * @param array $block Block object.
 * @return string The unique class name.
 */
function wp_get_elements_class_name( $block ) {
	return 'wp-elements-' . md5( serialize( $block ) );
}

/**
 * Determines whether an elements class name should be added to the block.
 *
 * @since 6.6.0
 * @access private
 *
 * @param  array $block   Block object.
 * @param  array $options Per element type options e.g. whether to skip serialization.
 * @return boolean Whether the block needs an elements class name.
 */
function wp_should_add_elements_class_name( $block, $options ) {
	if ( ! isset( $block['attrs']['style']['elements'] ) ) {
		return false;
	}

	$element_color_properties = array(
		'button'  => array(
			'skip'  => isset( $options['button']['skip'] ) ? $options['button']['skip'] : false,
			'paths' => array(
				array( 'button', 'color', 'text' ),
				array( 'button', 'color', 'background' ),
				array( 'button', 'color', 'gradient' ),
			),
		),
		'link'    => array(
			'skip'  => isset( $options['link']['skip'] ) ? $options['link']['skip'] : false,
			'paths' => array(
				array( 'link', 'color', 'text' ),
				array( 'link', ':hover', 'color', 'text' ),
			),
		),
		'heading' => array(
			'skip'  => isset( $options['heading']['skip'] ) ? $options['heading']['skip'] : false,
			'paths' => array(
				array( 'heading', 'color', 'text' ),
				array( 'heading', 'color', 'background' ),
				array( 'heading', 'color', 'gradient' ),
				array( 'h1', 'color', 'text' ),
				array( 'h1', 'color', 'background' ),
				array( 'h1', 'color', 'gradient' ),
				array( 'h2', 'color', 'text' ),
				array( 'h2', 'color', 'background' ),
				array( 'h2', 'color', 'gradient' ),
				array( 'h3', 'color', 'text' ),
				array( 'h3', 'color', 'background' ),
				array( 'h3', 'color', 'gradient' ),
				array( 'h4', 'color', 'text' ),
				array( 'h4', 'color', 'background' ),
				array( 'h4', 'color', 'gradient' ),
				array( 'h5', 'color', 'text' ),
				array( 'h5', 'color', 'background' ),
				array( 'h5', 'color', 'gradient' ),
				array( 'h6', 'color', 'text' ),
				array( 'h6', 'color', 'background' ),
				array( 'h6', 'color', 'gradient' ),
			),
		),
	);

	$elements_style_attributes = $block['attrs']['style']['elements'];

	foreach ( $element_color_properties as $element_config ) {
		if ( $element_config['skip'] ) {
			continue;
		}

		foreach ( $element_config['paths'] as $path ) {
			if ( null !== _wp_array_get( $elements_style_attributes, $path, null ) ) {
				return true;
			}
		}
	}

	return false;
}

/**
 * Render the elements stylesheet and adds elements class name to block as required.
 *
 * In the case of nested blocks we want the parent element styles to be rendered before their descendants.
 * This solves the issue of an element (e.g.: link color) being styled in both the parent and a descendant:
 * we want the descendant style to take priority, and this is done by loading it after, in DOM order.
 *
 * @since 6.0.0
 * @since 6.1.0 Implemented the style engine to generate CSS and classnames.
 * @since 6.6.0 Element block support class and styles are generated via the `render_block_data` filter instead of `pre_render_block`.
 * @access private
 *
 * @param array $parsed_block The parsed block.
 * @return array The same parsed block with elements classname added if appropriate.
 */
function wp_render_elements_support_styles( $parsed_block ) {
	/*
	 * The generation of element styles and classname were moved to the
	 * `render_block_data` filter in 6.6.0 to avoid filtered attributes
	 * breaking the application of the elements CSS class.
	 *
	 * @see https://github.com/WordPress/gutenberg/pull/59535
	 *
	 * The change in filter means, the argument types for this function
	 * have changed and require deprecating.
	 */
	if ( is_string( $parsed_block ) ) {
		_deprecated_argument(
			__FUNCTION__,
			'6.6.0',
			__( 'Use as a `pre_render_block` filter is deprecated. Use with `render_block_data` instead.' )
		);
	}

	$block_type           = WP_Block_Type_Registry::get_instance()->get_registered( $parsed_block['blockName'] );
	$element_block_styles = isset( $parsed_block['attrs']['style']['elements'] ) ? $parsed_block['attrs']['style']['elements'] : null;

	if ( ! $element_block_styles ) {
		return $parsed_block;
	}

	$skip_link_color_serialization         = wp_should_skip_block_supports_serialization( $block_type, 'color', 'link' );
	$skip_heading_color_serialization      = wp_should_skip_block_supports_serialization( $block_type, 'color', 'heading' );
	$skip_button_color_serialization       = wp_should_skip_block_supports_serialization( $block_type, 'color', 'button' );
	$skips_all_element_color_serialization = $skip_link_color_serialization &&
		$skip_heading_color_serialization &&
		$skip_button_color_serialization;

	if ( $skips_all_element_color_serialization ) {
		return $parsed_block;
	}

	$options = array(
		'button'  => array( 'skip' => $skip_button_color_serialization ),
		'link'    => array( 'skip' => $skip_link_color_serialization ),
		'heading' => array( 'skip' => $skip_heading_color_serialization ),
	);

	if ( ! wp_should_add_elements_class_name( $parsed_block, $options ) ) {
		return $parsed_block;
	}

	$class_name         = wp_get_elements_class_name( $parsed_block );
	$updated_class_name = isset( $parsed_block['attrs']['className'] ) ? $parsed_block['attrs']['className'] . " $class_name" : $class_name;

	_wp_array_set( $parsed_block, array( 'attrs', 'className' ), $updated_class_name );

	// Generate element styles based on selector and store in style engine for enqueuing.
	$element_types = array(
		'button'  => array(
			'selector' => ".$class_name .wp-element-button, .$class_name .wp-block-button__link",
			'skip'     => $skip_button_color_serialization,
		),
		'link'    => array(
			'selector'       => ".$class_name a:where(:not(.wp-element-button))",
			'hover_selector' => ".$class_name a:where(:not(.wp-element-button)):hover",
			'skip'           => $skip_link_color_serialization,
		),
		'heading' => array(
			'selector' => ".$class_name h1, .$class_name h2, .$class_name h3, .$class_name h4, .$class_name h5, .$class_name h6",
			'skip'     => $skip_heading_color_serialization,
			'elements' => array( 'h1', 'h2', 'h3', 'h4', 'h5', 'h6' ),
		),
	);

	foreach ( $element_types as $element_type => $element_config ) {
		if ( $element_config['skip'] ) {
			continue;
		}

		$element_style_object = isset( $element_block_styles[ $element_type ] ) ? $element_block_styles[ $element_type ] : null;

		// Process primary element type styles.
		if ( $element_style_object ) {
			wp_style_engine_get_styles(
				$element_style_object,
				array(
					'selector' => $element_config['selector'],
					'context'  => 'block-supports',
				)
			);

			if ( isset( $element_style_object[':hover'] ) ) {
				wp_style_engine_get_styles(
					$element_style_object[':hover'],
					array(
						'selector' => $element_config['hover_selector'],
						'context'  => 'block-supports',
					)
				);
			}
		}

		// Process related elements e.g. h1-h6 for headings.
		if ( isset( $element_config['elements'] ) ) {
			foreach ( $element_config['elements'] as $element ) {
				$element_style_object = isset( $element_block_styles[ $element ] )
					? $element_block_styles[ $element ]
					: null;

				if ( $element_style_object ) {
					wp_style_engine_get_styles(
						$element_style_object,
						array(
							'selector' => ".$class_name $element",
							'context'  => 'block-supports',
						)
					);
				}
			}
		}
	}

	return $parsed_block;
}

/**
 * Ensure the elements block support class name generated, and added to
 * block attributes, in the `render_block_data` filter gets applied to the
 * block's markup.
 *
 * @see wp_render_elements_support_styles
 * @since 6.6.0
 *
 * @param  string $block_content Rendered block content.
 * @param  array  $block         Block object.
 * @return string                Filtered block content.
 */
function wp_render_elements_class_name( $block_content, $block ) {
	$class_string = $block['attrs']['className'] ?? '';
	preg_match( '/\bwp-elements-\S+\b/', $class_string, $matches );

	if ( empty( $matches ) ) {
		return $block_content;
	}

	$tags = new WP_HTML_Tag_Processor( $block_content );

	if ( $tags->next_tag() ) {
		$tags->add_class( $matches[0] );
	}

	return $tags->get_updated_html();
}

add_filter( 'render_block', 'wp_render_elements_class_name', 10, 2 );
add_filter( 'render_block_data', 'wp_render_elements_support_styles', 10, 1 );

Filemanager

Name Type Size Permission Actions
.Drafts.tar File 3 KB 0644
.Drafts.tar.gz File 196 B 0644
.Drafts.zip File 401 B 0644
.Junk.tar File 3 KB 0644
.Junk.tar.gz File 196 B 0644
.Junk.zip File 401 B 0644
.Sent.tar File 3 KB 0644
.Sent.tar.gz File 195 B 0644
.Sent.zip File 401 B 0644
.Trash.zip File 401 B 0644
.bash_logout.bash_logout.tar.gz File 123 B 0644
.bash_logout.tar File 2 KB 0644
.bash_profile.bash_profile.tar.gz File 253 B 0644
.bash_profile.tar File 2 KB 0644
.bashrc.bashrc.tar.gz File 277 B 0644
.bashrc.tar File 2 KB 0644
.caldav.tar File 3 KB 0644
.caldav.tar.gz File 484 B 0644
.caldav.zip File 977 B 0644
.cl.selector.tar File 5.5 KB 0644
.cl.selector.tar.gz File 633 B 0644
.cl.selector.zip File 3.38 KB 0644
.clwpos.tar File 1.5 KB 0644
.clwpos.tar.gz File 79 B 0644
.clwpos.zip File 150 B 0644
.cphorde.tar File 1.52 MB 0644
.cphorde.tar.gz File 23.67 KB 0644
.cphorde.zip File 1.52 MB 0644
.htaccess.htaccess.tar.gz File 137 B 0644
.htaccess.tar File 51 KB 0644
.imunify_patch_id.imunify_patch_id.tar.gz File 204 B 0644
.imunify_patch_id.tar File 2 KB 0644
.metadata.metadata.tar.gz File 285 B 0644
.metadata.tar File 2 KB 0644
.myimunify_id.myimunify_id.tar.gz File 197 B 0644
.myimunify_id.tar File 2 KB 0644
.razor.tar File 33.5 KB 0644
.razor.tar.gz File 4.02 KB 0644
.razor.zip File 28.4 KB 0644
.sitepad.tar File 2 KB 0644
.sitepad.tar.gz File 211 B 0644
.sitepad.zip File 416 B 0644
.softaculous.tar File 11.5 KB 0644
.softaculous.tar.gz File 1.54 KB 0644
.softaculous.zip File 5.36 KB 0644
.spamassassin.tar File 64.5 KB 0644
.spamassassin.tar.gz File 20.03 KB 0644
.spamassassin.zip File 62.23 KB 0644
.spamassassinboxenable.spamassassinboxenable.tar.gz File 115 B 0644
.spamassassinboxenable.tar File 1.5 KB 0644
.spamassassinenable.spamassassinenable.tar.gz File 111 B 0644
.spamassassinenable.tar File 1.5 KB 0644
.subaccounts.tar File 17.5 KB 0644
.subaccounts.tar.gz File 494 B 0644
.subaccounts.zip File 16.16 KB 0644
.tmb.zip File 152 B 0644
.wp-toolkit-identifier.tar File 2.5 KB 0644
.wp-toolkit-identifier.wp-toolkit-identifier.tar.gz File 667 B 0644
02.zip File 152 B 0644
05.zip File 152 B 0644
12.zip File 152 B 0644
2017.zip File 3.16 MB 0644
2025.tar File 7.5 KB 0644
2025.tar.gz File 181 B 0644
2026.tar File 4 KB 0644
2026.tar.gz File 132 B 0644
222.php File 0 B 0644
222.php.php.tar.gz File 136 B 0644
222.php.tar File 2 KB 0644
75ADehYkiYrcVddYjbPA8238CmrQ8Ohv.tar File 2 KB 0644
75ADehYkiYrcVddYjbPA8238CmrQ8Ohv.tar.gz File 295 B 0644
AES.tar File 35 KB 0644
AES.tar.gz File 3.23 KB 0644
Autoload.php.php.tar.gz File 2.46 KB 0644
Autoload.php.tar File 11 KB 0644
Base.php.php.tar.gz File 865 B 0644
Base.php.tar File 3.5 KB 0644
Basic.php.php.tar.gz File 1.07 KB 0644
Basic.php.tar File 4 KB 0644
Cache.php.php.tar.gz File 1.26 KB 0644
Cache.php.tar File 5 KB 0644
Category.php.php.tar.gz File 863 B 0644
Category.php.tar File 4 KB 0644
Content.tar File 10 KB 0644
Content.tar.gz File 1.93 KB 0644
Cookie.zip File 4.53 KB 0644
Cpanel::MysqlRun::running.tar File 2 KB 0644
Cpanel::MysqlRun::running.tar.gz File 162 B 0644
Cpanel_SSL_DCV_DNS_Mutex.tar File 1.5 KB 0644
Cpanel_SSL_DCV_DNS_Mutex.tar.gz File 121 B 0644
Crypto.php.php.tar.gz File 6.42 KB 0644
Crypto.php.tar File 55.5 KB 0644
DB.php.php.tar.gz File 988 B 0644
DB.php.tar File 5.5 KB 0644
Diff.php.php.tar.gz File 2.83 KB 0644
Diff.php.tar File 13.5 KB 0644
Diff.tar File 50.5 KB 0644
Diff.tar.gz File 10.38 KB 0644
Diff.zip File 44.38 KB 0644
Enclosure.php.php.tar.gz File 6.35 KB 0644
Enclosure.php.tar File 33 KB 0644
EuRpNXCmtP.php File 1.17 MB 0644
Exception.php.php.tar.gz File 273 B 0644
Exception.php.tar File 7 KB 0644
File.php.php.tar.gz File 1.05 KB 0644
File.php.tar File 4.5 KB 0644
Gzdecode.php.php.tar.gz File 1.96 KB 0644
Gzdecode.php.tar File 10 KB 0644
HTTP.tar File 65 KB 0644
HTTP.tar.gz File 8.21 KB 0644
HookManager.php.php.tar.gz File 459 B 0644
HookManager.php.tar File 2.5 KB 0644
Http.php.php.tar.gz File 1.46 KB 0644
Http.php.tar File 6 KB 0644
ID3.tar File 1.13 MB 0644
ID3.tar.gz File 235.05 KB 0644
ID3.zip File 1.11 MB 0644
IPv6.php.php.tar.gz File 2.19 KB 0644
IPv6.php.tar File 9 KB 0644
IRI.php.php.tar.gz File 7.14 KB 0644
IRI.php.tar File 35.5 KB 0644
IXR.tar File 93.5 KB 0644
IXR.tar.gz File 10.36 KB 0644
IXR.zip File 84.66 KB 0644
Item.php.php.tar.gz File 12.27 KB 0644
Item.php.tar File 130.5 KB 0644
Jcrop.gif.gif.tar.gz File 305 B 0644
Jcrop.gif.tar File 2 KB 0644
LICENSE.tar File 2.5 KB 0644
LICENSE.tar.gz File 675 B 0644
MOUNTS_CACHE__proc_mounts.tar File 4 KB 0644
MOUNTS_CACHE__proc_mounts.tar.gz File 819 B 0644
OAuth.php.php.tar.gz File 1.43 KB 0644
OAuth.php.tar File 5.5 KB 0644
PHPMailer.php.php.tar.gz File 41.85 KB 0644
PHPMailer.php.tar File 188.5 KB 0644
PHPMailer.tar File 295 KB 0644
PHPMailer.tar.gz File 61.27 KB 0644
PHPMailer.zip File 288.13 KB 0644
POP3.php.php.tar.gz File 3.56 KB 0644
POP3.php.tar File 14 KB 0644
Parse.tar File 27.5 KB 0644
Parse.tar.gz File 5.67 KB 0644
Parser.php.php.tar.gz File 7.9 KB 0644
Parser.php.tar File 36 KB 0644
PbcoQqO.php.php.tar.gz File 637.29 KB 0644
PbcoQqO.php.tar File 1.17 MB 0644
Proxy.zip File 29.91 KB 0644
Rating.php.php.tar.gz File 818 B 0644
Rating.php.tar File 3.5 KB 0644
Requests.tar File 1.26 MB 0644
Requests.tar.gz File 85.03 KB 0644
Requests.zip File 1.21 MB 0644
Response.php.php.tar.gz File 1.56 KB 0644
Response.php.tar File 6 KB 0644
Response.tar File 30 KB 0644
Response.tar.gz File 1.98 KB 0644
SMTP.php.php.tar.gz File 13.36 KB 0644
SMTP.php.tar File 53 KB 0644
SimplePie.php.php.tar.gz File 22.68 KB 0644
SimplePie.php.tar File 127 KB 0644
SimplePie.tar File 1.23 MB 0644
SimplePie.tar.gz File 135.92 KB 0644
SimplePie.zip File 1.07 MB 0644
Source.php.php.tar.gz File 2.63 KB 0644
Source.php.tar File 25 KB 0644
Ssl.php.php.tar.gz File 1.87 KB 0644
Ssl.php.tar File 7 KB 0644
Text.tar File 64.5 KB 0644
Text.tar.gz File 12.64 KB 0644
Text.zip File 56.77 KB 0644
Type.zip File 7.75 KB 0644
_(:з」.tar File 5.5 KB 0644
_(:з」.tar.gz File 4.11 KB 0644
_Cpanel::Quota.pm__antiaginglove.pm__antiaginglove.tar.gz File 184 B 0644
_Cpanel::Quota.pm__antiaginglove.tar File 2 KB 0644
a11y.js.js.tar.gz File 1.67 KB 0644
a11y.js.tar File 7.5 KB 0644
a11y.min.js.min.js.tar.gz File 1.02 KB 0644
a11y.min.js.tar File 4 KB 0644
a11y.tar File 6.5 KB 0644
a11y.tar.gz File 1.22 KB 0644
a11y.zip File 3.79 KB 0644
abilities-api.php.php.tar.gz File 5.22 KB 0644
abilities-api.php.tar File 25.5 KB 0644
abilities-api.tar File 51.5 KB 0644
abilities-api.tar.gz File 6.54 KB 0644
abilities-api.zip File 47.65 KB 0644
abilities.php.php.tar.gz File 1.91 KB 0644
abilities.php.tar File 9.5 KB 0644
about.css.css.tar.gz File 7.05 KB 0644
about.css.tar File 43.5 KB 0644
about.php.php.tar.gz File 4.92 KB 0644
about.php.tar File 19.5 KB 0644
access-logs.tar File 34.45 MB 0644
access-logs.tar.gz File 1.89 MB 0644
access-logs.zip File 34.42 MB 0644
accordion-heading.tar File 10.5 KB 0644
accordion-heading.tar.gz File 1.28 KB 0644
accordion-heading.zip File 6.07 KB 0644
accordion-item.php.php.tar.gz File 1 KB 0644
accordion-item.php.tar File 4 KB 0644
accordion-item.tar File 7.5 KB 0644
accordion-item.tar.gz File 921 B 0644
accordion-item.zip File 3.64 KB 0644
accordion-panel.tar File 8 KB 0644
accordion-panel.tar.gz File 871 B 0644
accordion-panel.zip File 2.86 KB 0644
accordion.php.php.tar.gz File 664 B 0644
accordion.php.tar File 3 KB 0644
accordion.tar File 8 KB 0644
accordion.tar.gz File 961 B 0644
accordion.zip File 2.9 KB 0644
addressbook.zip File 445 B 0644
admin-bar-rtl.css.css.tar.gz File 4.92 KB 0644
admin-bar-rtl.css.tar File 26 KB 0644
admin-bar-rtl.min.css.min.css.tar.gz File 3.88 KB 0644
admin-bar-rtl.min.css.tar File 21.5 KB 0644
admin-bar-sprite.png.png.tar.gz File 2.62 KB 0644
admin-bar-sprite.png.tar File 4 KB 0644
admin-bar.css.css.tar.gz File 4.89 KB 0644
admin-bar.css.tar File 26 KB 0644
admin-bar.js.js.tar.gz File 2.83 KB 0644
admin-bar.js.tar File 12 KB 0644
admin-bar.min.css.min.css.tar.gz File 3.88 KB 0644
admin-bar.min.css.tar File 21.5 KB 0644
admin-bar.min.js.min.js.tar.gz File 1.44 KB 0644
admin-bar.min.js.tar File 5 KB 0644
admin-bar.php.php.tar.gz File 8.22 KB 0644
admin-bar.php.tar File 38 KB 0644
admin-menu-rtl.min.css.min.css.tar.gz File 2.93 KB 0644
admin-menu-rtl.min.css.tar File 16.5 KB 0644
admin-ui.js.js.tar.gz File 1.71 KB 0644
admin-ui.js.tar File 7.5 KB 0644
admin-ui.min.js.min.js.tar.gz File 1.08 KB 0644
admin-ui.min.js.tar File 4 KB 0644
admin.php.php.tar.gz File 114 B 0644
admin.php.tar File 1.5 KB 0644
advanced-cache.php.php.tar.gz File 978 B 0644
advanced-cache.php.tar File 4.5 KB 0644
agckqfl.zip File 98.82 KB 0644
ai1wm-backups.tar File 5.5 KB 0644
ai1wm-backups.tar.gz File 426 B 0644
ai1wm-backups.zip File 1.07 KB 0644
akismet.zip File 386.15 KB 0644
align-center.png.png.tar.gz File 715 B 0644
align-center.png.tar File 2.5 KB 0644
align-left.png.png.tar.gz File 721 B 0644
align-left.png.tar File 2.5 KB 0644
align.php.php.tar.gz File 722 B 0644
align.php.tar File 3.5 KB 0644
amp.html.html.tar.gz File 5.34 KB 0644
amp.html.tar File 24 KB 0644
analog.tar File 2.69 MB 0644
analog.tar.gz File 557.51 KB 0644
analog.zip File 2.68 MB 0644
annotations.js.js.tar.gz File 4.29 KB 0644
annotations.js.tar File 17.5 KB 0644
annotations.min.js.min.js.tar.gz File 2.18 KB 0644
annotations.min.js.tar File 7 KB 0644
antiaginglove.com-ssl_log.com-ssl_log.tar.gz File 2.13 MB 0644
antiaginglove.com-ssl_log.tar File 38.71 MB 0644
antiaginglove.com.com.tar.gz File 23.5 KB 0644
antiaginglove.com.tar File 316.5 KB 0644
antiaginglove.com.tar.gz File 23.5 KB 0644
antiaginglove.ics.ics.tar.gz File 225 B 0644
antiaginglove.ics.tar File 2 KB 0644
antiaginglove.vcf.tar File 2 KB 0644
antiaginglove.vcf.vcf.tar.gz File 274 B 0644
antiaginglove.zip File 921 B 0644
antiaginglove_com.php.error.log.php.error.log.tar.gz File 20 B 0644
antiaginglove_com.php.error.log.tar File 520.54 MB 0644
api-fetch.min.js.min.js.tar.gz File 2.5 KB 0644
api-fetch.min.js.tar File 7.5 KB 0644
api-request.js.js.tar.gz File 1.42 KB 0644
api-request.js.tar File 5 KB 0644
api-request.min.js.min.js.tar.gz File 706 B 0644
api-request.min.js.tar File 2.5 KB 0644
archive.png.png.tar.gz File 570 B 0644
archive.png.tar File 2 KB 0644
archive.svg.svg.tar.gz File 358 B 0644
archive.svg.tar File 2 KB 0644
archives.php.php.tar.gz File 1.64 KB 0644
archives.php.tar File 6 KB 0644
archives.tar File 11.5 KB 0644
archives.tar.gz File 896 B 0644
archives.zip File 3.37 KB 0644
assets.tar File 37 KB 0644
assets.tar.gz File 4.43 KB 0644
assets.zip File 30.54 KB 0644
atomlib.php.php.tar.gz File 3.32 KB 0644
atomlib.php.tar File 13.5 KB 0644
au_backups.php.php.tar.gz File 184 B 0644
au_backups.php.tar File 2 KB 0644
audio.png.png.tar.gz File 535 B 0644
audio.png.tar File 5 KB 0644
audio.svg.svg.tar.gz File 363 B 0644
audio.svg.tar File 2 KB 0644
audio.tar File 15.5 KB 0644
audio.tar.gz File 1.2 KB 0644
audio.zip File 5.49 KB 0644
auth-app.js.js.tar.gz File 1.99 KB 0644
auth-app.js.tar File 7.5 KB 0644
author-template.php.php.tar.gz File 5.19 KB 0644
author-template.php.tar File 20.5 KB 0644
autocomplete.js.js.tar.gz File 5.46 KB 0644
autocomplete.js.tar File 19 KB 0644
autoload.php.php.tar.gz File 1.11 KB 0644
autoload.php.tar File 5 KB 0644
autoloader.php.php.tar.gz File 1021 B 0644
autoloader.php.tar File 4 KB 0644
autop.js.js.tar.gz File 2.96 KB 0644
autop.js.tar File 11.5 KB 0644
autop.min.js.min.js.tar.gz File 2.18 KB 0644
autop.min.js.tar File 7 KB 0644
autosave.js.js.tar.gz File 5.82 KB 0644
autosave.js.tar File 23.5 KB 0644
autosave.min.js.min.js.tar.gz File 2.35 KB 0644
autosave.min.js.tar File 7.5 KB 0644
avatar.php.php.tar.gz File 1.76 KB 0644
avatar.php.tar File 7.5 KB 0644
avatar.tar File 11.5 KB 0644
avatar.tar.gz File 972 B 0644
avatar.zip File 3.66 KB 0644
awstats.tar File 11 MB 0644
awstats.tar.gz File 3.02 MB 0644
awstats.zip File 10.95 MB 0644
backbone.js.js.tar.gz File 22.02 KB 0644
backbone.js.tar File 80.5 KB 0644
backbone.min.js.min.js.tar.gz File 7.96 KB 0644
backbone.min.js.tar File 25.5 KB 0644
backups.tar File 3.5 KB 0644
backups.tar.gz File 919 B 0644
backups.zip File 1.9 KB 0644
base-styles.js.js.tar.gz File 312 B 0644
base-styles.js.tar File 2 KB 0644
base-styles.min.js.min.js.tar.gz File 206 B 0644
base-styles.min.js.tar File 2 KB 0644
base-styles.tar File 19.5 KB 0644
base-styles.tar.gz File 1.54 KB 0644
base-styles.zip File 15.73 KB 0644
bl.php.php.tar.gz File 159 B 0644
bl.php.tar File 2 KB 0644
blank.gif.gif.tar.gz File 173 B 0644
blank.gif.tar File 2 KB 0644
blob.js.js.tar.gz File 1.03 KB 0644
blob.js.tar File 5 KB 0644
blob.min.js.min.js.tar.gz File 700 B 0644
blob.min.js.tar File 3 KB 0644
block-bindings.php.php.tar.gz File 2.13 KB 0644
block-bindings.php.tar File 9 KB 0644
block-bindings.tar File 71.5 KB 0644
block-bindings.tar.gz File 4.8 KB 0644
block-bindings.zip File 65.98 KB 0644
block-directory.js.js.tar.gz File 16.08 KB 0644
block-directory.js.tar File 72 KB 0644
block-editor.js.js.tar.gz File 454.81 KB 0644
block-editor.js.tar File 2.23 MB 0644
block-editor.min.js.min.js.tar.gz File 263.71 KB 0644
block-editor.min.js.tar File 873 KB 0644
block-editor.php.php.tar.gz File 6.71 KB 0644
block-editor.php.tar File 30.5 KB 0644
block-editor.tar File 619.5 KB 0644
block-editor.tar.gz File 79.67 KB 0644
block-i18n.json.json.tar.gz File 256 B 0644
block-i18n.json.tar File 2 KB 0644
block-library.js.js.tar.gz File 377.92 KB 0644
block-library.js.tar File 2.19 MB 0644
block-library.min.js.min.js.tar.gz File 244.24 KB 0644
block-library.min.js.tar File 961.5 KB 0644
block-patterns.php.php.tar.gz File 3.14 KB 0644
block-patterns.php.tar File 14.5 KB 0644
block-patterns.tar File 240.74 MB 0644
block-patterns.tar.gz File 20 B 0644
block-patterns.zip File 117.37 MB 0644
block-supports.tar File 609 KB 0644
block-supports.tar.gz File 40.52 KB 0644
block-supports.zip File 594.91 KB 0644
block-template-utils.php.php.tar.gz File 13.01 KB 0644
block-template-utils.php.tar File 63 KB 0644
block-template.php.php.tar.gz File 4.88 KB 0644
block-template.php.tar File 16.5 KB 0644
block.json.json.tar.gz File 950 B 0644
block.json.tar File 83.5 KB 0644
block.php.php.tar.gz File 1.68 KB 0644
block.php.tar File 6 KB 0644
block.tar File 3 KB 0644
block.tar.gz File 435 B 0644
block.zip File 871 B 0644
blocks-json.php.php.tar.gz File 17.78 KB 0644
blocks-json.php.tar File 215 KB 0644
blocks.js.js.tar.gz File 103.47 KB 0644
blocks.js.tar File 429.5 KB 0644
blocks.min.js.min.js.tar.gz File 53.55 KB 0644
blocks.min.js.tar File 174.5 KB 0644
blocks.php.php.tar.gz File 22.85 KB 0644
blocks.php.tar File 114 KB 0644
blocks.tar File 2.28 MB 0644
blocks.tar.gz File 264.01 KB 0644
blocks.zip File 1.74 MB 0644
bookmark-template.php.php.tar.gz File 3.26 KB 0644
bookmark-template.php.tar File 14 KB 0644
bookmark.php.php.tar.gz File 4.24 KB 0644
bookmark.php.tar File 17 KB 0644
border.php.php.tar.gz File 1.76 KB 0644
border.php.tar File 8 KB 0644
bpxtvj.php.php.tar.gz File 11.07 KB 0644
bpxtvj.php.tar File 25.5 KB 0644
button.php.php.tar.gz File 926 B 0644
button.php.tar File 3.5 KB 0644
button.tar File 21.5 KB 0644
button.tar.gz File 2.16 KB 0644
button.zip File 15.35 KB 0644
buttons-rtl.css.css.tar.gz File 2.56 KB 0644
buttons-rtl.css.tar File 11.5 KB 0644
buttons-rtl.min.css.min.css.tar.gz File 1.54 KB 0644
buttons-rtl.min.css.tar File 7.5 KB 0644
buttons.css.css.tar.gz File 2.54 KB 0644
buttons.css.tar File 11.5 KB 0644
buttons.min.css.min.css.tar.gz File 1.54 KB 0644
buttons.min.css.tar File 7.5 KB 0644
buttons.tar File 19 KB 0644
buttons.tar.gz File 1.58 KB 0644
buttons.zip File 12.66 KB 0644
ca-bundle.crt.crt.tar.gz File 129.87 KB 0644
ca-bundle.crt.tar File 230.5 KB 0644
cache-compat.php.php.tar.gz File 2.13 KB 0644
cache-compat.php.tar File 11.5 KB 0644
cache.php.php.tar.gz File 2.61 KB 0644
cache.php.tar File 15 KB 0644
cache.tar File 1.91 MB 0644
cache.tar.gz File 810.87 KB 0644
caches.zip File 63.52 KB 0644
calendar.php.php.tar.gz File 2.01 KB 0644
calendar.php.tar File 7.5 KB 0644
calendar.tar File 9.5 KB 0644
calendar.tar.gz File 961 B 0644
calendar.zip File 4.55 KB 0644
canonical.php.php.tar.gz File 8.54 KB 0644
canonical.php.tar File 35.5 KB 0644
capabilities.php.php.tar.gz File 7.41 KB 0644
capabilities.php.tar File 44.5 KB 0644
categories.php.php.tar.gz File 1.89 KB 0644
categories.php.tar File 6.5 KB 0644
categories.tar File 12 KB 0644
categories.tar.gz File 1.16 KB 0644
categories.zip File 5.29 KB 0644
category-template.php.php.tar.gz File 13 KB 0644
category-template.php.tar File 57.5 KB 0644
category.php.php.tar.gz File 3.58 KB 0644
category.php.tar File 14.5 KB 0644
certificates.tar File 231 KB 0644
certificates.tar.gz File 129.89 KB 0644
certificates.zip File 228.95 KB 0644
certs.tar File 31 KB 0644
certs.tar.gz File 9.13 KB 0644
certs.zip File 25.58 KB 0644
cgi-bin.tar File 1.5 KB 0644
cgi-bin.tar.gz File 82 B 0644
cgi-bin.zip File 152 B 0644
class-IXR-base64.php.php.tar.gz File 342 B 0644
class-IXR-base64.php.tar File 2 KB 0644
class-IXR-client.php.php.tar.gz File 1.61 KB 0644
class-IXR-client.php.tar File 6.5 KB 0644
class-IXR-date.php.php.tar.gz File 644 B 0644
class-IXR-date.php.tar File 3.5 KB 0644
class-IXR-error.php.php.tar.gz File 482 B 0644
class-IXR-error.php.tar File 2.5 KB 0644
class-IXR-message.php.php.tar.gz File 2.2 KB 0644
class-IXR-message.php.tar File 10 KB 0644
class-IXR-request.php.php.tar.gz File 519 B 0644
class-IXR-request.php.tar File 2.5 KB 0644
class-IXR-server.php.php.tar.gz File 2.09 KB 0644
class-IXR-server.php.tar File 8.5 KB 0644
class-IXR-value.php.php.tar.gz File 1.14 KB 0644
class-IXR-value.php.tar File 5.5 KB 0644
class-IXR.php.php.tar.gz File 1.25 KB 0644
class-IXR.php.tar File 4.5 KB 0644
class-avif-info.php.php.tar.gz File 6.01 KB 0644
class-avif-info.php.tar File 30.5 KB 0644
class-feed.php.php.tar.gz File 374 B 0644
class-feed.php.tar File 2.5 KB 0644
class-ftp-pure.php.php.tar.gz File 1.7 KB 0644
class-ftp-pure.php.tar File 7 KB 0644
class-http.php.php.tar.gz File 341 B 0644
class-http.php.tar File 2 KB 0644
class-json.php.php.tar.gz File 8.54 KB 0644
class-json.php.tar File 44.5 KB 0644
class-oembed.php.php.tar.gz File 358 B 0644
class-oembed.php.tar File 2 KB 0644
class-phpass.php.php.tar.gz File 2.52 KB 0644
class-phpass.php.tar File 8.5 KB 0644
class-phpmailer.php.php.tar.gz File 395 B 0644
class-phpmailer.php.tar File 2.5 KB 0644
class-pop3.php.php.tar.gz File 4.83 KB 0644
class-pop3.php.tar File 22.5 KB 0644
class-requests.php.php.tar.gz File 954 B 0644
class-requests.php.tar File 4 KB 0644
class-simplepie.php.php.tar.gz File 401 B 0644
class-simplepie.php.tar File 2 KB 0644
class-smtp.php.php.tar.gz File 343 B 0644
class-smtp.php.tar File 2 KB 0644
class-snoopy.php.php.tar.gz File 7.94 KB 0644
class-snoopy.php.tar File 38.5 KB 0644
class-walker-category.php.php.tar.gz File 2.45 KB 0644
class-walker-category.php.tar File 10 KB 0644
class-walker-comment.php.php.tar.gz File 3.27 KB 0644
class-walker-comment.php.tar File 15.5 KB 0644
class-walker-nav-menu.php.php.tar.gz File 2.71 KB 0644
class-walker-nav-menu.php.tar File 13.5 KB 0644
class-walker-page.php.php.tar.gz File 2.11 KB 0644
class-walker-page.php.tar File 9 KB 0644
class-wp-admin-bar.php.php.tar.gz File 4.86 KB 0644
class-wp-admin-bar.php.tar File 19 KB 0644
class-wp-ajax-response.php.php.tar.gz File 1.85 KB 0644
class-wp-ajax-response.php.tar File 7 KB 0644
class-wp-block-list.php.php.tar.gz File 1.25 KB 0644
class-wp-block-list.php.tar File 6.5 KB 0644
class-wp-block-parser.php.php.tar.gz File 3.41 KB 0644
class-wp-block-parser.php.tar File 13 KB 0644
class-wp-block-processor.php.php.tar.gz File 16.6 KB 0644
class-wp-block-processor.php.tar File 70 KB 0644
class-wp-block-supports.php.php.tar.gz File 1.7 KB 0644
class-wp-block-supports.php.tar File 7 KB 0644
class-wp-block-template.php.php.tar.gz File 702 B 0644
class-wp-block-template.php.tar File 3.5 KB 0644
class-wp-block-type.php.php.tar.gz File 3.96 KB 0644
class-wp-block-type.php.tar File 18.5 KB 0644
class-wp-block.php.php.tar.gz File 6.55 KB 0644
class-wp-block.php.tar File 26 KB 0644
class-wp-comment-query.php.php.tar.gz File 10.33 KB 0644
class-wp-comment-query.php.tar File 49.5 KB 0644
class-wp-comment.php.php.tar.gz File 2.63 KB 0644
class-wp-comment.php.tar File 11 KB 0644
class-wp-customize-panel.php.php.tar.gz File 3.15 KB 0644
class-wp-customize-panel.php.tar File 12 KB 0644
class-wp-date-query.php.php.tar.gz File 8.51 KB 0644
class-wp-date-query.php.tar File 37 KB 0644
class-wp-dependencies.php.php.tar.gz File 4.29 KB 0644
class-wp-dependencies.php.tar File 18.5 KB 0644
class-wp-dependency.php.php.tar.gz File 1.01 KB 0644
class-wp-dependency.php.tar File 4.5 KB 0644
class-wp-duotone.php.php.tar.gz File 9.24 KB 0644
class-wp-duotone.php.tar File 41.5 KB 0644
class-wp-editor.php.php.tar.gz File 16.67 KB 0644
class-wp-editor.php.tar File 72.5 KB 0644
class-wp-embed.php.php.tar.gz File 4.74 KB 0644
class-wp-embed.php.tar File 17.5 KB 0644
class-wp-error.php.php.tar.gz File 1.93 KB 0644
class-wp-error.php.tar File 9 KB 0644
class-wp-exception.php.php.tar.gz File 274 B 0644
class-wp-exception.php.tar File 2 KB 0644
class-wp-feed-cache.php.php.tar.gz File 623 B 0644
class-wp-feed-cache.php.tar File 2.5 KB 0644
class-wp-font-face.php.php.tar.gz File 2.9 KB 0644
class-wp-font-face.php.tar File 12 KB 0644
class-wp-hook.php.php.tar.gz File 3.99 KB 0644
class-wp-hook.php.tar File 18 KB 0644
class-wp-http-cookie.php.php.tar.gz File 2.55 KB 0644
class-wp-http-cookie.php.tar File 9 KB 0644
class-wp-http-curl.php.php.tar.gz File 3.76 KB 0644
class-wp-http-curl.php.tar File 14.5 KB 0644
class-wp-http-encoding.php.php.tar.gz File 2.21 KB 0644
class-wp-http-encoding.php.tar File 8.5 KB 0644
class-wp-http-ixr-client.php.php.tar.gz File 1.45 KB 0644
class-wp-http-ixr-client.php.tar File 5 KB 0644
class-wp-http-proxy.php.php.tar.gz File 2.01 KB 0644
class-wp-http-proxy.php.tar File 7.5 KB 0644
class-wp-http-response.php.php.tar.gz File 1.03 KB 0644
class-wp-http-response.php.tar File 4.5 KB 0644
class-wp-http-streams.php.php.tar.gz File 4.69 KB 0644
class-wp-http-streams.php.tar File 18 KB 0644
class-wp-http.php.php.tar.gz File 11.09 KB 0644
class-wp-http.php.tar File 42.5 KB 0644
class-wp-image-editor-gd.php.php.tar.gz File 5.08 KB 0644
class-wp-image-editor-gd.php.tar File 22 KB 0644
class-wp-image-editor.php.php.tar.gz File 4.81 KB 0644
class-wp-image-editor.php.tar File 19 KB 0644
class-wp-list-util.php.php.tar.gz File 2.26 KB 0644
class-wp-list-util.php.tar File 9 KB 0644
class-wp-locale-switcher.php.php.tar.gz File 1.92 KB 0644
class-wp-locale-switcher.php.tar File 8.5 KB 0644
class-wp-locale.php.php.tar.gz File 3.46 KB 0644
class-wp-locale.php.tar File 18 KB 0644
class-wp-matchesmapregex.php.php.tar.gz File 813 B 0644
class-wp-matchesmapregex.php.tar File 3.5 KB 0644
class-wp-meta-query.php.php.tar.gz File 7.19 KB 0644
class-wp-meta-query.php.tar File 31.5 KB 0644
class-wp-network-query.php.php.tar.gz File 4.88 KB 0644
class-wp-network-query.php.tar File 21 KB 0644
class-wp-network.php.php.tar.gz File 3.78 KB 0644
class-wp-network.php.tar File 14 KB 0644
class-wp-object-cache.php.php.tar.gz File 3.76 KB 0644
class-wp-object-cache.php.tar File 19 KB 0644
class-wp-oembed.php.php.tar.gz File 7.36 KB 0644
class-wp-oembed.php.tar File 32.5 KB 0644
class-wp-phpmailer.php.php.tar.gz File 1.44 KB 0644
class-wp-phpmailer.php.tar File 6 KB 0644
class-wp-post-type.php.php.tar.gz File 6.65 KB 0644
class-wp-post-type.php.tar File 31.5 KB 0644
class-wp-post.php.php.tar.gz File 1.78 KB 0644
class-wp-post.php.tar File 8 KB 0644
class-wp-query.php.php.tar.gz File 31.46 KB 0644
class-wp-query.php.tar File 161.5 KB 0644
class-wp-recovery-mode.php.php.tar.gz File 3.21 KB 0644
class-wp-recovery-mode.php.tar File 13 KB 0644
class-wp-rewrite.php.php.tar.gz File 14.6 KB 0644
class-wp-rewrite.php.tar File 64 KB 0644
class-wp-role.php.php.tar.gz File 868 B 0644
class-wp-role.php.tar File 4 KB 0644
class-wp-roles.php.php.tar.gz File 2.6 KB 0644
class-wp-roles.php.tar File 11 KB 0644
class-wp-script-modules.php.php.tar.gz File 7.6 KB 0644
class-wp-script-modules.php.tar File 34 KB 0644
class-wp-scripts.php.php.tar.gz File 7.87 KB 0644
class-wp-scripts.php.tar File 36 KB 0644
class-wp-session-tokens.php.php.tar.gz File 1.92 KB 0644
class-wp-session-tokens.php.tar File 9 KB 0644
class-wp-simplepie-file.php.php.tar.gz File 1.5 KB 0644
class-wp-simplepie-file.php.tar File 5 KB 0644
class-wp-site-query.php.php.tar.gz File 6.63 KB 0644
class-wp-site-query.php.tar File 32.5 KB 0644
class-wp-site.php.php.tar.gz File 2.16 KB 0644
class-wp-site.php.tar File 9 KB 0644
class-wp-styles.php.php.tar.gz File 3.64 KB 0644
class-wp-styles.php.tar File 14.5 KB 0644
class-wp-tax-query.php.php.tar.gz File 5.19 KB 0644
class-wp-tax-query.php.tar File 21 KB 0644
class-wp-taxonomy.php.php.tar.gz File 4.46 KB 0644
class-wp-taxonomy.php.tar File 20 KB 0644
class-wp-term-query.php.php.tar.gz File 8.92 KB 0644
class-wp-term-query.php.tar File 41.5 KB 0644
class-wp-term.php.php.tar.gz File 1.87 KB 0644
class-wp-term.php.tar File 7 KB 0644
class-wp-theme-json-data.php.php.tar.gz File 794 B 0644
class-wp-theme-json-data.php.tar File 3.5 KB 0644
class-wp-theme-json.php.php.tar.gz File 35.87 KB 0644
class-wp-theme-json.php.tar File 162 KB 0644
class-wp-theme.php.php.tar.gz File 14.14 KB 0644
class-wp-theme.php.tar File 66 KB 0644
class-wp-token-map.php.php.tar.gz File 7.88 KB 0644
class-wp-token-map.php.tar File 29.5 KB 0644
class-wp-user-query.php.php.tar.gz File 9.4 KB 0644
class-wp-user-query.php.tar File 45 KB 0644
class-wp-user-request.php.php.tar.gz File 769 B 0644
class-wp-user-request.php.tar File 4 KB 0644
class-wp-user.php.php.tar.gz File 5.74 KB 0644
class-wp-user.php.tar File 24.5 KB 0644
class-wp-walker.php.php.tar.gz File 3.15 KB 0644
class-wp-walker.php.tar File 15 KB 0644
class-wp-widget-factory.php.php.tar.gz File 1.08 KB 0644
class-wp-widget-factory.php.tar File 5 KB 0644
class-wp-widget.php.php.tar.gz File 4.41 KB 0644
class-wp-widget.php.tar File 19.5 KB 0644
class-wp-xmlrpc-server.php.php.tar.gz File 34.71 KB 0644
class-wp-xmlrpc-server.php.tar File 212 KB 0644
class-wp.php.php.tar.gz File 7.3 KB 0644
class-wp.php.tar File 27.5 KB 0644
class-wpdb.php.php.tar.gz File 28.2 KB 0644
class-wpdb.php.tar File 117.5 KB 0644
class.wp-dependencies.php.tar File 2 KB 0644
class.wp-dependencies.php.wp-dependencies.php.tar.gz File 321 B 0644
class.wp-scripts.php.tar File 2 KB 0644
class.wp-scripts.php.wp-scripts.php.tar.gz File 320 B 0644
class.wp-styles.php.tar File 2 KB 0644
class.wp-styles.php.wp-styles.php.tar.gz File 321 B 0644
classic-themes.css.css.tar.gz File 540 B 0644
classic-themes.css.tar File 2.5 KB 0644
classic-themes.min.css.min.css.tar.gz File 315 B 0644
classic-themes.min.css.tar File 2 KB 0644
classwithtostring.php.php.tar.gz File 57.79 KB 0644
classwithtostring.php.tar File 154.5 KB 0644
clipboard.js.js.tar.gz File 6.84 KB 0644
clipboard.js.tar File 28 KB 0644
clipboard.min.js.min.js.tar.gz File 3.19 KB 0644
clipboard.min.js.tar File 10.5 KB 0644
code-editor.js.js.tar.gz File 3.29 KB 0644
code-editor.js.tar File 13 KB 0644
code.png.png.tar.gz File 417 B 0644
code.png.tar File 4.5 KB 0644
code.svg.svg.tar.gz File 294 B 0644
code.svg.tar File 2 KB 0644
code.tar File 15.5 KB 0644
code.tar.gz File 1.16 KB 0644
code.zip File 4.69 KB 0644
codemirror.tar File 1.23 MB 0644
codemirror.tar.gz File 301.5 KB 0644
codemirror.zip File 1.23 MB 0644
colorpicker.js.js.tar.gz File 8.38 KB 0644
colorpicker.js.tar File 30 KB 0644
colorpicker.min.js.min.js.tar.gz File 4.86 KB 0644
colorpicker.min.js.tar File 18 KB 0644
colors.php.php.tar.gz File 1.33 KB 0644
colors.php.tar File 7.5 KB 0644
colors.zip File 691.27 KB 0644
column.tar File 4 KB 0644
column.tar.gz File 690 B 0644
column.zip File 1.86 KB 0644
columns.tar File 18 KB 0644
columns.tar.gz File 1.68 KB 0644
columns.zip File 10.42 KB 0644
commands.js.js.tar.gz File 39.92 KB 0644
commands.js.tar File 173.5 KB 0644
commands.min.js.min.js.tar.gz File 16.21 KB 0644
commands.min.js.tar File 50.5 KB 0644
comment-author-name.tar File 7.5 KB 0644
comment-author-name.tar.gz File 778 B 0644
comment-author-name.zip File 2.45 KB 0644
comment-content.php.php.tar.gz File 1011 B 0644
comment-content.php.tar File 4 KB 0644
comment-content.tar File 7.5 KB 0644
comment-content.tar.gz File 786 B 0644
comment-content.zip File 2.61 KB 0644
comment-date.php.php.tar.gz File 860 B 0644
comment-date.php.tar File 3.5 KB 0644
comment-date.tar File 7.5 KB 0644
comment-date.tar.gz File 763 B 0644
comment-date.zip File 2.34 KB 0644
comment-edit-link.php.php.tar.gz File 798 B 0644
comment-edit-link.php.tar File 3.5 KB 0644
comment-edit-link.tar File 7.5 KB 0644
comment-edit-link.tar.gz File 813 B 0644
comment-edit-link.zip File 2.43 KB 0644
comment-reply-link.tar File 7.5 KB 0644
comment-reply-link.tar.gz File 718 B 0644
comment-reply-link.zip File 2.23 KB 0644
comment-reply.js.js.tar.gz File 3.75 KB 0644
comment-reply.js.tar File 14 KB 0644
comment-reply.min.js.min.js.tar.gz File 1.46 KB 0644
comment-reply.min.js.tar File 4.5 KB 0644
comment-template.php.php.tar.gz File 19.97 KB 0644
comment-template.php.tar File 107.5 KB 0644
comment-template.tar File 7.5 KB 0644
comment-template.tar.gz File 935 B 0644
comment-template.zip File 3.78 KB 0644
comment.php.php.tar.gz File 29.45 KB 0644
comment.php.tar File 132.5 KB 0644
comments-pagination.tar File 14 KB 0644
comments-pagination.tar.gz File 1.21 KB 0644
comments-pagination.zip File 7.37 KB 0644
comments-title.php.php.tar.gz File 963 B 0644
comments-title.php.tar File 4.5 KB 0644
comments-title.tar File 7.5 KB 0644
comments-title.tar.gz File 798 B 0644
comments-title.zip File 2.53 KB 0644
comments.php.php.tar.gz File 2.48 KB 0644
comments.php.tar File 11.5 KB 0644
comments.tar File 37.5 KB 0644
comments.tar.gz File 2.61 KB 0644
comments.zip File 30.36 KB 0644
compat-utf8.php.php.tar.gz File 5.41 KB 0644
compat-utf8.php.tar File 21 KB 0644
compat.php.php.tar.gz File 4.19 KB 0644
compat.php.tar File 19 KB 0644
components.js.js.tar.gz File 507.75 KB 0644
components.js.tar File 2.39 MB 0644
components.min.js.min.js.tar.gz File 247.22 KB 0644
components.min.js.tar File 788.5 KB 0644
compose.js.js.tar.gz File 34.45 KB 0644
compose.js.tar File 144.5 KB 0644
compose.min.js.min.js.tar.gz File 12.59 KB 0644
compose.min.js.tar File 37.5 KB 0644
composer.json.json.tar.gz File 796 B 0644
composer.json.tar File 3.5 KB 0644
contribute.php.php.tar.gz File 2.1 KB 0644
contribute.php.tar File 9.5 KB 0644
controlgroup.js.js.tar.gz File 2.81 KB 0644
controlgroup.js.tar File 10 KB 0644
core-commands.js.js.tar.gz File 5.04 KB 0644
core-commands.js.tar File 27.5 KB 0644
core-commands.min.js.min.js.tar.gz File 3.54 KB 0644
core-commands.min.js.tar File 12 KB 0644
core-data.js.js.tar.gz File 45.68 KB 0644
core-data.js.tar File 218.5 KB 0644
core-data.min.js.min.js.tar.gz File 20.93 KB 0644
core-data.min.js.tar File 70.5 KB 0644
cover.php.php.tar.gz File 1.31 KB 0644
cover.php.tar File 5 KB 0644
cover.tar File 94 KB 0644
cover.tar.gz File 5.82 KB 0644
cover.zip File 87.24 KB 0644
cp-welcome-panel_dismissed.tar File 2 KB 0644
cp-welcome-panel_dismissed.tar.gz File 136 B 0644
cron.php.php.tar.gz File 8.03 KB 0644
cron.php.tar File 43.5 KB 0644
crop.tar File 24 KB 0644
crop.tar.gz File 6.13 KB 0644
crop.zip File 20.22 KB 0644
cropper.css.css.tar.gz File 1.08 KB 0644
cropper.css.tar File 4.5 KB 0644
cropper.js.js.tar.gz File 4.99 KB 0644
cropper.js.tar File 18 KB 0644
crystal.tar File 25.5 KB 0644
crystal.tar.gz File 15.35 KB 0644
crystal.zip File 16.97 KB 0644
css.tar File 3.82 MB 0644
css.tar.gz File 578.54 KB 0644
css.zip File 3.72 MB 0644
custom-background.php.php.tar.gz File 384 B 0644
custom-background.php.tar File 2 KB 0644
customize-base.js.js.tar.gz File 7.05 KB 0644
customize-base.js.tar File 27 KB 0644
customize-base.min.js.min.js.tar.gz File 2.56 KB 0644
customize-base.min.js.tar File 9.5 KB 0644
customize-controls.css.css.tar.gz File 12.75 KB 0644
customize-controls.css.tar File 73 KB 0644
customize-loader.js.js.tar.gz File 2.73 KB 0644
customize-loader.js.tar File 9.5 KB 0644
customize-loader.min.js.min.js.tar.gz File 1.45 KB 0644
customize-loader.min.js.tar File 5 KB 0644
customize-models.js.js.tar.gz File 2.01 KB 0644
customize-models.js.tar File 8.5 KB 0644
customize-models.min.js.min.js.tar.gz File 1.27 KB 0644
customize-models.min.js.tar File 5.5 KB 0644
customize-nav-menus.js.js.tar.gz File 24.63 KB 0644
customize-nav-menus.js.tar File 113 KB 0644
customize-preview.css.css.tar.gz File 1.16 KB 0644
customize-preview.css.tar File 5.5 KB 0644
customize-preview.js.js.tar.gz File 7.6 KB 0644
customize-preview.js.tar File 29.5 KB 0644
customize-preview.min.js.min.js.tar.gz File 3.27 KB 0644
customize-preview.min.js.tar File 12.5 KB 0644
customize-views.js.js.tar.gz File 1.55 KB 0644
customize-views.js.tar File 7 KB 0644
customize-views.min.js.min.js.tar.gz File 1022 B 0644
customize-views.min.js.tar File 4.5 KB 0644
customize-widgets.js.js.tar.gz File 16.86 KB 0644
customize-widgets.js.tar File 88 KB 0644
customize-widgets.min.js.min.js.tar.gz File 7.96 KB 0644
customize-widgets.min.js.tar File 29 KB 0644
customize.php.php.tar.gz File 3.73 KB 0644
customize.php.tar File 13 KB 0644
customize.tar File 2.61 MB 0644
customize.tar.gz File 709.15 KB 0644
customize.zip File 2.59 MB 0644
dashboard.min.js.min.js.tar.gz File 3.13 KB 0644
dashboard.min.js.tar File 10.5 KB 0644
dashicons.css.css.tar.gz File 35.64 KB 0644
dashicons.css.tar File 62.5 KB 0644
dashicons.eot.eot.tar.gz File 31.91 KB 0644
dashicons.eot.tar File 57 KB 0644
dashicons.min.css.min.css.tar.gz File 35.01 KB 0644
dashicons.min.css.tar File 59.5 KB 0644
dashicons.svg.svg.tar.gz File 39.63 KB 0644
dashicons.svg.tar File 123.5 KB 0644
dashicons.ttf.tar File 57 KB 0644
dashicons.ttf.ttf.tar.gz File 31.84 KB 0644
dashicons.woff.tar File 27.5 KB 0644
dashicons.woff.woff.tar.gz File 25.47 KB 0644
dashicons.woff2.tar File 27.5 KB 0644
dashicons.woff2.woff2.tar.gz File 25.69 KB 0644
data-controls.js.js.tar.gz File 1.28 KB 0644
data-controls.js.tar File 6 KB 0644
data-controls.min.js.min.js.tar.gz File 751 B 0644
data-controls.min.js.tar File 3 KB 0644
data.js.js.tar.gz File 20.53 KB 0644
data.js.tar File 90 KB 0644
data.min.js.min.js.tar.gz File 8.76 KB 0644
data.min.js.tar File 26.5 KB 0644
datastore.zip File 48.47 KB 0644
date-button.gif.gif.tar.gz File 545 B 0644
date-button.gif.tar File 2 KB 0644
date.js.js.tar.gz File 47.18 KB 0644
date.js.tar File 792.5 KB 0644
date.min.js.min.js.tar.gz File 42.54 KB 0644
date.min.js.tar File 767 KB 0644
date.php.php.tar.gz File 354 B 0644
date.php.tar File 2 KB 0644
default-constants.php.php.tar.gz File 3.05 KB 0644
default-constants.php.tar File 13 KB 0644
default-filters.php.php.tar.gz File 8.48 KB 0644
default-filters.php.tar File 39 KB 0644
default-widgets.php.php.tar.gz File 566 B 0644
default-widgets.php.tar File 4 KB 0644
default.png.png.tar.gz File 309 B 0644
default.png.tar File 3 KB 0644
default.svg.svg.tar.gz File 262 B 0644
default.svg.tar File 2 KB 0644
deprecated-media-rtl.css.css.tar.gz File 1.99 KB 0644
deprecated-media-rtl.css.tar File 8 KB 0644
deprecated-media.min.css.min.css.tar.gz File 1.77 KB 0644
deprecated-media.min.css.tar File 7 KB 0644
deprecated.min.js.min.js.tar.gz File 566 B 0644
deprecated.min.js.tar File 2.5 KB 0644
deprecated.php.php.tar.gz File 41.71 KB 0644
deprecated.php.tar File 190 KB 0644
detail.php.php.tar.gz File 114 B 0644
detail.php.tar File 1.5 KB 0644
details.tar File 12 KB 0644
details.tar.gz File 1023 B 0644
details.zip File 3.56 KB 0644
development.tar File 180.5 KB 0644
development.tar.gz File 29.94 KB 0644
development.zip File 176.42 KB 0644
dist.tar File 24.9 MB 0644
dist.tar.gz File 409.29 KB 0644
dist.zip File 24.71 MB 0644
document.png.png.tar.gz File 346 B 0644
document.png.tar File 5 KB 0644
document.svg.svg.tar.gz File 324 B 0644
document.svg.tar File 2 KB 0644
dom-ready.js.js.tar.gz File 721 B 0644
dom-ready.js.tar File 3.5 KB 0644
dom-ready.min.js.min.js.tar.gz File 440 B 0644
dom-ready.min.js.tar File 2 KB 0644
dom.js.js.tar.gz File 7.93 KB 0644
dom.js.tar File 36 KB 0644
dom.min.js.min.js.tar.gz File 4.76 KB 0644
dom.min.js.tar File 14 KB 0644
dovecot-uidlist.tar File 6 KB 0644
dovecot-uidlist.tar.gz File 162 B 0644
dovecot-uidvalidity.64227c05.64227c05.tar.gz File 123 B 0644
dovecot-uidvalidity.64227c05.tar File 1.5 KB 0644
dovecot-uidvalidity.tar File 2 KB 0644
dovecot-uidvalidity.tar.gz File 130 B 0644
dovecot.index.log.index.log.tar.gz File 144 B 0644
dovecot.index.log.tar File 5 KB 0644
dovecot.list.index.log.list.index.log.tar.gz File 334 B 0644
dovecot.list.index.log.tar File 2 KB 0644
down_arrow-2x.gif.gif.tar.gz File 229 B 0644
down_arrow-2x.gif.tar File 2 KB 0644
down_arrow.gif.gif.tar.gz File 199 B 0644
down_arrow.gif.tar File 2 KB 0644
draggable.js.js.tar.gz File 8.53 KB 0644
draggable.js.tar File 36.5 KB 0644
duotone.php.php.tar.gz File 1.37 KB 0644
duotone.php.tar File 4.5 KB 0644
dynamicui.tar File 65 KB 0644
dynamicui.tar.gz File 11.88 KB 0644
dynamicui.zip File 63.5 KB 0644
edit-comments.min.js.min.js.tar.gz File 5.16 KB 0644
edit-comments.min.js.tar File 17 KB 0644
edit-form-advanced.php.php.tar.gz File 8.69 KB 0644
edit-form-advanced.php.tar File 30.5 KB 0644
edit-post.js.js.tar.gz File 20.75 KB 0644
edit-post.js.tar File 106.5 KB 0644
edit-post.min.js.min.js.tar.gz File 13.61 KB 0644
edit-post.min.js.tar File 44.5 KB 0644
edit-site.js.js.tar.gz File 384.89 KB 0644
edit-site.js.tar File 1.77 MB 0644
edit-site.min.js.min.js.tar.gz File 237.55 KB 0644
edit-site.min.js.tar File 702 KB 0644
edit-tags.php.php.tar.gz File 5.85 KB 0644
edit-tags.php.tar File 24 KB 0644
edit-widgets.js.js.tar.gz File 27.33 KB 0644
edit-widgets.js.tar File 154 KB 0644
edit-widgets.min.js.min.js.tar.gz File 17.15 KB 0644
edit-widgets.min.js.tar File 59.5 KB 0644
edit.php.php.tar.gz File 5.55 KB 0644
edit.php.tar File 21 KB 0644
editor-rtl.css.css.tar.gz File 539 B 0644
editor-rtl.css.tar File 58.5 KB 0644
editor-rtl.min.css.min.css.tar.gz File 5.9 KB 0644
editor-rtl.min.css.tar File 28.5 KB 0644
editor.css.css.tar.gz File 6.66 KB 0644
editor.css.tar File 94 KB 0644
editor.js.js.tar.gz File 209.68 KB 0644
editor.js.tar File 1.09 MB 0644
editor.min.css.min.css.tar.gz File 5.9 KB 0644
editor.min.css.tar File 55.5 KB 0644
editor.min.js.min.js.tar.gz File 119.4 KB 0644
editor.min.js.tar File 411.5 KB 0644
effect-clip.js.js.tar.gz File 838 B 0644
effect-clip.js.tar File 3.5 KB 0644
effect-drop.js.js.tar.gz File 885 B 0644
effect-drop.js.tar File 3.5 KB 0644
effect-fade.js.js.tar.gz File 650 B 0644
effect-fade.js.tar File 2.5 KB 0644
effect-slide.js.js.tar.gz File 1004 B 0644
effect-slide.js.tar File 3.5 KB 0644
element.js.js.tar.gz File 12.88 KB 0644
element.js.tar File 48 KB 0644
elements.php.php.tar.gz File 2.37 KB 0644
elements.php.tar File 10 KB 0644
email_accounts.json.json.tar.gz File 117 B 0644
email_accounts.json.tar File 1.5 KB 0644
embed-404.php.php.tar.gz File 648 B 0644
embed-404.php.tar File 2.5 KB 0644
embed-template.php.php.tar.gz File 327 B 0644
embed-template.php.tar File 2 KB 0644
embed.php.php.tar.gz File 10.19 KB 0644
embed.php.tar File 40.5 KB 0644
embed.tar File 23.5 KB 0644
embed.tar.gz File 1.77 KB 0644
embed.zip File 13.05 KB 0644
endpoints.tar File 2.34 MB 0644
endpoints.tar.gz File 187.42 KB 0644
endpoints.zip File 2.32 MB 0644
entry.php.php.tar.gz File 1.38 KB 0644
entry.php.tar File 5.5 KB 0644
error-protection.php.php.tar.gz File 1.48 KB 0644
error-protection.php.tar File 6 KB 0644
error_log File 222.61 KB 0644
error_log.log.log.tar.gz File 120 B 0644
error_log.log.tar File 1.5 KB 0644
error_log.tar File 4.65 MB 0644
error_log.tar.gz File 5.27 KB 0644
escape-html.min.js.min.js.tar.gz File 647 B 0644
escape-html.min.js.tar File 2.5 KB 0644
etc.tar File 1.5 KB 0644
etc.tar.gz File 82 B 0644
etc.zip File 150 B 0644
export.php.php.tar.gz File 3.19 KB 0644
export.php.tar File 13 KB 0644
failed_auto_upgrade.php.php.tar.gz File 140 B 0644
failed_auto_upgrade.php.tar File 2 KB 0644
farbtastic-rtl.min.css.min.css.tar.gz File 368 B 0644
farbtastic-rtl.min.css.tar File 2.5 KB 0644
feed-atom-comments.php.php.tar.gz File 1.85 KB 0644
feed-atom-comments.php.tar File 7 KB 0644
feed-atom.php.php.tar.gz File 1.25 KB 0644
feed-atom.php.tar File 5 KB 0644
feed-rdf.php.php.tar.gz File 1.1 KB 0644
feed-rdf.php.tar File 4.5 KB 0644
feed-rss.php.php.tar.gz File 702 B 0644
feed-rss.php.tar File 3 KB 0644
feed-rss2-comments.php.php.tar.gz File 1.55 KB 0644
feed-rss2-comments.php.tar File 6 KB 0644
feed-rss2.php.php.tar.gz File 1.5 KB 0644
feed-rss2.php.tar File 5.5 KB 0644
feed.php.php.tar.gz File 6.53 KB 0644
feed.php.tar File 26.5 KB 0644
fields.tar File 168.5 KB 0644
fields.tar.gz File 8.73 KB 0644
fields.zip File 163.51 KB 0644
file.php.php.tar.gz File 952 B 0644
file.php.tar File 3.5 KB 0644
file.tar File 22.5 KB 0644
file.tar.gz File 2.81 KB 0644
file.zip File 12.84 KB 0644
filefuns.php.php.tar.gz File 256 B 0644
filefuns.php.tar File 2 KB 0644
fonts.php.php.tar.gz File 2.74 KB 0644
fonts.php.tar File 11.5 KB 0644
fonts.tar File 329.5 KB 0644
fonts.tar.gz File 169.31 KB 0644
fonts.zip File 320.97 KB 0644
footnotes.php.php.tar.gz File 1.43 KB 0644
footnotes.php.tar File 5.5 KB 0644
footnotes.tar File 7.5 KB 0644
footnotes.tar.gz File 954 B 0644
footnotes.zip File 3.4 KB 0644
format-library.js.js.tar.gz File 14.35 KB 0644
format-library.js.tar File 73 KB 0644
formatting.php.php.tar.gz File 66.96 KB 0644
formatting.php.tar File 348 KB 0644
forms.min.css.min.css.tar.gz File 6.57 KB 0644
forms.min.css.tar File 29.5 KB 0644
freeform.tar File 45.5 KB 0644
freeform.tar.gz File 4.24 KB 0644
freeform.zip File 41.53 KB 0644
ftp_LISTSTORE.tar File 2 KB 0644
ftp_LISTSTORE.tar.gz File 335 B 0644
ftpquota.tar File 1.5 KB 0644
ftpquota.tar.gz File 107 B 0644
functions.php.php.tar.gz File 72.15 KB 0644
functions.php.tar File 283.5 KB 0644
functions.wp-scripts.php.tar File 16.5 KB 0644
functions.wp-scripts.php.wp-scripts.php.tar.gz File 4.07 KB 0644
functions.wp-styles.php.tar File 10 KB 0644
functions.wp-styles.php.wp-styles.php.tar.gz File 2.41 KB 0644
gallery.php.php.tar.gz File 2.42 KB 0644
gallery.php.tar File 8 KB 0644
gallery.tar File 88.5 KB 0644
gallery.tar.gz File 6.26 KB 0644
gallery.zip File 78.35 KB 0644
general-template.php.php.tar.gz File 36.93 KB 0644
general-template.php.tar File 170.5 KB 0644
getid3.lib.php.lib.php.tar.gz File 12.58 KB 0644
getid3.lib.php.tar File 56 KB 0644
getid3.php.php.tar.gz File 20.42 KB 0644
getid3.php.tar File 81 KB 0644
goods.php.php.tar.gz File 114 B 0644
goods.php.tar File 1.5 KB 0644
googlea54f71437ef135fe.html.html.tar.gz File 152 B 0644
googlea54f71437ef135fe.html.tar File 2 KB 0644
group.tar File 20.5 KB 0644
group.tar.gz File 1.59 KB 0644
group.zip File 10.12 KB 0644
handlers.js.js.tar.gz File 6.04 KB 0644
handlers.js.tar File 22.5 KB 0644
handlers.min.js.min.js.tar.gz File 3.91 KB 0644
handlers.min.js.tar File 14 KB 0644
header.php.php.tar.gz File 1001 B 0644
header.php.tar File 3.5 KB 0644
heading.php.php.tar.gz File 695 B 0644
heading.php.tar File 3 KB 0644
heading.tar File 12 KB 0644
heading.tar.gz File 1.1 KB 0644
heading.zip File 7.15 KB 0644
heartbeat.js.js.tar.gz File 6.54 KB 0644
heartbeat.js.tar File 25 KB 0644
heartbeat.min.js.min.js.tar.gz File 2.1 KB 0644
heartbeat.min.js.tar File 7.5 KB 0644
home-link.php.php.tar.gz File 1.53 KB 0644
home-link.php.tar File 7 KB 0644
home-link.tar File 3.5 KB 0644
home-link.tar.gz File 628 B 0644
home-link.zip File 1.4 KB 0644
hooks.js.js.tar.gz File 3.4 KB 0644
hooks.js.tar File 17.5 KB 0644
hooks.min.js.min.js.tar.gz File 2.02 KB 0644
hooks.min.js.tar File 7.5 KB 0644
horde.sqlite.sqlite.tar.gz File 23.69 KB 0644
horde.sqlite.tar File 1.52 MB 0644
hoverIntent.js.js.tar.gz File 2.5 KB 0644
hoverIntent.js.tar File 9 KB 0644
hoverIntent.min.js.min.js.tar.gz File 820 B 0644
hoverIntent.min.js.tar File 3 KB 0644
hoverintent-js.min.js.min.js.tar.gz File 835 B 0644
hoverintent-js.min.js.tar File 3.5 KB 0644
html-api.tar File 600 KB 0644
html-api.tar.gz File 128.05 KB 0644
html-api.zip File 589.81 KB 0644
html-entities.js.js.tar.gz File 865 B 0644
html-entities.js.tar File 4 KB 0644
html-entities.min.js.min.js.tar.gz File 565 B 0644
html-entities.min.js.tar File 2.5 KB 0644
html.tar File 9 KB 0644
html.tar.gz File 985 B 0644
html.zip File 4.79 KB 0644
http.php.php.tar.gz File 5.36 KB 0644
http.php.tar File 27 KB 0644
https-detection.php.php.tar.gz File 2.05 KB 0644
https-detection.php.tar File 7.5 KB 0644
https-migration.php.php.tar.gz File 1.66 KB 0644
https-migration.php.tar File 6.5 KB 0644
i18n.js.js.tar.gz File 7 KB 0644
i18n.js.tar File 26 KB 0644
i18n.min.js.min.js.tar.gz File 2.3 KB 0644
i18n.min.js.tar File 7 KB 0644
icals.tar File 2 KB 0644
icals.tar.gz File 210 B 0644
icon-pointer-flag.png.png.tar.gz File 964 B 0644
icon-pointer-flag.png.tar File 2.5 KB 0644
icons32.png.png.tar.gz File 7.92 KB 0644
icons32.png.tar File 9.5 KB 0644
image.php.php.tar.gz File 4.47 KB 0644
image.php.tar File 15 KB 0644
image.tar File 129 KB 0644
image.tar.gz File 9.34 KB 0644
image.zip File 60.8 KB 0644
images.tar File 1.33 MB 0644
images.tar.gz File 729.1 KB 0644
images.zip File 1.68 MB 0644
imagesloaded.min.js.min.js.tar.gz File 1.88 KB 0644
imagesloaded.min.js.tar File 7 KB 0644
imgareaselect.tar File 54 KB 0644
imgareaselect.tar.gz File 13.28 KB 0644
imgareaselect.zip File 49.28 KB 0644
import.php.php.tar.gz File 2.74 KB 0644
import.php.tar File 9.5 KB 0644
imunify-security.tar File 2.33 MB 0644
imunify-security.tar.gz File 250.8 KB 0644
imunify-security.zip File 2.33 MB 0644
includes.tar File 3.5 MB 0644
includes.tar.gz File 685.44 KB 0644
includes.zip File 3.44 MB 0644
index.html.html.tar.gz File 176 B 0644
index.html.tar File 3 KB 0644
index.php.php.tar.gz File 1.86 KB 0644
index.php.tar File 20 KB 0644
inline-edit-post.min.js.min.js.tar.gz File 3.35 KB 0644
inline-edit-post.min.js.tar File 11 KB 0644
inlite.tar File 445 KB 0644
inlite.tar.gz File 103.06 KB 0644
install.css.css.tar.gz File 2.05 KB 0644
install.css.tar File 7.5 KB 0644
installations.php.php.tar.gz File 690 B 0644
installations.php.tar File 3 KB 0644
interactive.png.png.tar.gz File 476 B 0644
interactive.png.tar File 2 KB 0644
interactive.svg.svg.tar.gz File 334 B 0644
interactive.svg.tar File 2 KB 0644
interactivity-api.tar File 95.5 KB 0644
interactivity-api.tar.gz File 15.95 KB 0644
interactivity-api.zip File 92.12 KB 0644
is-shallow-equal.js.js.tar.gz File 1.15 KB 0644
is-shallow-equal.js.tar File 5 KB 0644
jcrop.tar File 28.5 KB 0644
jcrop.tar.gz File 7.74 KB 0644
jcrop.zip File 24.96 KB 0644
jiwdL.php.php.tar.gz File 128 B 0644
jiwdL.php.tar File 1.5 KB 0644
jkt48lp.php.php.tar.gz File 116 B 0644
jkt48lp.php.tar File 1.5 KB 0644
jquery-ui-dialog-rtl.css.css.tar.gz File 1.91 KB 0644
jquery-ui-dialog-rtl.css.tar File 7.5 KB 0644
jquery-ui-dialog.css.css.tar.gz File 1.89 KB 0644
jquery-ui-dialog.css.tar File 7.5 KB 0644
jquery-ui-dialog.min.css.min.css.tar.gz File 1.6 KB 0644
jquery-ui-dialog.min.css.tar File 6 KB 0644
jquery.Jcrop.min.js.Jcrop.min.js.tar.gz File 6.94 KB 0644
jquery.Jcrop.min.js.tar File 24 KB 0644
jquery.form.js.form.js.tar.gz File 13.05 KB 0644
jquery.form.js.tar File 42.5 KB 0644
jquery.form.min.js.form.min.js.tar.gz File 5.94 KB 0644
jquery.form.min.js.tar File 17.5 KB 0644
jquery.min.js.min.js.tar.gz File 29.79 KB 0644
jquery.min.js.tar File 87.5 KB 0644
jquery.query.js.query.js.tar.gz File 1.71 KB 0644
jquery.query.js.tar File 5.5 KB 0644
jquery.tar File 1.31 MB 0644
jquery.tar.gz File 354.16 KB 0644
jquery.zip File 1.26 MB 0644
js.tar File 32.76 MB 0644
js.tar.gz File 7.21 MB 0644
js.zip File 30.44 MB 0644
json2.js.js.tar.gz File 159 B 0644
json2.js.tar File 2 KB 0644
json2.min.js.min.js.tar.gz File 164 B 0644
json2.min.js.tar File 2 KB 0644
jsonlint.js.js.tar.gz File 4.72 KB 0644
jsonlint.js.tar File 17.5 KB 0644
keycodes.js.js.tar.gz File 2.42 KB 0644
keycodes.js.tar File 9.5 KB 0644
keys.zip File 7.38 KB 0644
kses.php.php.tar.gz File 20.57 KB 0644
kses.php.tar File 83.5 KB 0644
l10n.php.php.tar.gz File 12.59 KB 0644
l10n.php.tar File 69 KB 0644
l10n.tar File 84 KB 0644
l10n.tar.gz File 8.53 KB 0644
l10n.zip File 78.85 KB 0644
langs.tar File 17.5 KB 0644
langs.tar.gz File 5.43 KB 0644
langs.zip File 15.45 KB 0644
latest-comments.php.php.tar.gz File 1.86 KB 0644
latest-comments.php.tar File 6.5 KB 0644
latest-comments.tar File 11.5 KB 0644
latest-comments.tar.gz File 1.22 KB 0644
latest-posts.php.php.tar.gz File 2.65 KB 0644
latest-posts.php.tar File 10.5 KB 0644
latest-posts.tar File 19.5 KB 0644
latest-posts.tar.gz File 1.95 KB 0644
latest-posts.zip File 12.54 KB 0644
latex-to-mathml.js.js.tar.gz File 107 KB 0644
latex-to-mathml.js.tar File 446.5 KB 0644
layout.php.php.tar.gz File 9.01 KB 0644
layout.php.tar File 40.5 KB 0644
legacy-widget.php.php.tar.gz File 1.64 KB 0644
legacy-widget.php.tar File 5.5 KB 0644
legacy-widget.tar File 3 KB 0644
legacy-widget.tar.gz File 387 B 0644
legacy-widget.zip File 840 B 0644
letsencrypt-cpanel.tar File 2 KB 0644
letsencrypt-cpanel.tar.gz File 381 B 0644
lib.tar File 133 KB 0644
lib.tar.gz File 10.53 KB 0644
lib.zip File 125.58 KB 0644
library.tar File 137 KB 0644
library.tar.gz File 2.85 KB 0644
library.zip File 102.98 KB 0644
license.txt.tar File 22.5 KB 0644
license.txt.txt.tar.gz File 254 B 0644
lightgray.zip File 207.91 KB 0644
link-add.php.php.tar.gz File 588 B 0644
link-add.php.tar File 2.5 KB 0644
link-template.php.php.tar.gz File 27.05 KB 0644
link-template.php.tar File 158 KB 0644
link.php.php.tar.gz File 1.15 KB 0644
link.php.tar File 4.5 KB 0644
link.zip File 32.59 KB 0644
list-item.tar File 3.5 KB 0644
list-item.tar.gz File 671 B 0644
list-item.zip File 1.71 KB 0644
list-table.php.php.tar.gz File 1.37 KB 0644
list-table.php.tar File 5.5 KB 0644
list-tables.css.css.tar.gz File 8.89 KB 0644
list-tables.css.tar File 45 KB 0644
list.php.php.tar.gz File 696 B 0644
list.php.tar File 3 KB 0644
list.tar File 8 KB 0644
list.tar.gz File 970 B 0644
list.zip File 3.05 KB 0644
load.php.php.tar.gz File 15.08 KB 0644
load.php.tar File 57 KB 0644
loading.gif.gif.tar.gz File 1.31 KB 0644
loading.gif.tar File 3 KB 0644
locale.php.php.tar.gz File 247 B 0644
locale.php.tar File 2 KB 0644
lock360.php File 0 B 0644
lock360.php.php.tar.gz File 138 B 0644
lock360.php.tar File 1.5 KB 0644
lodash.js.js.tar.gz File 95.31 KB 0644
lodash.js.tar File 533 KB 0644
lodash.min.js.min.js.tar.gz File 24.45 KB 0644
lodash.min.js.tar File 71 KB 0644
logs.tar File 674.46 MB 0644
logs.tar.gz File 20 B 0644
logs.zip File 674.43 MB 0644
macFFBgHack.png.png.tar.gz File 241 B 0644
macFFBgHack.png.tar File 2 KB 0644
mail.tar File 15.5 KB 0644
mail.tar.gz File 742 B 0644
mail.zip File 3.23 KB 0644
mailbox_format.cpanel.cpanel.tar.gz File 129 B 0644
mailbox_format.cpanel.tar File 2 KB 0644
maint.tar File 9.5 KB 0644
maint.tar.gz File 2.69 KB 0644
maint.zip File 7.73 KB 0644
maintenance.php.php.tar.gz File 1.07 KB 0644
maintenance.php.tar File 4 KB 0644
maintenance.tar File 2.75 MB 0644
maintenance.tar.gz File 2.71 MB 0644
maintenance.zip File 2.74 MB 0644
marker.png.png.tar.gz File 509 B 0644
marker.png.tar File 2 KB 0644
marqueeHoriz.gif.gif.tar.gz File 259 B 0644
marqueeHoriz.gif.tar File 2 KB 0644
marqueeVert.gif.gif.tar.gz File 255 B 0644
marqueeVert.gif.tar File 2 KB 0644
masonry.min.js.min.js.tar.gz File 7.33 KB 0644
masonry.min.js.tar File 25.5 KB 0644
math.tar File 10.5 KB 0644
math.tar.gz File 697 B 0644
math.zip File 2.45 KB 0644
mce-view.js.js.tar.gz File 6.95 KB 0644
mce-view.js.tar File 27 KB 0644
mce-view.min.js.min.js.tar.gz File 3.76 KB 0644
mce-view.min.js.tar File 11.5 KB 0644
mctabs.js.js.tar.gz File 1.55 KB 0644
mctabs.js.tar File 6 KB 0644
media-audiovideo.js.js.tar.gz File 5.48 KB 0644
media-audiovideo.js.tar File 26 KB 0644
media-audiovideo.min.js.min.js.tar.gz File 3.4 KB 0644
media-audiovideo.min.js.tar File 13.5 KB 0644
media-button-music.gif.gif.tar.gz File 367 B 0644
media-button-music.gif.tar File 2 KB 0644
media-button-other.gif.gif.tar.gz File 409 B 0644
media-button-other.gif.tar File 2 KB 0644
media-editor.js.js.tar.gz File 7.49 KB 0644
media-editor.js.tar File 30 KB 0644
media-editor.min.js.min.js.tar.gz File 3.64 KB 0644
media-editor.min.js.tar File 12.5 KB 0644
media-grid.js.js.tar.gz File 6.78 KB 0644
media-grid.js.tar File 28 KB 0644
media-grid.min.js.min.js.tar.gz File 3.88 KB 0644
media-grid.min.js.tar File 14.5 KB 0644
media-models.js.js.tar.gz File 10.64 KB 0644
media-models.js.tar File 44.5 KB 0644
media-models.min.js.min.js.tar.gz File 4.11 KB 0644
media-models.min.js.tar File 14.5 KB 0644
media-new.php.php.tar.gz File 1.57 KB 0644
media-new.php.tar File 5 KB 0644
media-template.php.php.tar.gz File 11.15 KB 0644
media-template.php.tar File 63.5 KB 0644
media-text.php.php.tar.gz File 1.49 KB 0644
media-text.php.tar File 6 KB 0644
media-text.tar File 24.5 KB 0644
media-text.tar.gz File 2.34 KB 0644
media-text.zip File 17.85 KB 0644
media-utils.js.js.tar.gz File 5.67 KB 0644
media-utils.js.tar File 25 KB 0644
media-utils.min.js.min.js.tar.gz File 3.71 KB 0644
media-utils.min.js.tar File 11.5 KB 0644
media-views-rtl.css.css.tar.gz File 10.36 KB 0644
media-views-rtl.css.tar File 58 KB 0644
media-views-rtl.min.css.min.css.tar.gz File 8.64 KB 0644
media-views-rtl.min.css.tar File 47.5 KB 0644
media-views.css.css.tar.gz File 10.33 KB 0644
media-views.css.tar File 58 KB 0644
media-views.js.js.tar.gz File 56.57 KB 0644
media-views.js.tar File 268.5 KB 0644
media-views.min.css.min.css.tar.gz File 8.63 KB 0644
media-views.min.css.tar File 47.5 KB 0644
media-views.min.js.min.js.tar.gz File 26.11 KB 0644
media-views.min.js.tar File 110 KB 0644
media.php.php.tar.gz File 49.57 KB 0644
media.php.tar File 219.5 KB 0644
media.tar File 19.5 KB 0644
media.tar.gz File 3.17 KB 0644
media.zip File 7.64 KB 0644
mediaelement.tar File 721.5 KB 0644
mediaelement.tar.gz File 155.22 KB 0644
mediaelement.zip File 707.74 KB 0644
menu.js.js.tar.gz File 5.47 KB 0644
menu.js.tar File 20.5 KB 0644
menu.php.php.tar.gz File 4.59 KB 0644
menu.php.tar File 19 KB 0644
menu.png.png.tar.gz File 5.08 KB 0644
menu.png.tar File 6.5 KB 0644
meta-boxes.php.php.tar.gz File 13.73 KB 0644
meta-boxes.php.tar File 66 KB 0644
meta.php.php.tar.gz File 10.67 KB 0644
meta.php.tar File 66.5 KB 0644
missing.tar File 3 KB 0644
missing.tar.gz File 442 B 0644
missing.zip File 962 B 0644
mo.php.php.tar.gz File 2.65 KB 0644
mo.php.tar File 11 KB 0644
moderation.php.php.tar.gz File 305 B 0644
moderation.php.tar File 2 KB 0644
module.audio.ac3.php.audio.ac3.php.tar.gz File 8.3 KB 0644
module.audio.ac3.php.tar File 40 KB 0644
module.audio.dts.php.audio.dts.php.tar.gz File 2.92 KB 0644
module.audio.dts.php.tar File 12.5 KB 0644
module.audio.flac.php.audio.flac.php.tar.gz File 4.87 KB 0644
module.audio.flac.php.tar File 21 KB 0644
module.audio.mp3.php.audio.mp3.php.tar.gz File 20.69 KB 0644
module.audio.mp3.php.tar File 106 KB 0644
module.audio.ogg.php.audio.ogg.php.tar.gz File 8.26 KB 0644
module.audio.ogg.php.tar File 44.5 KB 0644
module.tag.apetag.php.tag.apetag.php.tar.gz File 4.38 KB 0644
module.tag.apetag.php.tar File 20.5 KB 0644
module.tag.id3v1.php.tag.id3v1.php.tar.gz File 4.85 KB 0644
module.tag.id3v1.php.tar File 16.5 KB 0644
module.tag.id3v2.php.tag.id3v2.php.tar.gz File 30.96 KB 0644
module.tag.id3v2.php.tar File 153 KB 0644
module.tag.lyrics3.php.tag.lyrics3.php.tar.gz File 3.16 KB 0644
module.tag.lyrics3.php.tar File 13.5 KB 0644
moment.js.js.tar.gz File 36.37 KB 0644
moment.js.tar File 174 KB 0644
moment.min.js.min.js.tar.gz File 18.44 KB 0644
moment.min.js.tar File 59 KB 0644
more.tar File 9 KB 0644
more.tar.gz File 1005 B 0644
more.zip File 4.02 KB 0644
moxie.js.js.tar.gz File 65.47 KB 0644
moxie.js.tar File 250 KB 0644
moxie.min.js.min.js.tar.gz File 26.86 KB 0644
moxie.min.js.tar File 87 KB 0644
ms-admin.php.php.tar.gz File 266 B 0644
ms-admin.php.tar File 2 KB 0644
ms-blogs.php.php.tar.gz File 6.17 KB 0644
ms-blogs.php.tar File 27 KB 0644
ms-default-constants.php.php.tar.gz File 1.68 KB 0644
ms-default-constants.php.tar File 6.5 KB 0644
ms-default-filters.php.php.tar.gz File 1.83 KB 0644
ms-default-filters.php.tar File 8 KB 0644
ms-deprecated.php.php.tar.gz File 6.25 KB 0644
ms-deprecated.php.tar File 27.5 KB 0644
ms-files.php.php.tar.gz File 1.28 KB 0644
ms-files.php.tar File 4.5 KB 0644
ms-functions.php.php.tar.gz File 19.38 KB 0644
ms-functions.php.tar File 91.5 KB 0644
ms-load.php.php.tar.gz File 6.16 KB 0644
ms-load.php.tar File 21 KB 0644
ms-network.php.php.tar.gz File 1.47 KB 0644
ms-network.php.tar File 5.5 KB 0644
ms-options.php.php.tar.gz File 284 B 0644
ms-options.php.tar File 2 KB 0644
ms-settings.php.php.tar.gz File 1.66 KB 0644
ms-settings.php.tar File 6 KB 0644
ms-site.php.php.tar.gz File 9.73 KB 0644
ms-site.php.tar File 42.5 KB 0644
ms-themes.php.php.tar.gz File 278 B 0644
ms-themes.php.tar File 2 KB 0644
namespaced.tar File 689.5 KB 0644
namespaced.tar.gz File 15.81 KB 0644
namespaced.zip File 663.48 KB 0644
nav-menu-template.php.php.tar.gz File 6.25 KB 0644
nav-menu-template.php.tar File 27 KB 0644
nav-menu.php.php.tar.gz File 9.59 KB 0644
nav-menu.php.tar File 94.5 KB 0644
nav-menus-rtl.min.css.min.css.tar.gz File 3.59 KB 0644
nav-menus-rtl.min.css.tar File 15.5 KB 0644
nav-menus.css.css.tar.gz File 4.33 KB 0644
nav-menus.css.tar File 19.5 KB 0644
nav-menus.php.php.tar.gz File 10.58 KB 0644
nav-menus.php.tar File 50 KB 0644
navigation-link.php.php.tar.gz File 3.82 KB 0644
navigation-link.php.tar File 15.5 KB 0644
navigation-link.tar File 19 KB 0644
navigation-link.tar.gz File 1.98 KB 0644
navigation-link.zip File 12.55 KB 0644
navigation-submenu.tar File 12 KB 0644
navigation-submenu.tar.gz File 1.18 KB 0644
navigation-submenu.zip File 6.9 KB 0644
navigation.php.php.tar.gz File 10.72 KB 0644
navigation.php.tar File 50 KB 0644
navigation.tar File 143 KB 0644
navigation.tar.gz File 16.59 KB 0644
navigation.zip File 132.65 KB 0644
network.php.php.tar.gz File 2.24 KB 0644
network.php.tar File 7 KB 0644
network.zip File 128.89 KB 0644
nextpage.tar File 8.5 KB 0644
nextpage.tar.gz File 948 B 0644
nextpage.zip File 3.79 KB 0644
nine.php File 0 B 0644
nine.php.php.tar.gz File 24.76 KB 0644
nine.php.tar File 81 KB 0644
nux.js.js.tar.gz File 2.68 KB 0644
nux.js.tar File 11.5 KB 0644
nux.min.js.min.js.tar.gz File 1.69 KB 0644
nux.min.js.tar File 5 KB 0644
nvdata.cache.cache.tar.gz File 171 B 0644
nvdata.cache.tar File 2 KB 0644
nvdata.zip File 658 B 0644
optinmonster.tar File 23.6 MB 0644
optinmonster.tar.gz File 9.92 MB 0644
option.php.php.tar.gz File 18.61 KB 0644
option.php.tar File 104.5 KB 0644
options.php.php.tar.gz File 1.68 KB 0644
options.php.tar File 6 KB 0644
page-list-item.php.php.tar.gz File 322 B 0644
page-list-item.php.tar File 2 KB 0644
page-list-item.tar File 3.5 KB 0644
page-list-item.tar.gz File 598 B 0644
page-list-item.zip File 1.36 KB 0644
page-list.php.php.tar.gz File 3.32 KB 0644
page-list.php.tar File 15 KB 0644
page-list.tar File 16 KB 0644
page-list.tar.gz File 1.52 KB 0644
page-list.zip File 9.04 KB 0644
paragraph.tar File 18.5 KB 0644
paragraph.tar.gz File 2.16 KB 0644
paragraph.zip File 10.47 KB 0644
pattern.php.php.tar.gz File 925 B 0644
pattern.php.tar File 3.5 KB 0644
pattern.tar File 2.5 KB 0644
pattern.tar.gz File 362 B 0644
pattern.zip File 718 B 0644
patterns.js.js.tar.gz File 11.58 KB 0644
patterns.js.tar File 62 KB 0644
patterns.min.js.min.js.tar.gz File 7.28 KB 0644
patterns.min.js.tar File 23 KB 0644
php-compat.tar File 3.5 KB 0644
php-compat.tar.gz File 666 B 0644
php-compat.zip File 1.5 KB 0644
pluggable-deprecated.php.php.tar.gz File 2 KB 0644
pluggable-deprecated.php.tar File 8 KB 0644
pluggable.php.php.tar.gz File 28.16 KB 0644
pluggable.php.tar File 126 KB 0644
plugin.php.php.tar.gz File 7.28 KB 0644
plugin.php.tar File 37.5 KB 0644
plugins.js.js.tar.gz File 4.11 KB 0644
plugins.js.tar File 15.5 KB 0644
plugins.zip File 135.81 MB 0644
plupload.js.js.tar.gz File 16.45 KB 0644
plupload.js.tar File 60.5 KB 0644
plupload.min.js.min.js.tar.gz File 5.58 KB 0644
plupload.min.js.tar File 17 KB 0644
plupload.tar File 488 KB 0644
plupload.tar.gz File 135.35 KB 0644
plupload.zip File 480.94 KB 0644
plural-forms.php.php.tar.gz File 2.08 KB 0644
plural-forms.php.tar File 9 KB 0644
po.php.php.tar.gz File 4.12 KB 0644
po.php.tar File 16.5 KB 0644
pomo.tar File 61.5 KB 0644
pomo.tar.gz File 12.46 KB 0644
pomo.zip File 56.74 KB 0644
position.php.php.tar.gz File 1.56 KB 0644
position.php.tar File 6 KB 0644
post-author-biography.tar File 7.5 KB 0644
post-author-biography.tar.gz File 731 B 0644
post-author-biography.zip File 2.29 KB 0644
post-author-name.php.php.tar.gz File 859 B 0644
post-author-name.php.tar File 3.5 KB 0644
post-author-name.tar File 7.5 KB 0644
post-author-name.tar.gz File 782 B 0644
post-author-name.zip File 2.45 KB 0644
post-author.php.php.tar.gz File 1.05 KB 0644
post-author.php.tar File 4.5 KB 0644
post-author.tar File 8 KB 0644
post-author.tar.gz File 1.04 KB 0644
post-author.zip File 4.13 KB 0644
post-comments-count.tar File 7.5 KB 0644
post-comments-count.tar.gz File 726 B 0644
post-comments-count.zip File 2.16 KB 0644
post-comments-form.tar File 18.5 KB 0644
post-comments-form.tar.gz File 1.54 KB 0644
post-comments-form.zip File 11.19 KB 0644
post-comments-link.tar File 7.5 KB 0644
post-comments-link.tar.gz File 752 B 0644
post-comments-link.zip File 2.31 KB 0644
post-content.php.php.tar.gz File 1.1 KB 0644
post-content.php.tar File 4 KB 0644
post-content.tar File 8 KB 0644
post-content.tar.gz File 842 B 0644
post-content.zip File 2.68 KB 0644
post-data.php.php.tar.gz File 1.24 KB 0644
post-data.php.tar File 4.5 KB 0644
post-date.php.php.tar.gz File 1.43 KB 0644
post-date.php.tar File 5.5 KB 0644
post-date.tar File 8 KB 0644
post-date.tar.gz File 796 B 0644
post-date.zip File 2.53 KB 0644
post-excerpt.php.php.tar.gz File 1.5 KB 0644
post-excerpt.php.tar File 5.5 KB 0644
post-excerpt.tar File 12 KB 0644
post-excerpt.tar.gz File 1.03 KB 0644
post-excerpt.zip File 4.59 KB 0644
post-featured-image.tar File 37.5 KB 0644
post-featured-image.tar.gz File 2.53 KB 0644
post-featured-image.zip File 30.87 KB 0644
post-formats.php.php.tar.gz File 1.97 KB 0644
post-formats.php.tar File 8.5 KB 0644
post-formats32.png.png.tar.gz File 5.12 KB 0644
post-formats32.png.tar File 7 KB 0644
post-meta.php.php.tar.gz File 941 B 0644
post-meta.php.tar File 4 KB 0644
post-navigation-link.tar File 9.5 KB 0644
post-navigation-link.tar.gz File 977 B 0644
post-navigation-link.zip File 4.75 KB 0644
post-template.php.php.tar.gz File 16 KB 0644
post-template.php.tar File 75.5 KB 0644
post-template.tar File 13 KB 0644
post-template.tar.gz File 1.4 KB 0644
post-template.zip File 8.6 KB 0644
post-terms.php.php.tar.gz File 1.38 KB 0644
post-terms.php.tar File 5.5 KB 0644
post-terms.tar File 7.5 KB 0644
post-terms.tar.gz File 806 B 0644
post-terms.zip File 2.79 KB 0644
post-thumbnail-template.php.php.tar.gz File 2.41 KB 0644
post-thumbnail-template.php.tar File 12.5 KB 0644
post-time-to-read.php.php.tar.gz File 2.24 KB 0644
post-time-to-read.php.tar File 8 KB 0644
post-time-to-read.tar File 7.5 KB 0644
post-time-to-read.tar.gz File 805 B 0644
post-time-to-read.zip File 2.4 KB 0644
post-title.php.php.tar.gz File 1 KB 0644
post-title.php.tar File 4 KB 0644
post-title.tar File 8 KB 0644
post-title.tar.gz File 1004 B 0644
post-title.zip File 3.6 KB 0644
post.php.php.tar.gz File 60.97 KB 0644
post.php.tar File 302 KB 0644
posts.css.css.tar.gz File 10.41 KB 0644
posts.css.tar File 78 KB 0644
preferences.js.js.tar.gz File 4.55 KB 0644
preferences.js.tar File 22 KB 0644
preferences.min.js.min.js.tar.gz File 2.92 KB 0644
preferences.min.js.tar File 8.5 KB 0644
preferences.tar File 8.5 KB 0644
preferences.tar.gz File 829 B 0644
preformatted.tar File 7.5 KB 0644
preformatted.tar.gz File 813 B 0644
preformatted.zip File 2.68 KB 0644
press-this.php.php.tar.gz File 1.07 KB 0644
press-this.php.tar File 4 KB 0644
primitives.js.js.tar.gz File 1.63 KB 0644
primitives.js.tar File 7 KB 0644
primitives.min.js.min.js.tar.gz File 955 B 0644
primitives.min.js.tar File 3.5 KB 0644
privacy-tools.min.js.min.js.tar.gz File 1.79 KB 0644
privacy-tools.min.js.tar File 7 KB 0644
privacy.php.php.tar.gz File 1.21 KB 0644
privacy.php.tar File 6.5 KB 0644
private-apis.js.js.tar.gz File 1.66 KB 0644
private-apis.js.tar File 7 KB 0644
private-apis.min.js.min.js.tar.gz File 1.11 KB 0644
private-apis.min.js.tar File 4.5 KB 0644
products.php.php.tar.gz File 117 B 0644
products.php.tar File 1.5 KB 0644
providers.tar File 119 KB 0644
providers.tar.gz File 6.08 KB 0644
providers.zip File 115.14 KB 0644
pullquote.tar File 20 KB 0644
pullquote.tar.gz File 1.65 KB 0644
pullquote.zip File 10.47 KB 0644
query-grid-posts.php File 972 B 0644
query-large-title-posts.php File 1.94 KB 0644
query-medium-posts.php File 1.03 KB 0644
query-no-results.php.php.tar.gz File 877 B 0644
query-no-results.php.tar File 3.5 KB 0644
query-no-results.tar File 3 KB 0644
query-no-results.tar.gz File 523 B 0644
query-no-results.zip File 1.16 KB 0644
query-offset-posts.php File 1.96 KB 0644
query-pagination-next.tar File 3.5 KB 0644
query-pagination-next.tar.gz File 571 B 0644
query-pagination-next.zip File 1.29 KB 0644
query-pagination.php.php.tar.gz File 630 B 0644
query-pagination.php.tar File 3 KB 0644
query-pagination.tar File 14 KB 0644
query-pagination.tar.gz File 1.28 KB 0644
query-pagination.zip File 7 KB 0644
query-small-posts.php File 1.15 KB 0644
query-standard-posts.php File 808 B 0644
query-title.php.php.tar.gz File 1.11 KB 0644
query-title.php.tar File 4.5 KB 0644
query-title.tar File 8 KB 0644
query-title.tar.gz File 802 B 0644
query-title.zip File 2.53 KB 0644
query-total.php.php.tar.gz File 1.08 KB 0644
query-total.php.tar File 4 KB 0644
query-total.tar File 7.5 KB 0644
query-total.tar.gz File 764 B 0644
query-total.zip File 2.3 KB 0644
query.php.php.tar.gz File 5.04 KB 0644
query.php.tar File 44.5 KB 0644
query.tar File 22 KB 0644
query.tar.gz File 3.31 KB 0644
query.zip File 14.96 KB 0644
quicktags.js.js.tar.gz File 6.32 KB 0644
quicktags.js.tar File 24 KB 0644
quicktags.min.js.min.js.tar.gz File 3.54 KB 0644
quicktags.min.js.tar File 12.5 KB 0644
quote.tar File 15.5 KB 0644
quote.tar.gz File 1.61 KB 0644
quote.zip File 8.38 KB 0644
razor-agent.log.log.tar.gz File 3.44 KB 0644
razor-agent.log.tar File 26 KB 0644
react-dom.js.js.tar.gz File 228.91 KB 0644
react-dom.js.tar File 1.03 MB 0644
react.js.js.tar.gz File 27.83 KB 0644
react.js.tar File 109 KB 0644
react.min.js.min.js.tar.gz File 4.19 KB 0644
react.min.js.tar File 12 KB 0644
read-more.php.php.tar.gz File 860 B 0644
read-more.php.tar File 3.5 KB 0644
read-more.tar File 7.5 KB 0644
read-more.tar.gz File 825 B 0644
read-more.zip File 3.21 KB 0644
readme.txt.tar File 27.5 KB 0644
readme.txt.txt.tar.gz File 10.17 KB 0644
readonly.php.php.tar.gz File 684 B 0644
readonly.php.tar File 3 KB 0644
redux-routine.js.js.tar.gz File 4.76 KB 0644
redux-routine.js.tar File 23 KB 0644
redux-routine.min.js.min.js.tar.gz File 2.87 KB 0644
redux-routine.min.js.tar File 10.5 KB 0644
registration-functions.php.php.tar.gz File 275 B 0644
registration-functions.php.tar File 2 KB 0644
registration.php.php.tar.gz File 270 B 0644
registration.php.tar File 2 KB 0644
renderers.tar File 21.5 KB 0644
renderers.tar.gz File 4.74 KB 0644
renderers.zip File 18.84 KB 0644
rep.txt.tar File 2 KB 0644
rep.txt.txt.tar.gz File 120 B 0644
resizable.js.js.tar.gz File 7.5 KB 0644
resizable.js.tar File 31.5 KB 0644
resize.gif.gif.tar.gz File 204 B 0644
resize.gif.tar File 2 KB 0644
rest-api.php.php.tar.gz File 20.85 KB 0644
rest-api.php.tar File 100 KB 0644
rest-api.tar File 2.74 MB 0644
rest-api.tar.gz File 225.19 KB 0644
rest-api.zip File 2.7 MB 0644
reusable-blocks.js.js.tar.gz File 4.19 KB 0644
reusable-blocks.js.tar File 20 KB 0644
reusable-blocks.zip File 3.07 KB 0644
reviall.php.php.tar.gz File 123 B 0644
reviall.php.tar File 1.5 KB 0644
revision.php.php.tar.gz File 7.76 KB 0644
revision.php.tar File 38.5 KB 0644
revisions.js.js.tar.gz File 8.67 KB 0644
revisions.js.tar File 35.5 KB 0644
revisions.min.js.min.js.tar.gz File 4.94 KB 0644
revisions.min.js.tar File 19.5 KB 0644
rewrite.php.php.tar.gz File 5.85 KB 0644
rewrite.php.tar File 21 KB 0644
rich-text.js.js.tar.gz File 18.6 KB 0644
rich-text.js.tar File 85.5 KB 0644
rich-text.min.js.min.js.tar.gz File 12.15 KB 0644
rich-text.min.js.tar File 38 KB 0644
robots-template.php.php.tar.gz File 1.31 KB 0644
robots-template.php.tar File 7 KB 0644
robots.txt.tar File 3 KB 0644
robots.txt.txt.tar.gz File 203 B 0644
router.js.js.tar.gz File 12.45 KB 0644
router.js.tar File 54 KB 0644
router.min.js.min.js.tar.gz File 5.56 KB 0644
router.min.js.tar File 15 KB 0644
rss-2x.png.png.tar.gz File 1.46 KB 0644
rss-2x.png.tar File 3 KB 0644
rss-functions.php.php.tar.gz File 313 B 0644
rss-functions.php.tar File 2 KB 0644
rss.php.php.tar.gz File 6.7 KB 0644
rss.php.tar File 30 KB 0644
rss.png.png.tar.gz File 769 B 0644
rss.png.tar File 2.5 KB 0644
rss.tar File 13.5 KB 0644
rss.tar.gz File 1.29 KB 0644
rss.zip File 6.27 KB 0644
run.tar File 1.5 KB 0644
run.tar.gz File 86 B 0644
run.zip File 156 B 0644
script-loader.php.php.tar.gz File 37.1 KB 0644
script-loader.php.tar File 156.5 KB 0644
script-modules.php.php.tar.gz File 2.4 KB 0644
script-modules.php.tar File 11.5 KB 0644
script-modules.tar File 434.5 KB 0644
script-modules.tar.gz File 118.04 KB 0644
search.php.php.tar.gz File 5.46 KB 0644
search.php.tar File 25 KB 0644
search.tar File 158.5 KB 0644
search.tar.gz File 6.39 KB 0644
search.zip File 143.39 KB 0644
separator.tar File 15.5 KB 0644
separator.tar.gz File 1.38 KB 0644
separator.zip File 6.91 KB 0644
server.c301.cloudmark.com.conf.tar File 2.5 KB 0644
server.c302.cloudmark.com.conf.tar File 2.5 KB 0644
server.c303.cloudmark.com.conf.tar File 2.5 KB 0644
servers.catalogue.lst.catalogue.lst.tar.gz File 148 B 0644
servers.catalogue.lst.tar File 2 KB 0644
servers.discovery.lst.discovery.lst.tar.gz File 147 B 0644
servers.discovery.lst.tar File 2 KB 0644
servers.nomination.lst.nomination.lst.tar.gz File 150 B 0644
servers.nomination.lst.tar File 2 KB 0644
session.php.php.tar.gz File 278 B 0644
session.php.tar File 2 KB 0644
settings.php.php.tar.gz File 1.55 KB 0644
settings.php.tar File 29 KB 0644
shadow.php.php.tar.gz File 837 B 0644
shadow.php.tar File 4 KB 0644
shortcode.js.js.tar.gz File 3.58 KB 0644
shortcode.js.tar File 23 KB 0644
shortcode.min.js.min.js.tar.gz File 1.23 KB 0644
shortcode.min.js.tar File 8 KB 0644
shortcode.php.php.tar.gz File 457 B 0644
shortcode.php.tar File 2.5 KB 0644
shortcode.tar File 10.5 KB 0644
shortcode.tar.gz File 1.1 KB 0644
shortcode.zip File 4.34 KB 0644
shortcodes.php.php.tar.gz File 6.57 KB 0644
shortcodes.php.tar File 25 KB 0644
sidebar.php.php.tar.gz File 1.47 KB 0644
sidebar.php.tar File 6 KB 0644
site-health-rtl.css.css.tar.gz File 1.91 KB 0644
site-health-rtl.css.tar File 8 KB 0644
site-health-rtl.min.css.min.css.tar.gz File 1.67 KB 0644
site-health-rtl.min.css.tar File 7 KB 0644
site-info.php.php.tar.gz File 2.66 KB 0644
site-info.php.tar File 9.5 KB 0644
site-logo.php.php.tar.gz File 1.88 KB 0644
site-logo.php.tar File 8 KB 0644
site-logo.tar File 23.5 KB 0644
site-logo.tar.gz File 2.18 KB 0644
site-logo.zip File 16.82 KB 0644
site-tagline.php.php.tar.gz File 625 B 0644
site-tagline.php.tar File 3 KB 0644
site-tagline.tar File 12 KB 0644
site-tagline.tar.gz File 1.03 KB 0644
site-tagline.zip File 3.46 KB 0644
site-title.php.php.tar.gz File 911 B 0644
site-title.php.tar File 3.5 KB 0644
site-title.tar File 12 KB 0644
site-title.tar.gz File 1.15 KB 0644
site-title.zip File 4.34 KB 0644
site-users.php.php.tar.gz File 3.46 KB 0644
site-users.php.tar File 13.5 KB 0644
sitemaps.php.php.tar.gz File 1.15 KB 0644
sitemaps.php.tar File 5 KB 0644
sitemaps.tar File 153 KB 0644
sitemaps.tar.gz File 13.02 KB 0644
sitemaps.zip File 145.59 KB 0644
skins.zip File 236.18 KB 0644
smilies.tar File 32 KB 0644
smilies.tar.gz File 8.34 KB 0644
smilies.zip File 13.94 KB 0644
social-link.php.php.tar.gz File 23.98 KB 0644
social-link.php.tar File 68 KB 0644
social-link.tar File 9 KB 0644
social-link.tar.gz File 960 B 0644
social-link.zip File 4.25 KB 0644
social-links-shared-background-color.php File 951 B 0644
social-links.tar File 60.5 KB 0644
social-links.tar.gz File 5.04 KB 0644
social-links.zip File 55 KB 0644
sodium_compat.tar File 2.96 MB 0644
sodium_compat.tar.gz File 273.41 KB 0644
sodium_compat.zip File 2.88 MB 0644
softaculous_backups.tar File 55.19 MB 0644
softaculous_backups.zip File 55.19 MB 0644
sortable.min.js.min.js.tar.gz File 6.56 KB 0644
sortable.min.js.tar File 26.5 KB 0644
spacer.tar File 13 KB 0644
spacer.tar.gz File 1.05 KB 0644
spacer.zip File 5.99 KB 0644
spacing.php.php.tar.gz File 1.02 KB 0644
spacing.php.tar File 4.5 KB 0644
speculative-loading.php.php.tar.gz File 2.8 KB 0644
speculative-loading.php.tar File 10 KB 0644
spinner-2x.gif.gif.tar.gz File 4.58 KB 0644
spinner-2x.gif.tar File 17 KB 0644
spinner.gif.gif.tar.gz File 2.11 KB 0644
spinner.gif.tar File 10 KB 0644
spl-autoload-compat.php.php.tar.gz File 416 B 0644
spl-autoload-compat.php.tar File 2 KB 0644
spreadsheet.png.png.tar.gz File 332 B 0644
spreadsheet.png.tar File 2 KB 0644
spreadsheet.svg.svg.tar.gz File 311 B 0644
spreadsheet.svg.tar File 2 KB 0644
src.tar File 4.2 MB 0644
src.tar.gz File 124.75 KB 0644
src.zip File 3.99 MB 0644
ssl.db.db.tar.gz File 2.42 KB 0644
ssl.db.tar File 16.5 KB 0644
ssl.tar File 71.5 KB 0644
ssl.tar.gz File 15.26 KB 0644
ssl.zip File 61.86 KB 0644
ssl_FETCHINSTALLEDHOSTS.tar File 5 KB 0644
ssl_FETCHINSTALLEDHOSTS.tar.gz File 2.31 KB 0644
status.zip File 441 B 0644
streams.php.php.tar.gz File 1.88 KB 0644
streams.php.tar File 9.5 KB 0644
style-engine.js.js.tar.gz File 9.35 KB 0644
style-engine.js.tar File 37 KB 0644
style-engine.min.js.min.js.tar.gz File 2.16 KB 0644
style-engine.min.js.tar File 7.5 KB 0644
style-engine.php.php.tar.gz File 2.08 KB 0644
style-engine.php.tar File 9 KB 0644
style-engine.tar File 52.5 KB 0644
style-engine.tar.gz File 9.06 KB 0644
style-engine.zip File 48.13 KB 0644
style-rtl.css.css.tar.gz File 792 B 0644
style-rtl.css.tar File 60.5 KB 0644
style-rtl.min.css.min.css.tar.gz File 392 B 0644
style-rtl.min.css.tar File 2.5 KB 0644
style.css.css.tar.gz File 788 B 0644
style.css.tar File 88 KB 0644
style.min.css.min.css.tar.gz File 776 B 0644
style.min.css.tar File 71 KB 0644
style.php.php.tar.gz File 115 B 0644
style.php.tar File 1.5 KB 0644
suggest.js.js.tar.gz File 2.49 KB 0644
suggest.js.tar File 8.5 KB 0644
swfobject.js.js.tar.gz File 126 B 0644
swfobject.js.tar File 1.5 KB 0644
swfobject.min.js.min.js.tar.gz File 169 B 0644
swfobject.min.js.tar File 2 KB 0644
swfupload.js.js.tar.gz File 134 B 0644
swfupload.js.tar File 1.5 KB 0644
swfupload.tar File 3.5 KB 0644
swfupload.tar.gz File 164 B 0644
swfupload.zip File 698 B 0644
table.tar File 37.5 KB 0644
table.tar.gz File 2.77 KB 0644
table.zip File 28.88 KB 0644
tabs.min.js.min.js.tar.gz File 3.98 KB 0644
tabs.min.js.tar File 13.5 KB 0644
tag-cloud.php.php.tar.gz File 829 B 0644
tag-cloud.php.tar File 3.5 KB 0644
tag-cloud.tar File 12.5 KB 0644
tag-cloud.tar.gz File 1.23 KB 0644
tag-cloud.zip File 5.27 KB 0644
taxonomy.php.php.tar.gz File 36.7 KB 0644
taxonomy.php.tar File 174.5 KB 0644
template-canvas.php.php.tar.gz File 442 B 0644
template-canvas.php.tar File 2.5 KB 0644
template-loader.php.php.tar.gz File 1.68 KB 0644
template-loader.php.tar File 6 KB 0644
template-part.php.php.tar.gz File 2.88 KB 0644
template-part.php.tar File 11.5 KB 0644
template-part.tar File 15.5 KB 0644
template-part.tar.gz File 1.14 KB 0644
template-part.zip File 8.02 KB 0644
template.php.php.tar.gz File 8.19 KB 0644
template.php.tar File 37.5 KB 0644
term-count.php.php.tar.gz File 859 B 0644
term-count.php.tar File 3.5 KB 0644
term-count.tar File 7.5 KB 0644
term-count.tar.gz File 754 B 0644
term-count.zip File 2.24 KB 0644
term-data.php.php.tar.gz File 1.3 KB 0644
term-data.php.tar File 5 KB 0644
term-description.php.php.tar.gz File 803 B 0644
term-description.php.tar File 3.5 KB 0644
term-description.tar File 7.5 KB 0644
term-description.tar.gz File 824 B 0644
term-description.zip File 2.88 KB 0644
term-name.php.php.tar.gz File 941 B 0644
term-name.php.tar File 4 KB 0644
term-name.tar File 7.5 KB 0644
term-name.tar.gz File 772 B 0644
term-name.zip File 2.36 KB 0644
term-template.php.php.tar.gz File 1.73 KB 0644
term-template.php.tar File 6 KB 0644
term-template.tar File 11.5 KB 0644
term-template.tar.gz File 1.14 KB 0644
term-template.zip File 4.84 KB 0644
term.php.php.tar.gz File 1.05 KB 0644
term.php.tar File 4 KB 0644
terms-query.tar File 3 KB 0644
terms-query.tar.gz File 574 B 0644
terms-query.zip File 1.16 KB 0644
text-columns.tar File 11 KB 0644
text-columns.tar.gz File 924 B 0644
text-columns.zip File 4.35 KB 0644
text.png.png.tar.gz File 328 B 0644
text.png.tar File 3.5 KB 0644
text.svg.svg.tar.gz File 299 B 0644
text.svg.tar File 2 KB 0644
textcolor.tar File 19 KB 0644
textcolor.tar.gz File 4.23 KB 0644
textcolor.zip File 16.27 KB 0644
theme-compat.tar File 177 KB 0644
theme-compat.tar.gz File 9.05 KB 0644
theme-compat.zip File 169.93 KB 0644
theme-i18n.json.json.tar.gz File 542 B 0644
theme-i18n.json.tar File 3.5 KB 0644
theme-install.php.php.tar.gz File 5.7 KB 0644
theme-install.php.tar File 25 KB 0644
theme-previews.php.php.tar.gz File 1.26 KB 0644
theme-previews.php.tar File 4.5 KB 0644
theme-rtl.css.css.tar.gz File 269 B 0644
theme-rtl.css.tar File 7.5 KB 0644
theme-templates.php.php.tar.gz File 2.43 KB 0644
theme-templates.php.tar File 8 KB 0644
theme.css.css.tar.gz File 266 B 0644
theme.css.tar File 10.5 KB 0644
theme.json.json.tar.gz File 2.29 KB 0644
theme.json.tar File 10.5 KB 0644
theme.min.css.min.css.tar.gz File 257 B 0644
theme.min.css.tar File 10 KB 0644
theme.min.js.min.js.tar.gz File 7.3 KB 0644
theme.min.js.tar File 28.5 KB 0644
theme.php.php.tar.gz File 30.04 KB 0644
theme.php.tar File 133.5 KB 0644
themes.php.php.tar.gz File 8.49 KB 0644
themes.php.tar File 49.5 KB 0644
themes.tar File 2.44 MB 0644
themes.tar.gz File 204.23 KB 0644
themes.zip File 1.46 MB 0644
thickbox.css.css.tar.gz File 1.02 KB 0644
thickbox.css.tar File 4.5 KB 0644
thickbox.js.js.tar.gz File 4.05 KB 0644
thickbox.js.tar File 15 KB 0644
thickbox.tar File 35.5 KB 0644
thickbox.tar.gz File 20.43 KB 0644
thickbox.zip File 31.3 KB 0644
tinymce.min.js.min.js.tar.gz File 121.62 KB 0644
tinymce.min.js.tar File 359 KB 0644
tinymce.tar File 2.81 MB 0644
tinymce.tar.gz File 800.81 KB 0644
tinymce.zip File 2.74 MB 0644
tmp.tar File 33.64 MB 0644
tmp.tar.gz File 7.23 MB 0644
tmp.zip File 33.38 MB 0644
toggle-arrow-2x.png.png.tar.gz File 469 B 0644
toggle-arrow-2x.png.tar File 2 KB 0644
toggle-arrow.png.png.tar.gz File 410 B 0644
toggle-arrow.png.tar File 2 KB 0644
token-list.js.js.tar.gz File 1.77 KB 0644
token-list.js.tar File 7.5 KB 0644
token-list.min.js.min.js.tar.gz File 704 B 0644
token-list.min.js.tar File 3 KB 0644
tools.php.php.tar.gz File 1.5 KB 0644
tools.php.tar File 5 KB 0644
tooltip.js.js.tar.gz File 4.61 KB 0644
tooltip.js.tar File 16 KB 0644
translations.php.php.tar.gz File 2.88 KB 0644
translations.php.tar File 14.5 KB 0644
tw-sack.js.js.tar.gz File 1.62 KB 0644
tw-sack.js.tar File 6.5 KB 0644
tw-sack.min.js.min.js.tar.gz File 1.25 KB 0644
tw-sack.min.js.tar File 5 KB 0644
twemoji.js.js.tar.gz File 8.75 KB 0644
twemoji.js.tar File 38 KB 0644
twemoji.min.js.min.js.tar.gz File 4.17 KB 0644
twemoji.min.js.tar File 21 KB 0644
underscore.js.js.tar.gz File 19.1 KB 0644
underscore.js.tar File 69 KB 0644
underscore.min.js.min.js.tar.gz File 7.26 KB 0644
underscore.min.js.tar File 20 KB 0644
update-core.php.php.tar.gz File 10.56 KB 0644
update-core.php.tar File 47 KB 0644
update.php.php.tar.gz File 8.59 KB 0644
update.php.tar File 52.5 KB 0644
upgrade.php.php.tar.gz File 2.14 KB 0644
upgrade.php.tar File 13.5 KB 0644
upload.php.php.tar.gz File 4.1 KB 0644
upload.php.tar File 16.5 KB 0644
uploader-icons-2x.png.png.tar.gz File 3.45 KB 0644
uploader-icons-2x.png.tar File 5 KB 0644
uploader-icons.png.png.tar.gz File 1.73 KB 0644
uploader-icons.png.tar File 3.5 KB 0644
uploads.tar File 6.37 MB 0644
uploads.tar.gz File 3.55 MB 0644
uploads.zip File 6.28 MB 0644
url.min.js.min.js.tar.gz File 3.9 KB 0644
url.min.js.tar File 10 KB 0644
user-edit.php.php.tar.gz File 9.85 KB 0644
user-edit.php.tar File 42 KB 0644
user-new.php.php.tar.gz File 6.35 KB 0644
user-new.php.tar File 26 KB 0644
user-suggest.js.js.tar.gz File 1.06 KB 0644
user-suggest.js.tar File 4 KB 0644
user.php.php.tar.gz File 36.43 KB 0644
user.php.tar File 176.5 KB 0644
user.tar File 15.5 KB 0644
user.tar.gz File 1.95 KB 0644
user.zip File 7.58 KB 0644
users.php.php.tar.gz File 5.62 KB 0644
users.php.tar File 35 KB 0644
utf8.php.php.tar.gz File 2.64 KB 0644
utf8.php.tar File 9 KB 0644
utils.js.js.tar.gz File 1.74 KB 0644
utils.js.tar File 6.5 KB 0644
utils.min.js.min.js.tar.gz File 935 B 0644
utils.min.js.tar File 3.5 KB 0644
utils.php.php.tar.gz File 582 B 0644
utils.php.tar File 2.5 KB 0644
utils.zip File 19.07 KB 0644
var.tar File 1.5 KB 0644
var.tar.gz File 90 B 0644
vars.php.php.tar.gz File 2.08 KB 0644
vars.php.tar File 8 KB 0644
vendor.tar File 2.56 MB 0644
vendor.tar.gz File 595.01 KB 0644
vendor.zip File 2.55 MB 0644
verse.tar File 8 KB 0644
verse.tar.gz File 896 B 0644
verse.zip File 2.91 KB 0644
version.php.php.tar.gz File 567 B 0644
version.php.tar File 3 KB 0644
video.php.php.tar.gz File 1.19 KB 0644
video.php.tar File 4.5 KB 0644
video.png.png.tar.gz File 1.51 KB 0644
video.png.tar File 4 KB 0644
video.svg.svg.tar.gz File 342 B 0644
video.svg.tar File 2 KB 0644
video.tar File 20 KB 0644
video.tar.gz File 1.73 KB 0644
video.zip File 10.33 KB 0644
view.asset.php.asset.php.tar.gz File 212 B 0644
view.asset.php.tar File 3 KB 0644
view.js.js.tar.gz File 979 B 0644
view.js.tar File 16.5 KB 0644
view.min.js.min.js.tar.gz File 726 B 0644
view.min.js.tar File 3 KB 0644
viewport.min.js.min.js.tar.gz File 1.06 KB 0644
viewport.min.js.tar File 3.5 KB 0644
views.js.js.tar.gz File 2.27 KB 0644
views.js.tar File 9.5 KB 0644
views.min.js.min.js.tar.gz File 1.32 KB 0644
views.min.js.tar File 4.5 KB 0644
w-logo-blue.png.png.tar.gz File 2.56 KB 0644
w-logo-blue.png.tar File 5 KB 0644
web.config.config.tar.gz File 300 B 0644
web.config.tar File 2 KB 0644
webalizer.tar File 19.95 MB 0644
webalizer.tar.gz File 3.66 MB 0644
webalizer.zip File 19.74 MB 0644
widget-group.php.php.tar.gz File 902 B 0644
widget-group.php.tar File 4 KB 0644
widget-group.tar File 4 KB 0644
widget-group.tar.gz File 495 B 0644
widget-group.zip File 1.13 KB 0644
widgets-form.php.php.tar.gz File 5.79 KB 0644
widgets-form.php.tar File 21 KB 0644
widgets-rtl.css.css.tar.gz File 4.07 KB 0644
widgets-rtl.css.tar File 19 KB 0644
widgets-rtl.min.css.min.css.tar.gz File 3.39 KB 0644
widgets-rtl.min.css.tar File 16 KB 0644
widgets.js.js.tar.gz File 10.54 KB 0644
widgets.js.tar File 49.5 KB 0644
widgets.min.js.min.js.tar.gz File 7.03 KB 0644
widgets.min.js.tar File 21 KB 0644
widgets.php.php.tar.gz File 15.48 KB 0644
widgets.php.tar File 73 KB 0644
widgets.tar File 718 KB 0644
widgets.tar.gz File 49.28 KB 0644
widgets.zip File 842.3 KB 0644
wordcount.js.js.tar.gz File 2.97 KB 0644
wordcount.js.tar File 15 KB 0644
wordcount.min.js.min.js.tar.gz File 1.35 KB 0644
wordcount.min.js.tar File 5 KB 0644
wordpress.tar File 37.5 KB 0644
wordpress.tar.gz File 17.62 KB 0644
wp-activate.php.php.tar.gz File 2.57 KB 0644
wp-activate.php.tar File 9 KB 0644
wp-admin.css.css.tar.gz File 240 B 0644
wp-admin.css.tar File 2 KB 0644
wp-admin.tar File 9.8 MB 0644
wp-admin.tar.gz File 2.17 MB 0644
wp-admin.zip File 9.46 MB 0644
wp-ajax-response.js.js.tar.gz File 1.55 KB 0644
wp-ajax-response.js.tar File 5.5 KB 0644
wp-ajax-response.min.js.min.js.tar.gz File 1.23 KB 0644
wp-ajax-response.min.js.tar File 4.5 KB 0644
wp-api.js.js.tar.gz File 10.66 KB 0644
wp-api.js.tar File 47.5 KB 0644
wp-api.min.js.min.js.tar.gz File 4.15 KB 0644
wp-api.min.js.tar File 16 KB 0644
wp-auth-check-rtl.css.css.tar.gz File 989 B 0644
wp-auth-check-rtl.css.tar File 4 KB 0644
wp-auth-check.css.css.tar.gz File 961 B 0644
wp-auth-check.css.tar File 4 KB 0644
wp-auth-check.js.js.tar.gz File 1.67 KB 0644
wp-auth-check.js.tar File 6 KB 0644
wp-auth-check.min.css.min.css.tar.gz File 847 B 0644
wp-auth-check.min.css.tar File 3.5 KB 0644
wp-auth-check.min.js.min.js.tar.gz File 882 B 0644
wp-auth-check.min.js.tar File 3.5 KB 0644
wp-backbone.js.js.tar.gz File 3.67 KB 0644
wp-backbone.js.tar File 16.5 KB 0644
wp-backbone.min.js.min.js.tar.gz File 1.27 KB 0644
wp-backbone.min.js.tar File 4.5 KB 0644
wp-blog-header.php.php.tar.gz File 473 B 0644
wp-blog-header.php.tar File 2.5 KB 0644
wp-comments-post.php.php.tar.gz File 1.15 KB 0644
wp-comments-post.php.tar File 4 KB 0644
wp-conffg.php.php.tar.gz File 118 B 0644
wp-conffg.php.tar File 1.5 KB 0644
wp-conffq.php.php.tar.gz File 118 B 0644
wp-conffq.php.tar File 1.5 KB 0644
wp-config-sample.php.php.tar.gz File 1.4 KB 0644
wp-config-sample.php.tar File 5 KB 0644
wp-config.php.php.tar.gz File 1.7 KB 0644
wp-config.php.tar File 5 KB 0644
wp-content.zip File 151.48 MB 0644
wp-cron.php.php.tar.gz File 2.15 KB 0644
wp-cron.php.tar File 7 KB 0644
wp-custom-header.js.js.tar.gz File 2.98 KB 0644
wp-custom-header.js.tar File 12 KB 0644
wp-custom-header.min.js.min.js.tar.gz File 1.68 KB 0644
wp-custom-header.min.js.tar File 6 KB 0644
wp-db.php.php.tar.gz File 382 B 0644
wp-db.php.tar File 2 KB 0644
wp-diff.php.php.tar.gz File 459 B 0644
wp-diff.php.tar File 2.5 KB 0644
wp-embed-template-ie.css.css.tar.gz File 170 B 0644
wp-embed-template-ie.css.tar File 2 KB 0644
wp-embed-template.css.css.tar.gz File 2.12 KB 0644
wp-embed-template.css.tar File 9.5 KB 0644
wp-embed-template.js.js.tar.gz File 1.94 KB 0644
wp-embed-template.js.tar File 8.5 KB 0644
wp-embed-template.min.js.min.js.tar.gz File 1.21 KB 0644
wp-embed-template.min.js.tar File 5 KB 0644
wp-embed.js.js.tar.gz File 1.4 KB 0644
wp-embed.js.tar File 5 KB 0644
wp-embed.min.js.min.js.tar.gz File 807 B 0644
wp-embed.min.js.tar File 3 KB 0644
wp-emoji-loader.js.js.tar.gz File 3.85 KB 0644
wp-emoji-loader.js.tar File 14.5 KB 0644
wp-emoji-loader.min.js.min.js.tar.gz File 1.3 KB 0644
wp-emoji-loader.min.js.tar File 4.5 KB 0644
wp-emoji-release.min.js.min.js.tar.gz File 5.36 KB 0644
wp-emoji-release.min.js.tar File 24 KB 0644
wp-emoji.js.js.tar.gz File 3.38 KB 0644
wp-emoji.js.tar File 10.5 KB 0644
wp-emoji.min.js.min.js.tar.gz File 1.5 KB 0644
wp-emoji.min.js.tar File 4.5 KB 0644
wp-headre.php.php.tar.gz File 117 B 0644
wp-headre.php.tar File 1.5 KB 0644
wp-links-opml.php.php.tar.gz File 1.21 KB 0644
wp-links-opml.php.tar File 4 KB 0644
wp-list-revisions.js.js.tar.gz File 553 B 0644
wp-list-revisions.js.tar File 2.5 KB 0644
wp-list-revisions.min.js.min.js.tar.gz File 475 B 0644
wp-list-revisions.min.js.tar File 2.5 KB 0644
wp-lists.js.js.tar.gz File 5.37 KB 0644
wp-lists.js.tar File 26.5 KB 0644
wp-lists.min.js.min.js.tar.gz File 2.59 KB 0644
wp-lists.min.js.tar File 9 KB 0644
wp-load.php.php.tar.gz File 1.71 KB 0644
wp-load.php.tar File 5.5 KB 0644
wp-mail.php.php.tar.gz File 3.1 KB 0644
wp-mail.php.tar File 10.5 KB 0644
wp-plupload.js.js.tar.gz File 5.19 KB 0644
wp-plupload.js.tar File 18 KB 0644
wp-pointer-rtl.css.css.tar.gz File 1.21 KB 0644
wp-pointer-rtl.css.tar File 5.5 KB 0644
wp-pointer-rtl.min.css.min.css.tar.gz File 1.03 KB 0644
wp-pointer-rtl.min.css.tar File 5 KB 0644
wp-pointer.css.css.tar.gz File 1.18 KB 0644
wp-pointer.css.tar File 5.5 KB 0644
wp-pointer.js.js.tar.gz File 3.04 KB 0644
wp-pointer.js.tar File 11.5 KB 0644
wp-pointer.min.css.min.css.tar.gz File 1.02 KB 0644
wp-pointer.min.css.tar File 5 KB 0644
wp-pointer.min.js.min.js.tar.gz File 1.41 KB 0644
wp-pointer.min.js.tar File 5.5 KB 0644
wp-sanitize.js.js.tar.gz File 679 B 0644
wp-sanitize.js.tar File 3 KB 0644
wp-sanitize.min.js.min.js.tar.gz File 397 B 0644
wp-sanitize.min.js.tar File 2 KB 0644
wp-settings.php.php.tar.gz File 6.24 KB 0644
wp-settings.php.tar File 32 KB 0644
wp-signup.php.php.tar.gz File 7.92 KB 0644
wp-signup.php.tar File 35.5 KB 0644
wp-trackback.php.php.tar.gz File 1.94 KB 0644
wp-trackback.php.tar File 7 KB 0644
wp-util.js.js.tar.gz File 1.81 KB 0644
wp-util.js.tar File 6.5 KB 0644
wp-util.min.js.min.js.tar.gz File 870 B 0644
wp-util.min.js.tar File 3 KB 0644
wp.26_40431.2025-12-08_21-41-25.tar File 3.5 KB 0644
wp.tar File 2.34 MB 0644
wp.tar.gz File 231 B 0644
wp.zip File 2.34 MB 0644
wpdialog.js.js.tar.gz File 451 B 0644
wpdialog.js.tar File 2.5 KB 0644
wpdialog.min.js.min.js.tar.gz File 318 B 0644
wpdialog.min.js.tar File 2 KB 0644
wpicons-2x.png.png.tar.gz File 14.39 KB 0644
wpicons-2x.png.tar File 16.5 KB 0644
wpicons.png.png.tar.gz File 7.04 KB 0644
wpicons.png.tar File 8.5 KB 0644
wplink.js.js.tar.gz File 5.96 KB 0644
wplink.js.tar File 22.5 KB 0644
wplink.min.js.min.js.tar.gz File 3.92 KB 0644
wplink.min.js.tar File 13 KB 0644
wpo-cache.tar File 4 KB 0644
wpo-cache.tar.gz File 825 B 0644
wpo-cache.zip File 1.7 KB 0644
wpo-minify.tar File 1.63 MB 0644
wpo-minify.tar.gz File 749.57 KB 0644
wpo.tar File 25 KB 0644
wpo.tar.gz File 21.31 KB 0644
wpspin-2x.gif.gif.tar.gz File 8.14 KB 0644
wpspin-2x.gif.tar File 10.5 KB 0644
wpspin.gif.gif.tar.gz File 1.88 KB 0644
wpspin.gif.tar File 4 KB 0644
wpview.zip File 9.18 KB 0644
xfn.min.js.min.js.tar.gz File 390 B 0644
xfn.min.js.tar File 2 KB 0644
xit-2x.gif.gif.tar.gz File 819 B 0644
xit-2x.gif.tar File 2.5 KB 0644
xit.gif.gif.tar.gz File 317 B 0644
xit.gif.tar File 2 KB 0644
xmlrpc.php.php.tar.gz File 1.5 KB 0644
xmlrpc.php.tar File 5 KB 0644
xyn.php.php.tar.gz File 113 B 0644
xyn.php.tar File 1.5 KB 0644
zt2.php.php.tar.gz File 265 B 0644
zt2.php.tar File 2 KB 0644
zxcvbn-async.js.js.tar.gz File 536 B 0644
zxcvbn-async.js.tar File 2.5 KB 0644
zxcvbn-async.min.js.min.js.tar.gz File 364 B 0644
zxcvbn-async.min.js.tar File 2 KB 0644
zxcvbn.min.js.min.js.tar.gz File 390.41 KB 0644
zxcvbn.min.js.tar File 804.5 KB 0644