How to put bilingual Wordpress?

5

I needed to put a website (template developed by me) under CMS Wordpress in two languages, but the qTranslate plugin did not enable in my version. Is there any way to do it without plugins? Or maybe a plugin that works in version +3.8?

    
asked by anonymous 15.06.2014 / 21:52

1 answer

5

If qTranslate has not yet been updated, you can enforce its compatibility by changing the following value in the file plugins/qtranslate/qtranslate.php :

define('QT_SUPPORTED_WP_VERSION', '3.8.1');

In addition to qTrans, there are three main plugins for translation:

  • WPML : premium, create a post / mirror page for each translation.
  • Multilingual Press : freemium, works with Multisite, a site for each language and interconnection between translated posts / pages.
  • Polylang : free, never worked or analyzed the operation.

You can also create a home-made solution such as in this example .

    
16.06.2014 / 09:43