Browse: Home / Hooks /

learndash_course_notstarted_shortcode_atts

apply_filters( 'learndash_course_notstarted_shortcode_atts',  array $attributes )

Filters course_notstarted shortcode attributes.


Description #


Parameters #

$attributes

(array) An array of course_notstarted shortcode attributes.


Source #

File: includes/shortcodes/ld_course_notstarted.php


Examples #

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

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

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