um_theme_single_post_top
Hook Type: Action
Description: Add some content between the single post type <article> div.
Currently Hooked Function:
um_theme_single_post_print_featured_image();
Usage:
add_action( 'um_theme_single_post_top', 'my_theme_post' );
Example:
<?php add_action( 'um_theme_single_post_top', 'my_theme_post' ); function my_theme_post() { // your code here; } ?>
Change log: Since 1.0
Source: is located in content-single.php of line 14