Welcome, visitor! Log in
 

Deprecated hooks in WP 2.6

The following hooks occured in 2.5 but do not occur in 2.6. Note that some of them may have been renamed, not removed. See below.

Important! Some hooks get applied in multiple files. If you are trying to figure out what a specific hook does, sort the table by "hook" and make sure you are looking in all the files where it occurs.

  • To sort the table, click on a column title.
  • Click a hook name to see details about the hook.
  • Click a file name to see only hooks used in that file.
Hook Type Renamed? File
1 admin_head-{$page_hook} note action DEPRECATED /.../admin-header.php
2 admin_head-{$plugin_page} note action DEPRECATED /.../admin-header.php
3 admin_print_scripts-{$page_hook} note action DEPRECATED /.../admin-header.php
4 admin_print_scripts-{$plugin_page} note action DEPRECATED /.../admin-header.php
5 get_nested_categories filter DEPRECATED /.../template.php

Warning about variable hooks

Some hooks have variables in their names. For example, pre_${taxonomy}_$field and admin_head- both have variable names. In general, any hook that ends (or begins) with - or _, or contains a $, has a variable name. Since the syntax with which these variables are defined may change from version to version, this page may think that a hook is deprecated (or new) even if it is not.