b3_privacy_text()

Description

Filters the privacy text on the registration form

Arguments

  • $privacy_text
    (string) - Your custom privacy text.

Return

(string)   The privacy text

Usage

  1. function b3_privacy_text( $privacy_text ) {
  2.  
  3.     $privacy_text = '<a href="#">Click here</a> for more info';
  4.  
  5.     return $privacy_text;
  6. }
  7. add_filter( 'b3_privacy_text', 'b3_privacy_text' );

Used in

Tags