apply_filters( 'learndash_get_label_course_step_previous', string $step_label, string $step_post_type )
Filters value of course step previous label. Used to update step previous label in learndash_get_label_course_step_previous function.
Description #
Parameters #
- $step_label
-
(string) Course step
Previous ...label. - $step_post_type
-
(string) The post_type slug of the post to return label for.
Source #
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for learndash_get_label_course_step_previous filter.
*/
add_filter(
'learndash_get_label_course_step_previous',
function( $step_label, $step_post_type ) {
// May add any custom logic using $step_label, $step_post_type.
// Always return $step_label.
return $step_label;
},
10,
2
);