Advertisement
michaelyuen

Untitled

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