Docs / Filter Reference / wpdm_package_settings_tabs

wpdm_package_settings_tabs

Description


If you want to add new settings tab under Downloads –> Add New –> Package Settings , you can use this hook.

Parameters


One parameter is passed to this hook.

Usage


To add new tabs Under Package Settings section.
<?php add_filter('wpdm_package_settings_tabs','my_new_tab',10,1);  ?>

Examples


<?php

add_filter('wpdm_package_settings_tabs','my_new_tab',10,1);

function my_new_tab($tabs){
$tabs['my_id'] = 'My Tab Name';
return $tabs;
}

?>

Related


Last updated on January 26, 2026

Need Help?

Get support from our team or community forum.

Visit Support

Customization

Need custom features? We can help.

Request Quote