apply_filters( 'learndash_login_shortcode_atts', array $attributes )
Filters learndash_login shortcode attributes.
Contents
Description #
Parameters #
- $attributes
-
(array) Shortcode attributes.
Source #
Examples #
<?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; } );