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 #
<?php /** * Example usage for learndash_addon_display_rows_{$this->current_tab} action. */ add_action( 'learndash_addon_display_rows_learndash', function() { echo '<div>Custom content or markup</div>'; } );
Changelog #
Version | Description |
---|---|
2.5.5 | Introduced. |