Browse: Home / Hooks /

sfwd_global_settings_footer

do_action( 'sfwd_global_settings_footer',  null|string $location )

Fires inside sfwd global settings footer.


Description #


Parameters #

$location

(null|string) Location index.


Source #

File: includes/class-ld-semper-fi-module.php


Examples #

Note: Extended code example below not guaranteed, you may need to consult with a developer

 <?php
/**
 * Example usage for sfwd_global_settings_footer action.
 */
add_action(
	'sfwd_global_settings_footer',
	function( $location ) {
		// May add any custom logic using $location

	}
);
 

Changelog #

Changelog
Version Description
2.1.0 Introduced.