Create a new WordPress Category
add_action(‘frm_after_create_entry’, ‘after_entry_created’, 30, 2); function after_entry_created($entry_id, $form_id){ if($form_id == 5){ //change 5 to the ID of your form if(isset($_POST[‘item_meta’][25])){ //change 25 to the ID of the field used to add a category $category_name = ‘category’; //if you’re using a custom…Continue reading