Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // Add suppport for more oEmbeds
- add_action('init', function () {
- //-- Bsky
- wp_embed_register_handler(
- 'bsky',
- '#https?://(www\.)?bsky\.app/profile/([^/]+)/post/([^/]+)$#',
- function ($matches, $attr, $url, $rawattr) {
- $embed = null;
- if(isset($matches[2]) && $matches[3]) {
- $embed = '<span id="'.$matches[2].'-'.$matches[3].'"></span><script async src="https://assets.bluesky.lol/js/b1.js" data-handle="'.$matches[2].'" data-skeet="'.$matches[3].'" ></script>';
- }
- return $embed;
- }
- );
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement