WordPress OSINT, maintenance or security needs? Reach out!
TLDWP

Plugin: wp-multilang (Used by 2,358 domains)

WP Multilang – Translation and Multilingual Plugin

👤 Magazine3 📦 v2.4.27 🔗 Plugin Homepage

WP Multilang is a multilingual plugin for WordPress.

Translations of post types, taxonomies, meta fields, options, text fields in miltimedia files, menus, titles and text fields in widgets.

Home | Help & Tech Support | Documentation | Premium Features

New Features of the plugin WP Multilang

Features of the plugin WP Multilang

  • 100% free.
  • Translation at PHP.
  • Compatible with REST.
  • Support configuration for translate multidimensional arrays in options, meta fields, post content.
  • Support multisite.
  • Support WordPress in sub-folder.
  • Separate menu items, posts, terms, widgets, comments per language.
  • Many filters for dynamic applying translation settings.
  • No duplicate posts, terms, menus, widgets.
  • No sub-domain for each language version.
  • No additional tables in database.
  • Possibility set many languages with one localization. For example, for localization in the region.
  • Possibility to set custom locale for html(If installed locale is en_US, you can set locale like: en, en-UK, en-AU etc. Without installation another localization)
  • Possibility for add new languages for any user with capability manage_options.
  • Exist the role “Translator” for editing posts, terms. It can not publish or delete.
  • No limits by languages or by possibilities.

WP Multilang compatible with plugins

  • Elementor ( available in premium version ) – View Tutorial
  • Divi Builder ( available in premium version ) – View Tutorial
  • ACF, ACF Pro
  • WooCommerce
  • WooCommerce Customizer
  • Gutenberg
  • Yoast Seo
  • SEOPress
  • Contact Form 7 (added mail tag [_language] for send user language in mail)
  • WPBakery Visual Composer
  • Page Builder by SiteOrigin
  • NextGEN Gallery
  • All in One SEO Pack
  • MailChimp for WordPress
  • Newsletter
  • Maps Builder
  • Max Mega Menu
  • MasterSlider
  • WP-PageNavi
  • BuddyPress
  • Meta Slider
  • TablePress
  • Download Monitor (Redefine templates for links in your theme and translate link texts)
  • Better Search
  • Rank Math SEO (thanks for @pratikmts)
  • WPGraphQL (Add lang to the query parameters in URL. Eg: lang=en)
  • Smart Custom Fields
  • Team – Team Members Showcase Plugin
  • Schema & Structured Data for WP & AMP
  • Forminator Forms
  • Gravity Forms
  • Ultimate Member Form
  • Oxygen Builder ( available in premium version )
  • Internal Link Juicer

Advance Woocommerce Support

  • Send emails in customer’s selected language
  • REST API Support
  • Import and export products in customer’s selected language
  • Translate products (simple products, variable products, grouped products), categories, tags, global attributes
  • Cart synchronization across multiple languages

Manage translation settings via json.

Add in the root of your theme or plugin file wpm-config.json.

Sample configurations can be viewed in config files in folder ‘configs’ in root the plugin.

Configuration is updated after switching theme, enable or update any plugins.

The plugin has filters for dynamic application configuration for translate.

For turn off translation, set null into the desired configuration.
For example, you must turn off translation for a post type post.
There are two ways:

  1. In json.
    Create in root of a theme or a plugin file wpm-config.json with:
    {
    “post_types”: {
    “post”: null
    }
    }

  2. Through the filter.
    Add in functions.php
    add_filter( ‘wpm_post_post_config’, ‘__return_null’ );

To enable translation pass an empty array in php array() or empty object in json {}.

Supports translation multidimensional array of options, meta fields and post_content.
Supports the removal of established localizations.
Supports translation via GET parameter. Add in the GET parameter lang code desired language.
Supports clean database of translations when removing the plugin. Translations are only removed from the built-in tables.
Supports import term translations from qTranslate(by Soft79).
Supports automatically redirect to the user’s browser language, if he visits for the first time.

Ideal for developers.

For display language switcher in any place add the code to your template if ( function_exists ( 'wpm_language_switcher' ) ) wpm_language_switcher ();
Function accepts two parameters:
$type – ‘list’, ‘dropdown’, ‘select’. Default – ‘list’.
$show – ‘flag’, ‘name’, ‘both’. Default – ‘both’.

Or using the shortcode wpm_lang_switcher. It accept two not necessary parameters ‘type’ and ‘show’.

Available features for translation:
wpm_translate_url( $url, $language = ” ); – translate url
wpm_translate_string( $string, $language = ” ); – translate multilingual string
wpm_translate_value( $value, $language = ” ); – translate multidimensional array with multilingual strings

Update translation occurs at PHP. Therefore plugin has high adaptability, compatibility and easily integrates with other plugins. This is what distinguishes it among similar.

Available translation html tags by JS for strings what do not have WP filters before output.

Add your tags in config:

"admin_html_tags": {
    "admin_screen_id": {
      "attribute": [
        "selector"
      ]
    }
}

Where:
admin_screen_id – admin screen id.
attribute – attribute what need to translate. Available ‘text’ – for translate text node, ‘value’ – for translate form values. Or other tag attribute, like ‘title’, ‘alt’.
selector – css selector for search needed tag. Each selector is a new array item.

If You need to add translation for multidimentional array for repeated elements You can use custom tag ‘wpm_each’ for set config to each element in array.
Example, add config for each item ‘title’ in custom post field array:

"post_fields": {
    "custom_field": {
      "wpm_each": {
        "title": {}
      }
    }
}

For set translation uses the syntax:
[:en]Donec vitae orci sed dolor[:de]Cras risus ipsum faucibus ut[:]

Added shortcode for translate text in any place:
[wpm_translate][:en]Donec vitae orci sed dolor[:de]Cras risus ipsum faucibus ut[:][wpm_translate]

If You translate text in established language, add lang parameter:
[wpm_translate lang=”de”][:en]Donec vitae orci sed dolor[:de]Cras risus ipsum faucibus ut[:][wpm_translate]

Support translating from syntax qTranslate, qTranslate-X, WPGlobus etc.

Compatible with REST-API.
Support transfer the required translation through option lang in the GET request to REST.
Has the ability to keep recording the target language through the transmission parameter lang in the request.

Migration from qTranslate-X

  1. Before installing/uninstalling, make database backup.
  2. Deactivate qTranslate-X.
  3. Install and activate WP Multilang.
  4. Create in root of your theme file ‘wpm-config.json’.
  5. Add all needed post types, taxonomies, options, fields to ‘wpm-config.json’. Setting from qTranslate-X not importing.
  6. Import term names from qTranslate.
  7. Check that everything is okay.
  8. If everything is okay, remove qTranslate-X. If not, make screenshots of errors, restore database from backup and add support issue with your screenshots and description of errors.

Warning

Not compatible with:
– WP Maintenance

Known issues

Function ‘get_page_by_title’ not working, because in title field are stored titles for all languages. Use function ‘wpm_get_page_by_title( $title )’ as solution.

NOTE: Because plugins have different ways of storing data, WP Multilang is not compatible with every single plugin out-of-the-box (mostly page builders). This may result in texts not being translatable or translations not being saved. Most of these issues can be resolved using the integration options (wpm-config.json or filters) of WP Multilang.

Please try WP Multilang in a test-environment before activating it on an existing production site and always make a backup before activating!

Home | Help & Tech Support | Documentation | Premium

Support

We try our best to provide support on WordPress.org forums. However, We have a special community support where you can ask us questions and get help about your WP Multilang related questions. Delivering a good user experience means a lot to us and so we try our best to reply each and every question that gets asked.

Bug Reports

Bug reports for WP Multilang are welcomed on GitHub. Please note GitHub is not a support forum, and issues that aren’t properly qualified as bugs will be closed.

