Skip to content

Instantly share code, notes, and snippets.

@chriscoyier
Last active August 10, 2020 21:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chriscoyier/178403660d3c86ee50d511257cf20b0c to your computer and use it in GitHub Desktop.
Save chriscoyier/178403660d3c86ee50d511257cf20b0c to your computer and use it in GitHub Desktop.
<div class="social-menu">
<h1>Social Media Button Hover Effect</h1>
<ul>
<?php if (get_field('twitter')): ?>
<li>
<a href="<?php the_field('twitter'); ?>">
<span class="link-label">Twitter</span>
</a>
</li>
<?php endif; ?>
<?php if (get_field('Facebook')): ?>
<li>
<a href="<?php the_field('Facebook'); ?>">
<span class="link-label">Facebook</span>
</a>
</li>
<?php endif; ?>
<?php if (get_field('instagram')): ?>
<li>
<a href="<?php the_field('instagram'); ?>">
<span class="link-label">Instagram</span>
</a>
</li>
<?php endif; ?>
<?php if (get_field('youtube')): ?>
<li>
<a href="<?php the_field('youtube'); ?>">
<span class="link-label">YouTube</span>
</a>
</li>
<?php endif; ?>
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment