Created
January 31, 2012 21:03
-
-
Save billrobbins/1712889 to your computer and use it in GitHub Desktop.
Open social media links in new tab
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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