b3_registration_closed_message()

Description

Filters the message shown on the page, when registrations are closed.

Arguments

  • $message
    (string) - Your custom message.

Return

(string)   The message when registration is closed

Usage

  1. function b3_registration_closed_message( $registration_closed_message ) {
  2.     $registration_closed_message = '<a href="#">Click</a> here';
  3.  
  4.     return $registration_closed_message;
  5. }
  6. add_filter( 'b3_registration_closed_message', 'b3_registration_closed_message' );

Used in

Tags