Skip to content

Instantly share code, notes, and snippets.

@billrobbins
Created January 31, 2012 21:03
Show Gist options
  • Select an option

  • Save billrobbins/1712889 to your computer and use it in GitHub Desktop.

Select an option

Save billrobbins/1712889 to your computer and use it in GitHub Desktop.
Open social media links in new tab
<p>
<?php if(of_get_option('intro', $single = true) != ""){ ?>
<em><?php echo of_get_option('intro'); ?></em>
<?php } ?>
<?php if(of_get_option('flickr', $single = true) != ""){ ?>
<a target="_blank" href="<?php echo of_get_option('flickr',''); ?>"><img class="fix" src="<?php bloginfo('template_url'); ?>/images/flickr.png" alt="" /></a>
<?php } ?>
<?php if(of_get_option('youtube', $single = true) != ""){ ?>
<a target="_blank" href="<?php echo of_get_option('youtube'); ?>"><img class="fix" src="<?php bloginfo('template_url'); ?>/images/youtube.png" alt="" /></a>
<?php } ?>
<?php if(of_get_option('vimeo', $single = true) != ""){ ?>
<a target="_blank" href="<?php echo of_get_option('vimeo'); ?>"><img class="fix" src="<?php bloginfo('template_url'); ?>/images/vimeo.png" alt="" /></a>
<?php } ?>
<?php if(of_get_option('facebook', $single = true) != ""){ ?>
<a target="_blank" href="<?php echo of_get_option('facebook'); ?>"><img class="fix" src="<?php bloginfo('template_url'); ?>/images/facebook.png" alt="" /></a>
<?php } ?>
<?php if(of_get_option('twitter', $single = true) != ""){ ?>
<a target="_blank" href="<?php echo of_get_option('twitter'); ?>"><img class="fix" src="<?php bloginfo('template_url'); ?>/images/twitter.png" alt="" /></a>
<?php } ?>
<a href="<?php bloginfo('rss_url'); ?>"><img class="fix" src="<?php bloginfo('template_url'); ?>/images/rss.png" alt="" /></a>
</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment