do_action( "learndash_addon_display_rows_{$this->current_tab}" )
Fires after add-on display row.
Description #
The dynamic portion of the hook $this->current_tab refers to current tab slug.
Source #
File: includes/admin/class-learndash-admin-addons-list-table.php
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for learndash_addon_display_rows_{$this->current_tab} action.
*/
add_action(
'learndash_addon_display_rows_learndash',
function() {
// Add your custom code here
}
);
Changelog #
| Version | Description |
|---|---|
| 2.5.5 | Introduced. |