Contents
hide
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' );