Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: deprecated_class_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
5657      /**
5658       * Fires when a deprecated class is called.
5659       *
5660       * @since 6.4.0
5661       *
5662       * @param string $class_name  The name of the class being instantiated.
5663       * @param string $replacement The class or function that should have been called.
5664       * @param string $version     The version of WordPress that deprecated the class.
5665       */
5666      do_action( 'deprecated_class_run', $class_name, $replacement, $version );
5667
5668      /**
5669       * Filters whether to trigger an error for a deprecated class.
5670       *
5671       * @since 6.4.0
5672       *
5673       * @param bool $trigger Whether to trigger an error for a deprecated class. Default true.
5674       */
5675      if ( WP_DEBUG && apply_filters( 'deprecated_class_trigger_error', true ) ) {