Guest User

Untitled

a guest
Mar 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <button class="claim-button"> <a href="<?php echo CFS()->get( 'tracking_url' ); ?>">Claim Bonus</a> </button>
  2.  
  3. <button class="claim-button"><?php echo CFS()->get( 'tracking_url' ); ?></button>
  4.  
  5. <button class="claim-button"> <a href="<?php echo get_field('tracking_url'); ?>">Claim Bonus</a> </button>
  6.  
  7. /*
  8. Returns:
  9. array(
  10. 'url' => 'http://google.com',
  11. 'text' => 'Visit Google',
  12. 'target' => '_blank'
  13. )
  14. */
  15.  
  16. $link = CFS()->get( 'tracking_url');
  17. <button class="claim-button"><?php echo $link['url']; ?></button>
Add Comment
Please, Sign In to add comment