kalponikoronno

option tree show promotion box?

Sep 1st, 2014
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.66 KB | None | 0 0
  1. /*into theme-options.php*/
  2. <?php
  3.  
  4. array(
  5. 'label'       => 'Show Boxed Promotion?',
  6. 'id'          => 'boxed_promotion',
  7. 'std'          => '',
  8. 'type'        => 'select',
  9. 'choices'     => array(
  10.   array (
  11.     'label'       => 'Yes',
  12.     'value'       => 'yes'
  13.   ),
  14.   array (
  15.     'label'       => 'No',
  16.     'value'       => 'no'
  17.   )      
  18. ),     
  19. 'section'     => 'homepage_item'
  20. ),
  21.  
  22. ?>
  23. /*into template-wecome.php*/
  24. <?php
  25.  
  26.     $boxed_promotion = get_option_tree( 'boxed_promotion', '', false );
  27. ?>
  28.  
  29. <?php if($boxed_promotion == 'yes') : ?>
  30.     <?php get_template_part('boxed-promotions'); ?>
  31. <?php if($boxed_promotion == 'no') : ?>
  32.    
  33. <?php endif; ?>
  34. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment