um_theme_single_post

Hook Type: Action

Description: Add some content between the single post type <article> div.

Currently Hooked Function:

um_theme_single_post_header();
um_theme_single_post_featured_image();
um_theme_single_post_content();

Usage:

add_action( 'um_theme_single_post', 'my_theme_post' );

Example:

<?php
add_action( 'um_theme_single_post', 'my_theme_post' );

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

Change log: Since 1.0

Source: is located in content-single.php of line 22