apply_filters( 'learndash_login_shortcode_atts', array $attributes )
Filters learndash_login shortcode attributes.
Description #
Parameters #
- $attributes
-
(array) Shortcode attributes.
Source #
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for learndash_login_shortcode_atts filter.
*/
add_filter(
'learndash_login_shortcode_atts',
function( $attributes ) {
// May add any custom logic using $attributes.
// Always return $attributes.
return $attributes;
}
);
Changelog #
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |