Okay
  Public Ticket #2495271
Looking for a list of hooks to add_filter in template.php
Closed

Comments

  • intma started the conversation

    Where can I find/How can I list hooks available to use with

    apply_filters( string $tag, mixed $value )
  • [deleted] replied

    Hi intma,

    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.