Advertisement
Guest User

WP Alchemy Issue

a guest
Jul 11th, 2011
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. <?php $mb->the_field('fkp-whichzone'); ?>
  2. <select name="<?php $mb->the_name(); ?>">
  3.     <?php
  4.     $args  = array('orderby=name&hide_empty=false');
  5.     $terms = get_terms('districts', $args);
  6.     foreach ($terms as $term) :
  7.     ?>
  8.     <option value="<?php echo $term->slug; ?>"<?php $mb->the_select_state($term->slug); ?>><?php echo $term->name; ?></option>
  9.     <?php endforeach; ?>
  10. </select>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement