Browse: Home / Hooks /

learndash_get_label_course_step_next

apply_filters( 'learndash_get_label_course_step_next',  string $step_label,  string $step_post_type )

Filters value of course step next label. Used to update step next label in learndash_get_label_course_step_next function.


Description #


Parameters #

$step_label

(string) Course step Next ... label.

$step_post_type

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


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_next filter.
 */
add_filter(
	'learndash_get_label_course_step_next',
	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
);