There are two types of WordPress hooks – actions
and filters
, Greenlet theme comes with both of these hooks to add and change theme behaviour.
actions
allow you to run a custom action at a specific point in theme execution time and filters
allow you to change the data returned by a theme function.
All the available Greenlet hooks are listed below.
Articles
- Actions
- greenlet_head
- greenlet_before_topbar
- greenlet_topbar
- greenlet_after_topbar
- greenlet_before_header
- greenlet_header
- greenlet_after_header
- greenlet_before_semifooter
- greenlet_semifooter
- greenlet_after_semifooter
- greenlet_before_footer
- greenlet_footer
- greenlet_after_footer
- greenlet_after
- greenlet_before_entry
- greenlet_entry_header
- greenlet_before_entry_content
- greenlet_entry_content
- greenlet_after_entry_content
- greenlet_entry_footer
- greenlet_after_entry
- greenlet_before_left_sidebar
- greenlet_after_left_sidebar
- greenlet_before_loop
- greenlet_loop
- Filters