Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /* @var $EM_Event EM_Event */
- $count_cats = count($EM_Event->get_categories()->categories) > 0;
- $categories_collections = array();
- if( $count_cats > 0 ){
- ?>
- <ul class="event-categories">
- <?php
- foreach($EM_Event->get_categories() as $EM_Category):
- array_push($categories_collections,$EM_Category->output("#_CATEGORYLINK"));
- endforeach;
- rsort($categories_collections );
- ?>
- <?php foreach($categories_collections as $EM_Category): ?>
- <li><?php echo $EM_Category; ?></li>
- <?php endforeach; ?>
- </ul>
- <?php
- }else{
- echo get_option ( 'dbem_no_categories_message' );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement