askwpcoach

Get conditional social icons

Dec 6th, 2012
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.60 KB | None | 0 0
  1. <?php if(get_option('of_fbopt') == 'true'){ ?>
  2.     <li><a href="<?php echo get_option('of_fburl') ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/fb.png" width="30" /></a></li>
  3. <?php } ?>
  4. <?php if(get_option('of_twopt') == 'true'){ ?>
  5. <li><a href="<?php echo get_option('of_twurl') ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/tw.png" width="30" /></a></li>
  6. <?php } ?>
  7. <?php if(get_option('of_ytopt') == 'true'){ ?>
  8. <li><a href="<?php echo get_option('of_yturl') ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/yt.png" width="30" /></a></li>
  9. <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment