um_theme_after_comments

Hook Type: Action

Description: Add some content after the Comments Sections ends.

Currently Hooked Function:

n/a

Usage:

add_action( 'um_theme_after_comments', 'my_theme_footer' );

Example:

<?php
add_action( 'um_theme_after_comments', 'my_comments_title' );

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

Change log: Since 1.0

Source: is located in comments.php of line 95