Converting Youtube Watch Link URL to Embed code using php wordpress
Description
PHP Source Code
<?php
$videoURL = get_post_meta( $post->ID, 'URL', true );
$convertedURL = str_replace("watch?v=","embed/", $videoURL);
?>
<!--URL is the name of the custom field-->
<?php echo $convertedURL; ?>