Advertisement
michaelyuen

Untitled

May 12th, 2018
548
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.69 KB | None | 0 0
  1. <?php if (!empty($facebook) && !empty($twitter) && !empty($instagram)): ?>
  2.  
  3. <div class="widget w-socials">
  4.     <h6 class="title">Other Social Networks:</h6>
  5. <?php if (!empty($facebook)) {
  6.     echo "<a href='https://{$facebook}' class='social-item bg-facebook'><i class='fab fa-facebook-f' aria-hidden='true'></i>Facebook</a>";
  7. }   ?>
  8. <?php if (!empty($twitter)) {
  9.     echo "<a href='https://{$twitter}' class='social-item bg-twitter'><i class='fab fa-twitter' aria-hidden='true'></i>Twitter</a>";
  10. }   ?>
  11. <?php if (!empty($instagram)) {
  12.     echo "<a href='https://{$instagram}' class='social-item bg-dribbble'><i class='fab fa-instagram' aria-hidden='true'></i>Instagram</a>";
  13. }   ?>
  14. </div>
  15.  
  16. <?php endif;?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement