do_action( 'learndash-register-successful-after', array $errors )
Fires after the register modal errors.
Description #
Parameters #
- $errors
-
(array) An array of error details.
Source #
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for learndash-register-successful-after action.
*/
add_action(
'learndash-register-successful-after',
function( $errors ) {
// May add any custom logic using $errors
}
);
Changelog #
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |