Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: deprecated_hook_run

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
5727       * Fires when a deprecated hook is called.
5728       *
5729       * @since 4.6.0
5730       *
5731       * @param string $hook        The hook that was called.
5732       * @param string $replacement The hook that should be used as a replacement.
5733       * @param string $version     The version of WordPress that deprecated the argument used.
5734       * @param string $message     A message regarding the change.
5735       */
5736      do_action( 'deprecated_hook_run', $hook, $replacement, $version, $message );
5737
5738      /**
5739       * Filters whether to trigger deprecated hook errors.
5740       *
5741       * @since 4.6.0
5742       *
5743       * @param bool $trigger Whether to trigger deprecated hook errors. Requires
5744       *                      `WP_DEBUG` to be defined true.
5745       */