NOOP_Translations::translate()publicWP 1.0

Method of the class: NOOP_Translations{}

No Hooks.

Return

null. Ничего (null).

Usage

$NOOP_Translations = new NOOP_Translations();
$NOOP_Translations->translate( $singular, $context );
$singular(string) (required)
-
$context(string)
-
Default: null

NOOP_Translations::translate() code WP 6.3

public function translate( $singular, $context = null ) {
	return $singular;
}