Created
May 4, 2015 22:22
-
-
Save tripflex/c8e536f544dfce0ca008 to your computer and use it in GitHub Desktop.
Show image with link only if field has value
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $shop_url = get_custom_field( 'shop_url' ); | |
| if( ! empty( $shop_url ) ){ | |
| echo "<a href=\"" . esc_url( $shop_url ) . "\" target=\"_blank\"><img src=\"//domain.com/banners/gotoshop.jpg\"></a>"; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment