WordPress更新文章函数:wp_update_post
【描述】 该函数用于更新数据库中的文章。如希望函数正常运行,必须传递将被更新的文章编号ID。【使用方法】 【例子】 调用wp_update_post( )前需创建一个数组以传递必要元素。与 wp_insert_post()不同的是,这里只需要传递将更新的文章编号和元素。元素名称应与数据库中名称相匹配。 // 更新编号为37的文章 $my_post = array(); $my_post['ID'] = 37; $my_post['post_content'] = 'This is the updated content.'; // Update the post into
用户评论