函数,这些函数没有封装在functions_exists()
呼叫并不意味着可插拔。如果您正在搜索扩展,那么请使用过滤器或挂钩,以防有一些。
正如您在phpDocBlock中所读到的:
确保欢迎消息不为空。当前未使用。
所以这个过滤器不起作用。
我不是MU专家,但也许你可以使用以下过滤器:
apply_filters( \'wpmu_signup_blog_notification_email\',
__( "To activate your blog, please click the following link:\\n\\n%s\\n\\nAfter you activate, you will receive *another email* with your login.\\n\\nAfter you activate, you can visit your site here:\\n\\n%s" ),
$domain, $path, $title, $user, $user_email, $key, $meta
)
你可以这样称呼它:
function wpse56797_signup_blog_notification_email( $message, $domain, $path, $title, $user, $user_email, $key, $meta )
{
$message = \'Your custom notification\';
return $message;
}
add_filter( \'wpmu_signup_blog_notification_email\', \'wpse56797_signup_blog_notification_email\', 10, 8 );