Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. add_shortcode("pdf", "test_process_shortcode");
  2.  
  3. function test_process_shortcode($atts){
  4.     $a = shortcode_atts(array('id'=>'-1'), $atts);
  5.     // No ID value
  6.     if(strcmp($a['id'], '-1') == 0){
  7.         return "";
  8.     }
  9.     $pdf=$a['id'];
  10.     $url=plugin_dir_url(__FILE__)."output/".$pdf."/".$pdf."/index.html";
  11.     $iframe = "<iframe allowfullscreen class='idrws_pdf_short' src='".$url."' style='width:80%; height:800px;'></iframe>";
  12.  
  13.     return $iframe;
  14. }