Skip to:
Content
Pages
Categories
Search
Top
Bottom

Listing Of add_actions hooks


  • David Bisset
    Participant

    @dimensionmedia

    I’ve already written BuddyPress building blocks and components, and about to wrap up the Auto Suggest plugin for BuddyPress. This question goes out to seasoned WordPress plugin makers… is there a complete list of all possible add_action hooks? Seems to be the one thing in my plugin-building arsenal that i’m missing. Please refer me to the best links or online references.

    Thanks in advance.

Viewing 2 replies - 1 through 2 (of 2 total)
  • usually I search the whole wordpress directory for the string do_action or apply_filters, then look for the best place to hook my functions to.

    a phpxref of BP would be nice

    if you need to search for do_action and apply_filters, this will give you the files (including path and line number), run it in mu-plugins:

    egrep -nr 'do_action|apply_filters' @pwd@"/"* /dev/null | grep bp | grep -v svn

    replace @ with backticks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Listing Of add_actions hooks’ is closed to new replies.
Skip to toolbar