My theme uses wp_oembed_get for embedding youtube videos by iframe.
<?php echo wp_oembed_get( get_post_meta( get_the_ID(), 'wpex_post_video_oembed', true ) ); ?>
is it possible to give the iframe an id? I need it so use the youtube api.
Thank you
You can use the filter
oembed_dataparse
:This is a snapshot of the received parameters (“result” is showing another filter,
oembed_result
, but dataparse seems more complete):