Esempio n. 1
0
 /**
  * Get output html of pagebuilder content
  */
 function get_html_content()
 {
     if (!isset($_POST[WR_NONCE]) || !wp_verify_nonce($_POST[WR_NONCE], WR_NONCE)) {
         return;
     }
     $content = $_POST['content'];
     $content = stripslashes($content);
     $content = WR_Pb_Helper_Shortcode::doshortcode_content($content);
     if (!empty($content)) {
         echo "<div class='jsn-bootstrap3'>" . $content . '</div>';
     }
     exit;
 }