register_block_core_social_link

函式
register_block_core_social_link ( No parameters )

register_block_core_social_link: 此函式在編輯器中註冊一個社會連結塊型別,並對其進行設定。社交連結塊允許使用者新增連結到他們的社交媒體資料。

註冊”core/social-link”塊。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function register_block_core_social_link() {
$path = __DIR__ . '/social-link/block.json';
$metadata = json_decode( file_get_contents( $path ), true );
register_block_type(
$metadata['name'],
array_merge(
$metadata,
array(
'render_callback' => 'render_block_core_social_link',
)
)
);
}
function register_block_core_social_link() { $path = __DIR__ . '/social-link/block.json'; $metadata = json_decode( file_get_contents( $path ), true ); register_block_type( $metadata['name'], array_merge( $metadata, array( 'render_callback' => 'render_block_core_social_link', ) ) ); }
function register_block_core_social_link() {
	$path     = __DIR__ . '/social-link/block.json';
	$metadata = json_decode( file_get_contents( $path ), true );

	register_block_type(
		$metadata['name'],
		array_merge(
			$metadata,
			array(
				'render_callback' => 'render_block_core_social_link',
			)
		)
	);
}

常見問題

FAQs
檢視更多 >