Skip to content

Instantly share code, notes, and snippets.

@brichards
Forked from trishasalas/translate-variable.php
Last active August 29, 2015 14:07
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 brichards/858b204ebc378e3b883e to your computer and use it in GitHub Desktop.
Save brichards/858b204ebc378e3b883e to your computer and use it in GitHub Desktop.
<?php
$url = esc_url( get_post_meta( $post->ID, '_project-url', true ) );
if ( ! empty( $url ) {
printf( '<p>%s</p>', $url );
}
?>
<?php
$url = esc_url( get_post_meta( $post->ID, '_project-url', true ) );
if ( ! empty( $url ) {
printf( '<p>%s</p>', __( $url, 'wpp-portfolio' ) );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment