Created
June 1, 2021 07:39
-
-
Save pacotole/77db2280cf655c46a132f7033c19f0f5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Join.chat CTA allow links in format [link text](https://example.com) | |
add_filter( 'joinchat_format_replacements', function($replacements) { | |
$replacements['/\[([^\[\]]+)\]\(([^)]+)\)/u'] = '<a href="$2">$1</a>'; | |
return $replacements; | |
}); | |
/** | |
* Also remember add link style in your CSS: | |
* | |
* .joinchat__message a { text-decoration: underline; color: #2e8c7d; } | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment