WordPress Hooks

Complete reference of 1,691 WordPress action and filter hooks with detailed documentation and usage examples.

1,691
Total Hooks
54
Actions
46
Filters

Action Hooks

Actions allow you to add or modify WordPress functionality at specific points during execution. They don't return values but execute custom code when triggered.

do_action( 'hook_name', $arg1, $arg2 );

Filter Hooks

Filters allow you to modify data before it's displayed or saved. They always return a value that can be modified by your callback function.

apply_filters( 'hook_name', $value, $arg2 );

Action Hooks

Filter Hooks