um_theme_footer

Hook Type: Action

Description: Add some content between the <footer> div.

Currently Hooked Function:

um_theme_footer_widgets();
um_theme_footer_bottom_content();

Usage:

add_action( 'um_theme_footer', 'my_theme_footer' );

Example:

<?php
add_action( 'um_theme_footer', 'my_theme_footer' );

function my_theme_footer() { 
	// your code here;
 } 
?>

Change log: Since 1.0

Source: is located in footer.php of line 28