Advertisement
matthillco

Untitled

Oct 23rd, 2011
493
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.65 KB | None | 0 0
  1. <?php
  2.     global $wpalchemy_media_access;
  3.     $selected = ' selected="selected"';
  4. ?>
  5. <div class="my-meta-control">
  6.  
  7.     <?php $mb->the_group_open(); ?>
  8.  
  9.         <!-- People Counter -->
  10.         <?php $mb->the_field('next_film'); ?>
  11.         <label for="<?php $mb->the_name(); ?>">Next Film</label><select name="<?php $mb->the_name(); ?>">
  12.         <?php
  13.             $filmsList = new WP_Query(array(
  14.                 'post_type' => 'films',
  15.                 'posts_per_page' => -1,
  16.                 'orderby' => 'title',
  17.                 'order' => 'ASC'
  18.             ));
  19.             while ( $filmsList->have_posts() ) : $filmsList->the_post();
  20.                 echo '<option value="'. get_the_ID() . '"';
  21.                     if ($metabox->get_the_value() == (get_the_ID())) echo $selected;
  22.                 echo '>' . get_the_title() .'</option>';
  23.             endwhile;
  24.         ?>
  25.         </select>
  26.  
  27.         <?php $mb->the_field('current_season'); ?>
  28.         <p class="group"><label for="<?php $mb->the_name(); ?>">Current Season</label><input type="text" name="<?php $mb->the_name(); ?>" value="<?php $mb->the_value(); ?>"/></p>
  29.    
  30.         <?php $mb->the_field('season_1_dates'); ?>
  31.         <p class="group"><label for="<?php $mb->the_name(); ?>">Season 1 Dates</label><input type="text" name="<?php $mb->the_name(); ?>" value="<?php $mb->the_value(); ?>"/></p>
  32.  
  33.         <?php $mb->the_field('season_2_dates'); ?>
  34.         <p class="group"><label for="<?php $mb->the_name(); ?>">Season 2 Dates</label><input type="text" name="<?php $mb->the_name(); ?>" value="<?php $mb->the_value(); ?>"/></p>
  35.        
  36.         <?php $mb->the_field('season_3_dates'); ?>
  37.         <p class="group"><label for="<?php $mb->the_name(); ?>">Season 3 Dates</label><input type="text" name="<?php $mb->the_name(); ?>" value="<?php $mb->the_value(); ?>"/></p>     
  38.            
  39.     <?php $mb->the_group_close(); ?>
  40.  
  41.  
  42. </div>
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement