Skip to content

Commit

Permalink
Social Link: Automatically prepend emails with mailto protocol (#42186)
Browse files Browse the repository at this point in the history
* Social Link: Automatically prepend emails with mailto:
* Add comment
  • Loading branch information
Mamaduka committed Jul 6, 2022
1 parent 2247c3a commit b3c6f67
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/block-library/src/social-link/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ function render_block_core_social_link( $attributes, $content, $block ) {
return '';
}

/**
* Prepend emails with `mailto:` if not set.
* The `is_email` returns false for emails with schema.
*/
if ( is_email( $url ) ) {
$url = 'mailto:' . $url;
}

/**
* Prepend URL with https:// if it doesn't appear to contain a scheme
* and it's not a relative link starting with //.
Expand Down

0 comments on commit b3c6f67

Please sign in to comment.