Description
With this filter you can override the label for the "A site" string on the multisite registration form.
Usage
function b3_override_signup_for_site_label( $label ) {
$label = 'Your label';
return $label;
}
add_filter( 'b3_signup_for_site', 'b3_override_signup_for_site_label' );
Used in
- includes/actions-b3.php - line 169