How to edit a published post? 时间:2011-07-31 作者:Joey Morani 我正在写一个插件。有谁能告诉我如何编辑已发布帖子的内容吗?我试过使用这个:function edit( $post_ID ) { $content = "Hello. This is a test."; $post_info = get_post($post_ID); $post_info->post_content = "$content"; } add_action(\'publish_post\', \'edit\'); 虽然我运气不好。有人能建议如何让它工作吗?谢谢你的帮助。 1 个回复 SO网友:scribu 您修改了wp\\U posts表中一行的副本。您需要将修改后的版本发送回数据库:wp_update_post( $post_info ); 结束 文章导航