eventsmanager icon

Assign events category to events using event submission form

eventsmanager | PRO | 05/10/24 09:23:35 AM UTC | 0 ⭐ | 449 👁️ | Never ⏰ | []
text |

470 B

|

None

|

0 👍

/

0 👎

<?php 
 /*
 * This snippet assign event tags with event using custom event submission form -> https://pastebin.com/Nvz4t6ca
 * 
 * 1. create mu-plugins folder under wp-content/mu-plugins/function.php
 * 2. edit function.php and Save
 */
add_filter('em_event_save','custom_event_save',1,2);
function custom_event_save($result,$EM_Event){
 	wp_set_object_terms($EM_Event->post_id, X, EM_TAXONOMY_CATEGORY); // replace X with your events category ID
 	return $result;
}

Comments