我是wordpress的新手,
是否存在在博客激活期间触发的挂钩。我正在研究多站点,然后我注意到在用户注册后,他们必须通过点击发送到他们电子邮件的链接来激活他们的博客。
我希望有一个钩子,在博客激活之后,我将获得博客的元,然后将其存储在用户的元数据中。
这可能吗?我一直在搜索互联网,但无法找到示例或提示。
非常感谢您的帮助!
谢谢!
答案 0 :(得分:0)
我知道这个问题很老了。 但是在我知道的插件Simply Show Hooks的帮助下 我可以使用
add_filter("wpmu_activate_blog","something")
function something($user_id){
//do the crazy stuff
//for example with
// $blog_id = get_user_meta($user_id, "primary_blog", true);
//get_blog_option and get_user_meta
//and the correspondening update options thingys
}