b3_signup_for_site()

Description

With this filter you can override the label for the "A site" string on the multisite registration form.

Usage

  1. function b3_override_signup_for_site_label( $label ) {
  2.     $label = 'Your label';
  3.     return $label;
  4. }
  5. add_filter( 'b3_signup_for_site', 'b3_override_signup_for_site_label' );

Used in

Tags