Skip to content

Instantly share code, notes, and snippets.

@Tusko
Last active March 21, 2020 11:40
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 Tusko/8b68888f76215c939aac0e52a6e5a09b to your computer and use it in GitHub Desktop.
Save Tusko/8b68888f76215c939aac0e52a6e5a09b to your computer and use it in GitHub Desktop.
ACF tel button output
<?php
$tel = get_field( 'tel', 'options' );
echo $tel ? '<a class="header-tel" href="tel:' . preg_replace( "/[^0-9+]/", "", $tel ) . '">' . $tel . '</a>' : '';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment