fbpx
Join our webinar on how to grow your events business with WP Event Manager on 29th September at 11:00 am EST.Register Now!
How can we help?

Event Tag snippets

The Event Tags in WP Event Manager are designed to simplify the process of searching events. It allows users to search for events quickly with targeted keywords.

Event Tags can be customized with the help of below mentioned Event Tag snippet.

Here are the steps you need to take:

  1. Create a child theme and open function.php
  2. Add the below mention code:
    add_action('event_filter_tag_cloud','wp_custom_event_manager_tag_cloud');
            function wp_custom_event_manager_tag_cloud($atts){
               $atts['smallest'] = 1;
               $atts['largest'] = 1;
               $atts['unit'] = "em";
               $atts['number'] = "25";
               $atts['format'] = "flat";
               $atts['separator'] = "\n";
               $atts['orderby'] = "count";
               $atts['order'] = "DESC";
               $atts['link'] = "view";
          return $atts;
            }
    
  3. Save changes.
Quick Links
Close