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

greenlet_before_entry_content

do_action( ‘greenlet_before_entry_content’ )

Fires before entry content greenlet_entry_content action.

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

Example Usage:

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

add_action( 'greenlet_before_entry_content', 'mytheme_before_entry_content' );