mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-24 01:01:55 +01:00
b2e311b85d
These block patterns are considered "core" block patterns and removed when a them opts out of the core-block-patterns theme support flag. Props ntsekouras. Fixes #53248. Built from https://develop.svn.wordpress.org/trunk@50948 git-svn-id: http://core.svn.wordpress.org/trunk@50557 1a063a9b-81f0-0310-95a4-ce76da25c4cd
19 lines
833 B
PHP
19 lines
833 B
PHP
<?php
|
|
/**
|
|
* Social links with a shared background color.
|
|
*
|
|
* @package WordPress
|
|
*/
|
|
|
|
return array(
|
|
'title' => __( 'Social links with a shared background color', 'gutenberg' ),
|
|
'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 -->',
|
|
);
|