Created
January 11, 2012 16:00
-
-
Save billrobbins/1595342 to your computer and use it in GitHub Desktop.
Social Links In New Window
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('flickr', $single = true) != ""){ ?> | |
| <a href="<?php echo of_get_option('flickr',''); ?>" target="_blank"><img src="<?php echo get_template_directory_uri(); ?>/images/flickr.png" alt="" /></a> | |
| <?php } ?> | |
| <?php if(of_get_option('youtube', $single = true) != ""){ ?> | |
| <a href="<?php echo of_get_option('youtube'); ?>" target="_blank"><img src="<?php echo get_template_directory_uri(); ?>/images/youtube.png" alt="" /></a> | |
| <?php } ?> | |
| <?php if(of_get_option('vimeo', $single = true) != ""){ ?> | |
| <a href="<?php echo of_get_option('vimeo'); ?>" target="_blank"><img src="<?php echo get_template_directory_uri(); ?>/images/vimeo.png" alt="" /></a> | |
| <?php } ?> | |
| <?php if(of_get_option('facebook', $single = true) != ""){ ?> | |
| <a href="<?php echo of_get_option('facebook'); ?>" target="_blank"><img src="<?php echo get_template_directory_uri(); ?>/images/facebook.png" alt="" /></a> | |
| <?php } ?> | |
| <?php if(of_get_option('twitter', $single = true) != ""){ ?> | |
| <a href="<?php echo of_get_option('twitter'); ?>" target="_blank"><img src="<?php echo get_template_directory_uri(); ?>/images/twitter.png" alt="" /></a> | |
| <?php } ?> | |
| <?php if(of_get_option('linkedin', $single = true) != ""){ ?> | |
| <a href="<?php echo of_get_option('linkedin'); ?>" target="_blank"><img src="<?php echo get_template_directory_uri(); ?>/images/linkedin.png" alt="" /></a> | |
| <?php } ?> | |
| <?php if(of_get_option('yelp', $single = true) != ""){ ?> | |
| <a href="<?php echo of_get_option('yelp'); ?>" target="_blank"><img src="<?php echo get_template_directory_uri(); ?>/images/yelp.png" alt="" /></a> | |
| <?php } ?> | |
| <a href="<?php bloginfo('rss_url'); ?>"><img src="<?php echo get_template_directory_uri(); ?>/images/rss.png" alt="" /></a> | |
| </p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment