示例#1
0
 /**
  * Update Shortcode content by merge its content & sub-shortcode content
  */
 function update_whole_sc_content()
 {
     if (!isset($_POST[WR_NONCE]) || !wp_verify_nonce($_POST[WR_NONCE], WR_NONCE)) {
         return;
     }
     $shortcode_content = $_POST['shortcode_content'];
     $sub_shortcode_content = $_POST['sub_shortcode_content'];
     echo balanceTags(WR_Pb_Helper_Shortcode::merge_shortcode_content($shortcode_content, $sub_shortcode_content));
     exit;
 }