Skip to content

Instantly share code, notes, and snippets.

@chekle
Created July 3, 2023 23:00
Show Gist options
  • Save chekle/6389430a9e968ce71f3d1601305f21db to your computer and use it in GitHub Desktop.
Save chekle/6389430a9e968ce71f3d1601305f21db to your computer and use it in GitHub Desktop.
ACF Link
<?php $link = get_sub_field('link'); if( $link ): $link_url = $link['url']; $link_title = $link['title']; $link_target = $link['target'] ? $link['target'] : '_self'; ?>
<a class="button" href="<?php echo esc_url( $link_url ); ?>" target="<?php echo esc_attr( $link_target ); ?>"><?php echo esc_html( $link_title ); ?></a>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment