apply_filters( 'learndash_show_quiz_builder_row_actions', boolean $show_row_actions, WP_Post|null $course_post )
Filters whether to show quiz builder row actions or not.
Description #
Parameters #
- $show_row_actions
-
(boolean) Whether to show row actions.
- $course_post
-
(WP_Post|null) Quiz post object.
Source #
File: includes/admin/classes-posts-listings/class-learndash-admin-quizzes-listing.php
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for learndash_show_quiz_builder_row_actions filter.
*/
add_filter(
'learndash_show_quiz_builder_row_actions',
function( $show_row_actions, $course_post ) {
// May add any custom logic using $show_row_actions, $course_post.
// Always return $show_row_actions.
return $show_row_actions;
},
10,
2
);
Changelog #
| Version | Description |
|---|---|
| 2.6.4 | Introduced. |