woo-hooks-filters
Installation
SKILL.md
WooCommerce Hooks & Filters
Before writing code
Fetch live docs:
- Fetch
https://developer.wordpress.org/plugins/hooks/for WordPress Hooks fundamentals - Web-search
site:developer.woocommerce.com hooksfor WooCommerce-specific hooks - Web-search
woocommerce action filter referencefor comprehensive hook listings
How Hooks Work
Actions
Fire at specific points in execution — used for side effects (sending emails, writing logs, rendering HTML):
do_action( 'hook_name', $arg1, $arg2 )— fires the actionadd_action( 'hook_name', 'callback', $priority, $accepted_args )— registers a listenerremove_action( 'hook_name', 'callback', $priority )— unregisters a listener- Lower
$priority= runs earlier (default 10)