Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. // Pastebin
  2. function simplebgt_pastebin ($atts, $content = null ) {
  3.     extract( shortcode_atts( array(
  4.             'tipe' => 'javascript',
  5.             'id' => '',
  6.             'tinggi' => '175'
  7.     ), $atts ));
  8.        
  9.     if ($tipe == 'javascript') {
  10.         $output = '<script src="http://pastebin.com/embed_js.php?i='. $id .'"></script>';
  11.     } elseif ($tipe == 'iframe') {
  12.         $output = '<iframe src="http://pastebin.com/embed_iframe.php?i='. $id .'" style="border:none;width:100%;height:'. $tinggi .'px;"></iframe>';
  13.     }
  14.     return $output;
  15. }
  16. add_shortcode("pastebin", "simplebgt_pastebin");