apply_filters( 'learndash_get_assignments_pending_count_query_args' )
Description #
Source #
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for learndash_get_assignments_pending_count_query_args filter.
*/
add_filter(
'learndash_get_assignments_pending_count_query_args',
function( $query_args ) {
// May add any custom logic using $query_args.
// Always return $query_args.
return $query_args;
}
);