Browse: Home / Hooks /

learndash_get_label_course_step_back

apply_filters( 'learndash_get_label_course_step_back',  string $step_label,  string $step_post_type,  boolean $plural )

Filters value of course step back label. Used to update step back label in learndash_get_label_course_step_back function.


Description #


Parameters #

$step_label

(string) Course Step Back to ... label.

$step_post_type

(string) The post_type slug of the post to return label for.

$plural

(boolean) True if the label should be the plural label.


Source #

File: includes/class-ld-custom-label.php


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_back filter.
 */
add_filter(
	'learndash_get_label_course_step_back',
	function( $step_label, $step_post_type, $plural ) {
		// May add any custom logic using $step_label, $step_post_type, $plural.

		// Always return $step_label.
		return $step_label;
	},
	10,
	3
);