1. Home
  2. Docs
  3. Greenlet Hooks
  4. Actions
  5. greenlet_after_entry_content

greenlet_after_entry_content

do_action( ‘greenlet_after_entry_content’ )

Fires after entry content greenlet_entry_content action.

Description

This action can be used to render any content or perform any actions after the article entry content is rendered.

Example Usage:

function mytheme_after_entry_content() {
	// do_something();
}

add_action( 'greenlet_after_entry_content', 'mytheme_after_entry_content' );