Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. - Events
  2. -- Location
  3. -- Date
  4. - Region
  5. -- State
  6. -- StateCode
  7.  
  8. $terms = get_terms( array(
  9. 'taxonomy' => 'events_category',
  10. 'hide_empty' => false,
  11. ) );
  12.  
  13. foreach ($terms as $term) {
  14. if ($term->parent != 0) { // avoid parent categories
  15. $options[] = array('label' => $term->name, 'value' => $term->term_id, 'id' => $term->term_id);
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement