예제 #1
0
파일: core.php 프로젝트: WaitButWhy/www
 /**
  * Get output html of pagebuilder content
  */
 function get_html_content()
 {
     if (!isset($_POST[IGNONCE]) || !wp_verify_nonce($_POST[IGNONCE], IGNONCE)) {
         return;
     }
     $content = $_POST['content'];
     $content = stripslashes($content);
     $content = IG_Pb_Helper_Shortcode::doshortcode_content($content);
     if (!empty($content)) {
         echo "<div class='jsn-bootstrap3'>" . $content . '</div>';
     }
     exit;
 }