Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active December 8, 2019 07:10
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 braddalton/2981788030769b9498360bd287e51f63 to your computer and use it in GitHub Desktop.
Save braddalton/2981788030769b9498360bd287e51f63 to your computer and use it in GitHub Desktop.
Open Academy Pro hero buttons in new window https://wp.me/p1lTu0-iM9
if ( $button_primary_text ) {
echo '<a class="button primary" href="' . esc_html( $button_primary_url ) . '" target="_blank">' . $button_primary_text . '</a>';
}
if ( $button_secondary_text ) {
echo '<a class="button text" href="' . esc_html( $button_secondary_url ) . '" target="_blank">' . $button_secondary_text . '</a>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment