do_action( ‘greenlet_after’ )
Fires before closing body tag.
This action can be used to render any content or perform any actions after wp_footer() is called right before rendering </body>.
Example Usage:
function mytheme_do_something() {
// do_something();
}
add_action( 'greenlet_after', 'mytheme_do_something' );