do_action( "{$code)}-nss_license_footer" )
Fires after the NSS license footer HTML.
Description #
The dynamic part of the hook $code refers to the slug of the plugin.
Source #
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for {$code)}-nss_license_footer action.
*/
add_action(
'sfwd_lms-settings-nss_license_footer',
function() {
// Add your custom code here
}
);
Changelog #
| Version | Description |
|---|---|
| 2.1.0 | Introduced. |