Embeds (YouTube, Spotify) Work Live but Won’t Load in Block Editor [closed]
I fixed my own issue by clearing my browser cache. (Ugh. It’s always the simplest thing that I miss.)
I fixed my own issue by clearing my browser cache. (Ugh. It’s always the simplest thing that I miss.)
If YouTube Link in Excerpt use Featured Image as Video using Excerpt Link in Text Else Get Featured Image
Embedding YouTube Videos at Time of Publish Instead of Time of Schedule (Bare URLS Make Me Sad)
(plesk)After adding 1000 youtube url to my 1000 different wordpress article, my all websites doesnt show yt url as embed
Embbeded YouTube video not showing when admin logged in
add_filter is failing to append &rel=0 to end of YouTube URL in oEmbed
I found the issue. The issue is with Advanced Custom Fields(ACF). update_post_meta did not work for this field. ACF wanted me to reference the field by ID rather than title and to use update_field function. I know that talking about ACF here is frowned upon so feel free to take this question down. Their documentation … Read more
How about this shortcode: function alternative_youtube_embed_func( $atts ) { $a = shortcode_atts( array( ‘id’ => ‘ScMzIvxBSi4’ // youtube video ID from video URL ), $atts); return ‘<a href=”https://www.youtube.com/watch?v=’ . $a[“id”] . ‘” rel=”noopener noreferrer” target=”_blank”><img width=”560″ height=”315″ src=”https://img.youtube.com/vi/’ . $a[“id”] . ‘/0.jpg” alt=”link to youtube video” /></a>’; } add_shortcode( ‘alternative-youtube-embed’, ‘alternative_youtube_embed_func’ ); Add a play-button … Read more
Pull latest Youtube Video from json url and make new post
Without recommending a plugin, I would suggest looking at a service like IFTTT which allows you to chain API’s together. From the website: IFTTT is a service that lets you create powerful connections with one simple statement ‘if this then that’. Channels are the basic building blocks of IFTTT. Each Channel has its own Triggers … Read more