最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

embed - How to auto embedded youtube with wp_insert_post()

programmeradmin8浏览0评论

I use this code to add a post to Wordpress:

$new_post = array(
    'post_title' => $title,
    'post_content' => "test      ",
    'post_status' => 'publish',
    'post_author' => $author,
    'post_type' => 'post'
);
wp_insert_post($new_post, true);

The problem is that youtube links will not be embedded. However, if I post it manually to WordPress then the links will be automatically embedded.

What do I need to do in order for WordPress to automatically transform youtube URL to embedded videos?

Another answer from this site says to use wp_insert_post() but how would I extract youtube URL's from the post content considering there are various youtube URL syntaxes. Embeds page on WP Codex says to just put the "video URL into the content area". I am surprised there is not a function to automatically embeds all youtube videos when using wp_insert_post() ...unless I am missing something?

Thanks

I use this code to add a post to Wordpress:

$new_post = array(
    'post_title' => $title,
    'post_content' => "test   https://www.youtube/watch?v=4g3e8XwVIYc   https://youtu.be/LPpW_8c5jE4",
    'post_status' => 'publish',
    'post_author' => $author,
    'post_type' => 'post'
);
wp_insert_post($new_post, true);

The problem is that youtube links will not be embedded. However, if I post it manually to WordPress then the links will be automatically embedded.

What do I need to do in order for WordPress to automatically transform youtube URL to embedded videos?

Another answer from this site says to use wp_insert_post() but how would I extract youtube URL's from the post content considering there are various youtube URL syntaxes. Embeds page on WP Codex says to just put the "video URL into the content area". I am surprised there is not a function to automatically embeds all youtube videos when using wp_insert_post() ...unless I am missing something?

Thanks

Share Improve this question asked Apr 12, 2019 at 1:14 32454325342523245432534252 1174 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

Youtube urls and other services that embed content in post content work via a feature called oEmbed. You need to use wp_oembed_get() to fetch the embedded content for this to work.

In your case, you're inserting content directly, so you probably don't want to just call wp_oembed_get() and call it a day. That won't work. It's better to run the functions WordPress has built in to support post content.

apply_filters( 'the_content', $content );

This runs when you output the_content() in your template and includes things like shortcode expansion and oembed discovery. But, it only works if your content is formatted in the right way. You said, "Embeds page on WP Codex says to just put the "video URL into the content area" which is correct with one clarifying point:

Make sure the URL is on its own line and not hyperlinked.

Your insert will look like this:

$new_post = array(
    'post_title'   => $title,
    'post_content' => 'test
    https://www.youtube/watch?v=4g3e8XwVIYc
    https://youtu.be/LPpW_8c5jE4',
    'post_status'  => 'publish',
    'post_author'  => $author,
    'post_type'    => 'post',
);
wp_insert_post( $new_post, true );

Notice the new lines for your post content. This will convert these youtube urls into the appropriate embeds when it's output in your template.

发布评论

评论列表(0)

  1. 暂无评论