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 #
<?php /** * Example usage for {$code)}-nss_license_footer action. */ add_action( 'sfwd_lms-settings-nss_license_footer', function() { echo '<div>Custom content or markup</div>'; } );
Changelog #
Version | Description |
---|---|
2.1.0 | Introduced. |