Advertisement
gitlez

Untitled

Mar 5th, 2020
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.73 KB | None | 0 0
  1. <?php
  2.  
  3. function VS_embed($atts){
  4.     extract(shortcode_atts( array(
  5.             'id' => 'tt0063350',
  6.             'apikey' => 'XXXXXXXXXXX',
  7.             'apisecret' => 'XXXXXXXXXXXX',
  8.             'width' => 'auto',
  9.             'height' => 'auto',
  10.             'scrolling' => 'no',
  11.             'class' => 'vs-iframe',
  12.             'frameborder' => '0'
  13.         ), $atts ));
  14.     return "<!-- VS.in Auto Embed Plugin -->\n<iframe src=\"https://vsrequest.video/request.php?key={$apikey}&secret_key={$apisecret}&video_id={$id}&tmdb=0&ip=" . $_SERVER['REMOTE_ADDR'] . "\" class=\"{$class}\" width=\"{$width}\" height=\"{$height}\" frameborder=\"{$frameborder}\" scrolling=\"{$scrolling}\" allowfullscreen=\"allowfullscreen\"><p>Your browser appears to not support iframes.</p></iframe>";
  15. }
  16. add_shortcode('IMDB', 'VS_embed');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement