Browse: Home / Hooks /

learndash_lesson_sample_access

apply_filters( 'learndash_lesson_sample_access' )

Description #


Source #

File: themes/ld30/templates/lesson/partials/row.php


Examples #

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

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

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