Your IP : 18.191.237.201


Current Path : /proc/self/root/home/sudancam/public_html3/games/wp-content/plugins/jetpack/extensions/blocks/social-previews/
Upload File :
Current File : //proc/self/root/home/sudancam/public_html3/games/wp-content/plugins/jetpack/extensions/blocks/social-previews/social-previews.php

<?php
/**
 * Social Previews Block.
 *
 * @since 8.x
 *
 * @package automattic/jetpack
 */

namespace Automattic\Jetpack\Extensions\Social_Previews;

use Automattic\Jetpack\Blocks;

const FEATURE_NAME = 'social-previews';
const BLOCK_NAME   = 'jetpack/' . FEATURE_NAME;

/**
 * Registers the Social Previews feature with the block editor.
 */
function register_block() {
	Blocks::jetpack_register_block(
		BLOCK_NAME,
		array(
			'plan_check' => true,
		)
	);
}
add_action( 'init', __NAMESPACE__ . '\register_block' );