Contents
hide
do_action( ‘greenlet_before_entry’ )
Fires before entry article
tag.
Description
This action can be used to render any content or perform any actions before the article tag.
Example Usage:
function mytheme_before_entry() {
// do_something();
}
add_action( 'greenlet_before_entry', 'mytheme_before_entry' );