do_action( 'learndash-course-infobar-action-cell-before' )
Contents
Description #
Source #
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for learndash-course-infobar-action-cell-before action.
*/
add_action(
'learndash-course-infobar-action-cell-before',
function( $post_type, $course_id, $user_id ) {
// May add any custom logic using $post_type, $course_id, $user_id
},
10,
3
);