为什么在没有管理员面板的情况下,插入帖子功能不设置修改后的作者? 时间:2018-01-24 作者:lllllllllllll 我有一个前端的新职位和编辑职位的形式。我将使用<?php wp_insert_post( $post ); ?>这里一切都很好。如果有的话editor 或admin 修改了前端的所有作者帖子:<?php the_modified_author(); ?> 不工作。但修改日期/wp-admin 管理员面板操作它。我想更新<?php the_modified_author(); ?> 在我的功能上!但是怎么做呢? 1 个回复 最合适的回答,由SO网友:swissspidy 整理而成 the_modified_author() 显示其ID已存储在中的用户的名称_edit_last post meta字段。如果您想在其他用户更新帖子后更新ID,可以使用update_post_meta( $post_ID, \'_edit_last\', get_current_user_id() );. 使用时,将显示新用户名the_modified_author().代替get_current_user_id() 如果更新帖子的不是当前用户,则使用自定义用户ID。 结束 文章导航