Skip to content

Instantly share code, notes, and snippets.

@trys
Created April 10, 2015 17:00
Show Gist options
  • Save trys/44da179df485b324b106 to your computer and use it in GitHub Desktop.
Save trys/44da179df485b324b106 to your computer and use it in GitHub Desktop.
Social icons
<ul class="social-icons">
<?php
echo ( $st = get_field( 'twitter', 'options' ) ) ? '<li><a target="_blank" href="' . $st . '"><i class="fa fa-twitter"></i></a></li>' : '';
echo ( $sf = get_field( 'facebook', 'options' ) ) ? '<li><a target="_blank" href="' . $sf . '"><i class="fa fa-facebook"></i></a></li>' : '';
echo ( $sy = get_field( 'youtube', 'options' ) ) ? '<li><a target="_blank" href="' . $sy . '"><i class="fa fa-youtube"></i></a></li>' : '';
echo ( $sl = get_field( 'linkedin', 'options' ) ) ? '<li><a target="_blank" href="' . $sl . '"><i class="fa fa-linkedin"></i></a></li>' : '';
?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment