wppaste
WordPress

do_action( 'deprecated_constructor_run', string $class_name, string $version, string $parent_class )

Since
4.3.0, 4.5.0
Fires when a deprecated constructor is called.

Compatibility

WordPress
since 4.5.0
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0).

Parameters

$class_namestring
The class containing the deprecated constructor.
$versionstring
The version of WordPress that deprecated the function.
$parent_classstring
The parent class calling the deprecated constructor.

Where this hook fires · 1

  • wp-includes/functions.php:5644_deprecated_constructor()

Source code

	 * @since 4.5.0 Added the `$parent_class` parameter.	 *	 * @param string $class_name   The class containing the deprecated constructor.	 * @param string $version      The version of WordPress that deprecated the function.	 * @param string $parent_class The parent class calling the deprecated constructor.	 */	do_action( 'deprecated_constructor_run', $class_name, $version, $parent_class ); 	/**	 * Filters whether to trigger an error for deprecated functions.	 *	 * `WP_DEBUG` must be true in addition to the filter evaluating to true.	 *

Changelog

Introduced in 4.3.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

4.5.0
Added the $parent_class parameter.from the docblock
4.3.0
Introduced.from the docblock

About this page

Parsed data
Generated from the wordpress-develop 7.0.4 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.