Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter('peepso_videos_attach_before', function ($video) {
- // Check if the video content contains the specific URL
- if (strpos($video['content'], 'https://ratner-vod.com/videos/embed/') !== false) {
- // Remove security="restricted" from the iframe, if present
- $video['content'] = preg_replace('/<iframe(.*)security="restricted"(.*)>/', '<iframe$1$2>', $video['content']);
- // Forcefully add allowfullscreen to the iframe
- $video['content'] = preg_replace('/<iframe(.*?)>/i', '<iframe$1 allowfullscreen>', $video['content']);
- }
- return $video;
- }, 10, 1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement