---
title: "Available Hooks: Actions And Filters"
source: "https://docs.nexcess.com/software/kadence/iconic/available-hooks-actions-and-filters-2/"
description: "Hooks are a great feature of WordPress which allow you to change or add code without editing core files.  There's are two types of hook available; actions and f…"
vertical: "Software"
area: "Iconic"
date: "2023-04-26"
last_modified: "2023-04-26"
---

# Available Hooks: Actions And Filters

Hooks are a great feature of WordPress which allow you to change or add code without editing core files.

 There’s are two types of hook available; actions and filters.

- **Actions**  
    An action allows you to insert or run code at a specific point.
- **Filters**  
    A filter allows you to modify the data that is returned in a function or method.

Some of these hooks have additional parameters passed to them which you can use in your own functions. You can find the hook in the reference file to see what is available.
