um_theme_after_page_content
Hook Type: Action
Description: Add some content before the page content starts.
Currently Hooked Function:
um_theme_output_page_comments()
Usage:
add_action( 'um_theme_after_page_content', 'my_theme_post' );
Example:
<?php add_action( 'um_theme_after_page_content', 'my_theme_post' ); function my_theme_post() { // your code here; } ?>
Change log: Since 1.0
Source: is located in page.php of line 40