um_theme_before_content

Hook Type: Action

Description: Add some content before the #content div.

Currently Hooked Function:

n/a

Usage:

add_action( 'um_theme_before_content', 'um_theme_core_header' );

Example:

<?php
add_action( 'um_theme_before_content', 'my_theme_header' );

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

Change log: Since 1.0

Source: is located in header.php of line 48