Beispiel #1
0
 public function choose_preset_layout()
 {
     if (!wp_verify_nonce($_REQUEST['nonce'], 'layers-onboarding-actions')) {
         die('You threw a Nonce exception');
     }
     // Nonce
     // Parse our input data
     parse_str(urldecode(stripslashes($_POST['data'])), $data);
     $migrator = new Layers_Widget_Migrator();
     $migrator->create_builder_page_from_preset();
     die;
 }