Browse: Home / Hooks /

learndash_addon_tabs

apply_filters( 'learndash_addon_tabs',  array $tabs )

Filters list of add-on tabs.


Description #


Parameters #

$tabs

(array) An array of tabs list.


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_tabs filter.
 */
add_filter(
	'learndash_addon_tabs',
	function( $tabs ) {
		// May add any custom logic using $tabs.

		// Always return $tabs.
		return $tabs;
	}
);
 

Changelog #

Changelog
Version Description
2.5.5 Introduced.