Skip to content

Instantly share code, notes, and snippets.

@tripflex
Created May 4, 2015 22:22
Show Gist options
  • Select an option

  • Save tripflex/c8e536f544dfce0ca008 to your computer and use it in GitHub Desktop.

Select an option

Save tripflex/c8e536f544dfce0ca008 to your computer and use it in GitHub Desktop.
Show image with link only if field has value
<?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