0

我想将当前用户的主博客更新为在 wp-signup.php 表单上注册博客后创建的博客。以便将当前用户的主博客设置为他创建的博客。

我试过这个,但它不起作用,

add_action('wpmu_new_blog','update_primary_blog',10);

function update_primary_blog() {
global $wpdb;
update_user_meta( get_current_user_id(), 'primary_blog', $wpdb->insert_id );
}

还有另一种方法吗?

4

1 回答 1

0

尝试这个:

<?php
add_action('wpmu_new_blog','update_primary_blog',10, 1);
function update_primary_blog($blog_id) {
    update_user_meta( get_current_user_id(), 'primary_blog', $blog_id);
}

钩子上的更多信息(和参数):
http ://adambrown.info/p/wp_hooks/hook/wpmu_new_blog?version=3.3&file=wp-includes/ms-functions.php

于 2012-06-08T12:20:27.040 回答