embed - How to auto embedded youtube with wp_insert_post()

I use this code to add a post to Wordpress:$new_post = array('post_title' => $title,'post_content'

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.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745596436a4635144.html

相关推荐

  • embed - How to auto embedded youtube with wp_insert_post()

    I use this code to add a post to Wordpress:$new_post = array('post_title' => $title,'post_content'

    17小时前
    40

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信