Advertisement
BakerMan

Community Events 3.0 Filter Example

Jul 16th, 2013
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. // This is an example of customizing the community events form using filters
  2. // ... here for instance we are removing the section that allows visitors to
  3. // pick a category for their submission and are replacing it with our own
  4. // HTML
  5. add_filter('tribe_events_community_form_the_categories', 'tribe_ce_replace_category_section');
  6.  
  7. function tribe_ce_replace_category_section() {
  8.     return '<img src="http://ts3.mm.bing.net/th?id=H.4555629978976674&pid=1.7" />';
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement