当用户注册时,我想创建一个带有用户名标题的页面,然后设置权限,以便用户只能从后端查看和编辑该页面。
我进行了很多搜索以试图弄清楚我唯一能找到的是这段代码,它适用于创建页面,但我如何设置权限?所有这些都将在用户注册时自动发生。如果有更好的方法或解决方案,我很想听听
function my_create_page($user_id){
$the_user = get_userdata($user_id);
$new_user_name = $the_user->user_login;
$my_post = array();
$my_post['post_title'] = $new_user_name;
$my_post['post_type'] = 'page';
$my_post['post_content'] = '';
$my_post['post_status'] = 'publish';
wp_insert_post( $my_post );
}
add_action('user_register', 'my_create_page');
谢谢