Browse: Home / Hooks /

learndash_ld_course_expire_status_shortcode_atts

apply_filters( 'learndash_ld_course_expire_status_shortcode_atts',  array $attributes )

Filters ld_course_expire_status shortcode attributes.


Description #


Parameters #

$attributes

(array) An array of ld_course_expire_status shortcode attributes.


Source #

File: includes/shortcodes/ld_course_expire_status.php


Examples #

Note: Extended code example below not guaranteed, you may need to consult with a developer

 <?php
/**
 * Example usage for learndash_ld_course_expire_status_shortcode_atts filter.
 */
add_filter(
	'learndash_ld_course_expire_status_shortcode_atts',
	function( $attributes ) {
		// May add any custom logic using $attributes.

		// Always return $attributes.
		return $attributes;
	}
);