Advertisement
Beee

event-tags.php

Oct 9th, 2017
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.66 KB | None | 0 0
  1. // $federations = EM_Tags::get( array( 'orderby' => 'name', 'hide_empty' => 0, 'exclude' => array( 125, 109, 110 ) ) );
  2. if ( count( $federations ) > 0 ) : ?>
  3.     <div class="event-categories federations">
  4.         <label>Federation</label>
  5.         <?php foreach( $federations as $tag ) { ?>
  6.             <div>
  7.                 <label for="event_tags[<?php echo $tag->slug; ?>]" class="screen-reader-text"><?php echo $tag->name; ?></label>
  8.                 <input name="event_tags[]" id="event_tags[<?php echo $tag->slug; ?>]" type="checkbox" value="<?php echo $tag->term_id; ?>" /> <?php echo $tag->name; ?>
  9.             </div>
  10.         <?php } ?>
  11.     </div>
  12. <?php endif;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement