你就快到了。下面是将post的作者设置为ID为1的用户的部分:
\'post_author\' => 1,
\'post_status\' => \'publish\',
\'post_type\' => \'testimonial\',
\'author\' => $current_user->ID,
您甚至尝试将author设置为$current\\u user,但您不会在代码中的任何地方启动此变量,而是
author
字段而不是
post_author
.
下面是正确的版本:
\'post_author\' => get_current_user_id(),
\'post_status\' => \'publish\',
\'post_type\' => \'testimonial\',