Type
Filter
Arguments
(string) $text
Description
Change the default HTML menu item text ‘License Manage’
Example of usage
Change the default text to something else
add_filter('woo_sl/html/menu/license_manage', 'custom_html_menu_license_manage'); function custom_html_menu_license_manage( $text ) { $text = __('License Administration', 'software-license'); return $text; }