Advertisement
Guest User

Untitled

a guest
Mar 4th, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. for($i=0; $i<=2; $i++) {
  2. wp_dropdown_pages( array(
  3. 'id' => $this->field_id.$i,
  4. 'name' => $this->field_name.$i,
  5. 'selected' => (empty($promo_boxes[$i]) ? 0 : $promo_boxes[$i]),
  6. 'post_type' => $this->SELECT_POST_TYPE,
  7. 'show_option_none' => $this->field_label,
  8. ));
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement