apply_filters( 'learndash_lesson_sample_access' )
Contents
Description #
Source #
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
);