do_action( ‘greenlet_after_header’ )
Fires after greenlet_header
action
This action can be used to render any component or perform any actions after the header is rendered.
Example Usage:
function mytheme_render_after_header () {
echo 'After Header';
}
add_action( 'greenlet_after_header', 'mytheme_render_after_header' );