Advertisement
Guest User

Untitled

a guest
Apr 10th, 2024
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. <?php
  2.  
  3. // Add suppport for more oEmbeds
  4. add_action('init', function () {
  5.     //-- Bsky
  6.     wp_embed_register_handler(
  7.         'bsky',
  8.         '#https?://(www\.)?bsky\.app/profile/([^/]+)/post/([^/]+)$#',
  9.         function ($matches, $attr, $url, $rawattr) {
  10.             $embed = null;
  11.             if(isset($matches[2]) && $matches[3]) {
  12.                 $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>';
  13.             }
  14.             return $embed;
  15.         }
  16.     );
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement