What is SourceDrop?

SourceDrop is the easiest way to share your snippets. Try it yourself!

?php display event category des...

download
<?php

			// display event category description if were on a category page //
			if(is_tax()) {

				$tribe_ecp = TribeEvents::instance();
				$current_cat = get_query_var('tribe_events_cat');
				if($current_cat){
					$term_info = get_term_by('slug',$current_cat,$tribe_ecp->get_event_taxonomy());
					echo $term_info->description;
				}

			}

		?>
Uploaded at 10/23/12 0:51 (UTC)