The code you provided is an implementation in WordPress Core files (wp-includes/plugin.php:181):
apply_filters( string $tag, mixed $value )
So it depends what tag name you want to learn more, our theme uses number of hooks (aka filters) which are around 250+ so it depends which tagname you want to learn more about exactly.
You can run a scan inside theme files to find files that match apply_filters( function and see all defined filters.
Where can I find/How can I list hooks available to use with
Hi intma,
The code you provided is an implementation in WordPress Core files (wp-includes/plugin.php:181):
So it depends what tag name you want to learn more, our theme uses number of hooks (aka filters) which are around 250+ so it depends which tagname you want to learn more about exactly.
You can run a scan inside theme files to find files that match apply_filters( function and see all defined filters.