do_action( 'learndash-register-modal-errors-after', array $errors )
Fires after the register modal errors.
Contents
Description #
Parameters #
- $errors
-
(array) An array of error details.
Source #
Examples #
<?php /** * Example usage for learndash-register-modal-errors-after action. */ add_action( 'learndash-register-modal-errors-after', function( $errors ) { // May add any custom logic using $errors echo '<div>Custom content or markup</div>'; } );
Changelog #
Version | Description |
---|---|
3.0.0 | Introduced. |