DomainExposuresHeadersLast Checked
g*a*e*o*l*n*.com F 2026-04-25 15:18:05
i*i*a*o*.com (WP 6.3.8) ⚠️ F 2026-04-25 15:10:22
a*t*u*a*.com (WP 6.7.1) D 2026-04-25 13:47:43
t*m*e*e*t*o*i*s.com (WP 6.0.11) ⚠️ F 2026-04-25 13:34:56
i*i*a*o*i*a.com (WP 5.7.15) ⚠️ F 2026-04-25 13:08:19
l*m*n*a*a*o*t*a.com (WP 6.8.3) F 2026-04-25 12:53:07
e*b*s*y*i*e.ru (WP 6.9.4) F 2026-04-25 12:06:25
s*s*e*b*r*t*n*.it (WP 6.8.5) A 2026-04-25 12:00:09
i*e*m*r*u*i*.com (WP 6.9.4) F 2026-04-25 11:54:22
i*e*i*a*a*o*i*a.com (WP 6.9.4) F 2026-04-25 11:54:22
f*a*l*r*i*l.com (WP 5.9.13) ⚠️ F 2026-04-25 11:43:01
u*n*a*t*s*r*.ac.id F 2026-04-25 11:10:15
v*l*e*a.com (WP 6.9.4) F 2026-04-25 11:01:15
m*n*t*a*f*r*i*u*e.com (WP 6.9.4) F 2026-04-25 10:54:58
g*e*n*i*e.at (WP 6.1.10) ⚠️ F 2026-04-25 10:51:50
v*l*a*i*s*o*s.com F 2026-04-25 10:47:26
h*s*i.ua F 2026-04-25 10:46:19
b*o*e*t.org (WP 6.6.5) F 2026-04-25 10:42:26
i*e*p*l*s.com D 2026-04-25 10:29:14
c*l*f*r*i*s*l*r*o.com (WP 6.8.3) F 2026-04-25 09:30:34
o*e*a*l*h*r*.com (WP 6.9) D 2026-04-25 09:05:12
t*e*r*a*j*n*.com (WP 6.9.4) F 2026-04-25 09:02:28
s*r*.gov.bg C 2026-04-25 08:03:26
t*c*m*d*a.com (WP 6.8.1) F 2026-04-25 07:33:35
d*s*o*e*p*a*e.eu (WP 6.9.4) F 2026-04-25 07:21:09
l*i*-*e*e*.com (WP 6.9.4) F 2026-04-25 07:09:13
a*l*c*o*s*n*r*.com (WP 6.9.4) F 2026-04-25 07:06:42
c*t*s*i*s*r*a*e*s.com F 2026-04-25 06:07:05
r*m*l*f*a*d*n*.com (WP 6.9.4) F 2026-04-25 05:36:08
h*i*y*n*u*i*.com (WP 6.9.4) F 2026-04-25 05:35:39
b*e*n*l*w*r*z*w*.pl F 2026-04-25 05:20:11
s*l*e*a.eu (WP 6.8.5) F 2026-04-25 04:54:12
o*t*e*s*o*f*.com (WP 6.9.4) F 2026-04-25 04:25:20
e*e*g*c*o*d.cz 🔓 F 2026-04-25 04:23:26
a*u*-*o*d.de (WP 6.9.4) F 2026-04-25 04:13:28
m*c*a*c*s*.com (WP 5.3.1) ⚠️ F 2026-04-25 03:54:09
k*l*b*r*.com (WP 5.2.21) ⚠️ D 2026-04-25 03:54:03
d*-*n*i*e.pl (WP 6.8.5) 🔓 F 2026-04-25 03:43:37
r*m*n*u*i*a.com (WP 6.5.8) F 2026-04-25 03:29:03
f*b*t.be (WP 4.9.6) ⚠️ F 2026-04-25 03:15:20
c*t*-*p*r*m*n*s.com F 2026-04-25 02:51:29
e*m*r*.de (WP 6.9.4) F 2026-04-25 02:48:38
m*n*g*i*e.pro D 2026-04-25 02:47:44
s*t*a*l.world (WP 6.9.4) F 2026-04-25 02:44:43
o*t*i*o*b*a*a*c*.com (WP 6.9.4) F 2026-04-25 02:43:00
s*i*c*e*k*.ru (WP 5.4.19) ⚠️ F 2026-04-25 01:42:20
k*d*s*p*8.com (WP 6.9.4) F 2026-04-25 01:34:09
e*s*.hu F 2026-04-25 01:17:40
r*l*o*v*t.com (WP 6.9.4) F 2026-04-25 01:11:00
e*o*o*s*.ge F 2026-04-25 00:22:30
r*l*e*d*r*y*o*l*t*o*o*l*a*u*s.com (WP 6.9.4) F 2026-04-24 23:48:58
r*l*a*d*b*.com D 2026-04-24 23:33:14
k*b*w*j*i*.com (WP 6.9.4) F 2026-04-24 23:18:49
a*i*.ch (WP 6.7.5) F 2026-04-24 22:47:59
r*k*d*l.com (WP 6.9.4) F 2026-04-24 21:53:00
f*t*s*.com F 2026-04-24 21:18:04
m*t*a*l*w.com (WP 6.9.4) F 2026-04-24 21:06:35
s*b*m*.sr (WP 6.3.8) ⚠️ F 2026-04-24 20:33:04
d*m*l*t*o*-*a*o.ru (WP 5.8.2) ⚠️ F 2026-04-24 20:33:03
s*a*t*p*a*h*n.de (WP 6.9.4) F 2026-04-24 19:57:52
s*b.com.tn (WP 6.6.1) C 2026-04-24 19:38:20
o*h*k*v*.ru (WP 6.9.4) F 2026-04-24 18:54:28
k*e*i*m*z*n*s*v*.com (WP 6.9.4) F 2026-04-24 18:25:58
p*e*.breuss-solutions.de (WP 6.5.8) F 2026-04-24 17:03:26
u*m*s*e*e*t*r*a*n*e*t.com (WP 6.9.4) F 2026-04-24 16:54:28
b*t*c*n*l*g*.pro F 2026-04-24 15:35:54
t*s*y*r*-*o*o*c*.com (WP 6.9.4) F 2026-04-24 15:07:32
p*t*m*r*e*i*g.de (WP 5.2.24) ⚠️ F 2026-04-24 14:51:52
t*s*e*o*t*.com 🔓 B 2026-04-24 14:06:48
f*u*s*n*a*g*s*t*n*i.com (WP 6.6.2) F 2026-04-24 13:38:00
n*t*u*o*a*a*l*.com (WP 5.0.22) ⚠️ F 2026-04-24 13:01:09
g*o*r*s*r*s.com (WP 6.9.4) F 2026-04-24 12:14:35
d*g*t*l*o*f*r*.com (WP 6.9.4) F 2026-04-24 11:59:48
v*u*t*n*2*2*.com (WP 6.9.4) F 2026-04-24 11:51:36
s*y*o*n*-*o*e*.ru (WP 6.9.4) F 2026-04-24 11:50:35
m*r*n*a*b*r*s*a.com (WP 6.8.5) F 2026-04-24 11:13:45
y*g*o*p.ca (WP 6.4.3) ⚠️ F 2026-04-24 09:09:06
m*s*m*r*z*.net (WP 6.9.4) F 2026-04-24 09:02:50
f*r*e*.ua (WP 6.3.7) ⚠️ F 2026-04-24 09:02:35
e*e*t*i*-*o*.com (WP 6.9.4) F 2026-04-24 08:56:47
p*w*r*u*p*y*n*s*r*i*e.com (WP 5.4) ⚠️ F 2026-04-24 08:24:38
o*e*c.org (WP 6.9.4) F 2026-04-24 07:45:58
h*t*l*e*s*.tech (WP 6.9.4) B 2026-04-24 07:42:08
h*u*e*f*i*a*i*a.com F 2026-04-24 07:26:46
k*o*k.com (WP 6.9.4) F 2026-04-24 06:50:40
a*t*y.group (WP 6.9.4) F 2026-04-24 05:58:59
s*m*n*e*n*t*e*a*k*t*r*.com (WP 6.9.4) F 2026-04-24 05:58:50
s*i*n*r*i*a*e*i*n.de F 2026-04-24 05:32:19
a*i*n*-*s*c*o*o*u*.com (WP 5.8.13) ⚠️ 🔓 F 2026-04-24 05:09:35
d*t*f*u*d*t*o*.org (WP 6.0.2) ⚠️ F 2026-04-24 05:05:26
m*b*l*n*e.com (WP 6.4.8) ⚠️ F 2026-04-24 04:10:18
k*i*s*e*-*n*r*.com (WP 6.9.4) F 2026-04-24 04:06:29
h*u*a*r*h*d*o*.com (WP 6.9.4) B 2026-04-24 03:12:20
s*t*.prix-fetkann.fr (WP 4.9.9) ⚠️ F 2026-04-24 02:47:08
k*h*m*s*a*n.com (WP 6.9.4) F 2026-04-24 01:35:42
k*e*a*l*n*a.com (WP 6.5.8) F 2026-04-24 01:10:26
b*n*e*v*r*a*d*p*.de (WP 6.9.4) F 2026-04-24 00:43:10
c*e*i*a*-*l*i*e.com (WP 6.1.4) ⚠️ F 2026-04-24 00:07:33
p*t*n*a*m*.com F 2026-04-23 23:43:13
m*a*p*w*l*.pl F 2026-04-23 22:39:16

