mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
f092c961c0
Follow-up to [50948]. Props ntsekouras. Fixes #53265. See #53248. Built from https://develop.svn.wordpress.org/trunk@50971 git-svn-id: http://core.svn.wordpress.org/trunk@50580 1a063a9b-81f0-0310-95a4-ce76da25c4cd
19 lines
843 B
PHP
19 lines
843 B
PHP
<?php
|
|
/**
|
|
* Social links with a shared background color.
|
|
*
|
|
* @package WordPress
|
|
*/
|
|
|
|
return array(
|
|
'title' => _x( 'Social links with a shared background color', 'Block pattern title' ),
|
|
'categories' => array( 'buttons' ),
|
|
'blockTypes' => array( 'core/social-links' ),
|
|
'viewportWidth' => 500,
|
|
'content' => '<!-- wp:social-links {"customIconColor":"#ffffff","iconColorValue":"#ffffff","customIconBackgroundColor":"#3962e3","iconBackgroundColorValue":"#3962e3","className":"has-icon-color"} -->
|
|
<ul class="wp-block-social-links has-icon-color has-icon-background-color"><!-- wp:social-link {"url":"https://wordpress.org","service":"wordpress"} /-->
|
|
<!-- wp:social-link {"url":"#","service":"chain"} /-->
|
|
<!-- wp:social-link {"url":"#","service":"mail"} /--></ul>
|
|
<!-- /wp:social-links -->',
|
|
);
|