Skip to content

Instantly share code, notes, and snippets.

@JiveDig
Created May 11, 2013 03:39
Show Gist options
  • Save JiveDig/5558808 to your computer and use it in GitHub Desktop.
Save JiveDig/5558808 to your computer and use it in GitHub Desktop.
Embed a video using Advanced Custom Fields and url in text field.
/** Embeda video from url */
add_action( 'genesis_post_content', 'executive_do_video_single' );
function executive_do_video_single() {
$value = get_field( "video_url" );
if( $value ) {
echo '<p>';
echo wp_oembed_get ( $value );
echo '</p>';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment