do_action( "{$this->prefix}settings_footer", null|string $location )
Fires inside sfwd global settings footer for a prefix.
Description #
The dynamic part of the hook $this->prefix
refers to the semperfi setting prefix.
Parameters #
- $location
-
(null|string) Location index.
Source #
Examples #
<?php /** * Example usage for {$this->prefix}settings_footer action. */ add_action( 'sfwd_lms_settings_footer', function( $location ) { // May add any custom logic using $location echo '<div>Custom content or markup</div>'; } );
Changelog #
Version | Description |
---|---|
2.1.0 | Introduced. |