__ ( 'page', 'twentytwelve')는 무엇을 의미합니까
-
-
나는 당신이`array ( 'name'=> __ ( 'page','twentytwelve'));`또는`$name=__ ( 'page','twentytwelve');`를 본 적이 있다고 생각합니다.제쳐두고.I would venture to guess that you've either seen `array( 'name' => __('page','twentytwelve') );` or `$name = __('page','twentytwelve');`. Just as an aside.
- 3
- 2013-10-03
- Johannes Pille
-
1 대답
- 투표
-
- 2013-10-03
<인용구>국제화 및 현지화 (일반적으로i18n으로 약칭) 및 l10n)은 노력을 설명하는 데 사용되는 용어입니다. WordPress (및 기타 해당 프로젝트)는 다른 방언을 사용하는 다른 로케일의 사람들을위한 영어 및 지역 선호도.
__()
는 메시지가 다른 함수에 인수로 전달 될 때 사용됩니다.._e()
는 메시지를 페이지에 직접 작성하는 데 사용됩니다.자세한 내용은 @ http://codex.wordpress.org/Translating_WordPressInternationalization and localization (commonly abbreviated as i18n and l10n respectively) are terms used to describe the effort to make WordPress (and other such projects) available in languages other than English, for people from different locales, who use different dialects and local preferences.
__()
is used when the message is passed as an argument to another function._e()
is used to write the message directly to the page. More detail on this @ http://codex.wordpress.org/Translating_WordPress-
+1 및 WP의gettext에 대한 자세한 내용은 [이 답변] (http://wordpress.stackexchange.com/questions/57735/whats-the-point-on-gettext-syntax/57748#57748)을 참조하세요.+1 and for a thorough breakdown on gettext in WP see [this answer](http://wordpress.stackexchange.com/questions/57735/whats-the-point-on-gettext-syntax/57748#57748)
- 3
- 2013-10-03
- Johannes Pille
나는 1.0 버전에서twentytwelve 테마를 사용하고 있습니다.다음과 같은 코드를 많이 보았습니다.
내가주는 경우
또한 잘 작동합니다.그렇다면
__()
를 사용하는 이유는 무엇입니까?그게 무슨 소용이야?