How can we help?
Event tag snippets
In order to make your events more searchable,WP Event Manager’s Event tags are a go-to solution that would enable users to search more quickly along with targeting more keywords.
In order to add customizations to the event tags, the following Event tag snippet can be added which will enable you to fulfill your requirement.
Following below steps will help you for Event tag snippets:
- Create a child theme and open function.php
- Add 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; }
- Save changes