gpt4 book ai didi

Wordpress:使用 wp_insert_post() 在帖子中插入帖子格式

转载 作者:行者123 更新时间:2023-12-05 08:57:42 26 4
gpt4 key购买 nike

因为我可以使用 wp_insert_post () 使用帖子的格式(示例:post-format-quote)插入我的 php 帖子。

$my_post = array(
'post_type' => 'post', // "post" para una entrada, "page" para páginas, "libro" para el custom post type libro...
'post_status' => 'publish', // "draft" para borrador, "future" para programarlo...
'post_title' => $_POST['BlogEntranceTitle'],
'post_content' => $_POST['BlogEntranceCode'],
'post_author' => $user_ID, //
'post_category' => $_POST['BlogEntranceCats'],
'tags_input' => $_POST['BlogEntranceTags'],
'post_excerpt' => $_POST['BlogEntranceExcerpt']
);
wp_insert_post( $my_post );

成就插入这些选项但我没有添加格式帖子

最佳答案

为了完整起见:不需要“解耦”或将其作为单独的操作,因为它可以与其余设置一起设置在同一数组中。有一个 option (即“tax_input”)直接在包含发布参数的数组中设置分类法。

这是我用来达到同样效果的:

$my_post = array(
'post_type' => 'post' ,
'post_status' => 'publish' ,
'post_title' => $_POST['BlogEntranceTitle'] ,
'post_content' => $_POST['BlogEntranceCode'] ,
'post_author' => $user_ID ,
'post_category' => $_POST['BlogEntranceCats'] ,
'tags_input' => $_POST['BlogEntranceTags'] ,
'post_excerpt' => $_POST['BlogEntranceExcerpt'] ,
'tax_input' => array('post_format' => 'post-format-quote') // <- add this to set post_format
);

wp_insert_post( $my_post );

关于Wordpress:使用 wp_insert_post() 在帖子中插入帖子格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30090706/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com