Is there a documentation with the list of function hooks?
For example, I can add my custom function to the header like this:
add_action('ava_main_header', 'my_custom_func');
So what I’m looking for is the list of various places where my custom functions can be added. I searched through the documentation but didn’t find it.
Hi goforyourdreams!
No we don’t have one right now as its only been requested a few times. In general what we recommend is you follow the WordPress template hierarchy to find the file responsible for what you want to modify. You’ll see any available filters or actions to grab onto there.
You could also do a global search for avf and ava for filters and actions respectively but it doesn’t give you good context in my opinion.
Best regards,
Devin