Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion packages/block-library/src/social-link/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,18 @@ function render_block_core_social_link( $attributes, $content, $block ) {
$rel_target_attributes = 'rel="noopener nofollow" target="_blank"';
}

$icon = block_core_social_link_get_icon( $service );
$icon = block_core_social_link_get_icon( $service );

/**
* Filters the social icon to custom icon
*
* @param string $icon SVG Element for service icon.
* @param string $service The service icon.
*
* @return string SVG Element for service icon.
*/
$icon = apply_filters( 'block_social_link_icon', $icon, $service );

$wrapper_attributes = get_block_wrapper_attributes(
array(
'class' => 'wp-social-link wp-social-link-' . $service,
Expand Down