Translation_Entry::Translation_Entry()
Deprecated from version 5.4.0. It is no longer supported and can be removed in future releases. Use
__construct()
instead.PHP4 constructor.
Method of the class: Translation_Entry{}
No Hooks.
Return
null
. Nothing (null).
Usage
$Translation_Entry = new Translation_Entry(); $Translation_Entry->Translation_Entry( $args );
- $args **
- -
Default: array()
Notes
Changelog
Since 2.8.0 | Introduced. |
Deprecated since 5.4.0 | Use __construct() instead. |
Translation_Entry::Translation_Entry() Translation Entry::Translation Entry code WP 6.8
public function Translation_Entry( $args = array() ) { _deprecated_constructor( self::class, '5.4.0', static::class ); self::__construct( $args ); }