Top 50 Plugins

Plugin Count
elementor 2,876,743
contact-form-7 2,535,807
elementor-pro 1,605,735
woocommerce 1,357,058
revslider 958,523
js_composer 617,818
jetpack 500,672
wp-rocket 446,764
essential-addons-for-elementor-lite 431,136
header-footer-elementor 378,816
gutenberg-core 364,692
elementskit-lite 355,986
google-analytics-for-wordpress 323,681
instagram-feed 323,556
google-site-kit 311,813
gravityforms 309,864
complianz-gdpr 302,414
cookie-law-info 301,620
wpforms-lite 270,986
astra-sites 264,435
sitepress-multilingual-cms 259,715
bluehost-wordpress-plugin 246,511
litespeed-cache 235,764
gtranslate 189,994
coblocks 182,959
cookie-notice 174,625
gutenberg 162,658
the-events-calendar 152,372
popup-maker 143,161
premium-addons-for-elementor 141,379
astra-addon 139,318
bb-plugin 138,618
mailchimp-for-wp 137,851
LayerSlider 132,969
wp-smushit 131,507
custom-fonts 127,710
creame-whatsapp-me 125,697
pro-elements 124,280
tablepress 123,761
click-to-chat-for-whatsapp 121,385
woocommerce-gateway-stripe 116,007
duracelltomi-google-tag-manager 115,025
cleantalk-spam-protect 111,982
smart-slider-3 110,667
pixelyoursite 108,887
akismet 108,500
royal-elementor-addons 108,255
megamenu 106,452
fusion-builder 106,214
honeypot 104,235

Top 50 Themes

Theme Count
hello-elementor 913,554
astra 773,887
Divi 746,445
pub 241,976
generatepress 171,941
flatsome 170,338
Avada 158,940
h4 153,580
oceanwp 125,617
kadence 111,092
enfold 93,366
salient 90,566
bb-theme 89,437
twentytwentyfour 86,282
blocksy 85,209
twentytwentyfive 84,658
cocoon-master 79,457
betheme 75,127
twentyseventeen 71,780
woodmart 65,160
dt-the7 61,257
neve 53,895
twentytwentyone 46,552
bridge 45,692
swell 42,448
Avada-Child-Theme 39,866
twentytwenty 39,794
lightning 39,317
twentytwentythree 39,169
gox 37,753
bricks 32,275
Impreza 32,126
Newspaper 30,379
twentytwentytwo 29,943
epik-redesign 24,903
extendable 24,555
storefront 24,479
pro 24,353
yith-wonder 23,929
uncode 23,627
twentysixteen 23,152
sydney 22,365
themify-ultra 22,244
twentyfifteen 20,665
Total 19,997
porto 18,683
hestia 17,775
thrive-theme 17,023
yootheme 16,415
popularfx 16,233