Tag: i18n

  • What’s the difference between __(), _e(), _x(), and _ex()?

    If you’re a thorough plugin developer you’re internationalizing (i18n) all your strings. WordPress includes several functions that allow the programmer to easily make his plugin usable natively worldwide: __() _e() _x() _ex() _n() In some older plugins you may find the function _c() which is deprecated and replaced by _x() since version 2.9. If you’re…