wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



has_translation › WordPress Function

Seit6.7.0
Veraltetn/v
has_translation ( $singular, $textdomain = 'default', $locale = null )
Parameter: (3)
  • (string) $singular Singular translation to check.
    Erforderlich: Ja
  • (string) $textdomain Optional. Text domain. Default 'default'.
    Erforderlich: Nein
    Standard: 'default'
  • (?string) $locale Optional. Locale. Default current locale.
    Erforderlich: Nein
    Standard: null
Gibt zurück:
  • (bool) True if the translation exists, false otherwise.
Definiert in:
Codex:

Returns a boolean to indicate whether a translation exists for a given string with optional text domain and locale.



Quellcode

function has_translation( string $singular, string $textdomain = 'default', ?string $locale = null ): bool {
	return WP_Translation_Controller::get_instance()->has_translation( $singular, $textdomain, $locale );
}