gpt4 book ai didi

php - 以编程方式更新 WordPress 帖子摘录

转载 作者:行者123 更新时间:2023-12-03 23:10:56 26 4
gpt4 key购买 nike

我正在寻找一个可以更新已发布的 WordPress 帖子摘录的功能。函数 wp_update_post() 不更新摘录。我研究的其他函数如 the_excerpt() 仅用于获取摘录而不是设置它。

如何更新 WordPress 中已发布帖子的摘录?

最佳答案

wp_update_post() 应该是使用的选择。

您可以在 $args 中定位 post_excerpt 以解决帖子摘录。

一个(未经测试,但应该有效)示例:

$the_post = array(
'ID' => 37,//the ID of the Post
'post_excerpt' => 'This is the updated excerpt.',
);
wp_update_post( $the_post );

这是一个非常不动态的例子,但应该给出如何去做的想法。

关于php - 以编程方式更新 WordPress 帖子摘录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57579029/

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