Translation_Entry::Translation_Entry() public WP 1.0
Deprecated from version 5.4.0. It is no longer supported and can be removed in future releases. Use
__construct()
instead.╳PHP4 constructor.
{} It's a method of the class: Translation_Entry{}
No Hooks.
Return
````. Null. Nothing.
Usage
$Translation_Entry = new Translation_Entry(); $Translation_Entry->Translation_Entry( $args );
- $args **
- -
Default: array()
Notes
- See: Translation_Entry::__construct()
Changelog
Deprecated Since 5.4.0 | Use __construct() instead. |
Code of Translation_Entry::Translation_Entry() Translation Entry::Translation Entry WP 5.7
public function Translation_Entry( $args = array() ) {
_deprecated_constructor( self::class, '5.4.0', static::class );
self::__construct( $args );
}