SlideShare a Scribd company logo
1 of 44
Download to read offline
LEVELING UP YOUR
MULTILINGUAL
WORDPRESS SITE
JANNE ALA-ÄIJÄLÄ WORDCAMP FINLAND 15.4.2016
MY PERSONAL LEVEL 1:
POLYLANG
• SMOOTH 

ADMIN WORKFLOW
• ADVANCED 

MULTILINGUAL THEME
• WORKING WITH 

NON-LATIN ALPHABET
TRANSLATION
P O L I S H T H E
WORKFLOW
TO COPY OR
CONTENT DILEMMA:
NOTTO COPY
https://github.com/aucor/polylang-copy-content
HOW TO CHANGE
SHOW YOUR USERS
ADMIN LANGUAGE
AVOID
USEREDITABLE
WIDGETS
AS LONG AS POSSIBLE
THEME
MULTILINGUAL
 💩
if ( $current_language == 'fi' ) {
print 'Moi!';
} elseif ( $current_language == 'sv' ) {
print 'Hej!';
} else {
print 'Hello!';
}
THE USUAL WAY
_e( 'Hello!' , 'my-text-domain' );
ARE AWFUL!
.PO/.MO -FILES
THE PLUGIN WAY
pll_e( 'Hello!' );
THE PLUGIN WAY
USE FALLBACKS
if ( ! function_exists( 'pll__' ) ) {
function pll__( $string ) {
return __( $string , 'my-theme-textdomain' );
}
}
FROM PAGE GENERATION TIME
SHAVING MANY % OFF
* Actual results may vary and terms do apply
*
0
22,5
45
67,5
90
front page post-new.php
default install: 0 plugins
theme: twentysixteen
en fi
0
100
200
300
400
front page post-new.php
15 popular plugins
theme: twentysixteen
+42%
+72%
+74%
+59%
msms
NOT EVEN A SLOTH IS AS SLOW AS
LOAD_TEXTDOMAIN
WHAT IF?
0
22,5
45
67,5
90
front page post-new.php
en fi
0
100
200
300
400
front page post-new.php
+42%
+72%
+74%
+59%
+12%
+30%
+6%
+42%
fi, cached
ms ms
WE CAN!
NOTE: YOU NEED AN OBJECT CACHE LIKE REDIS, MEMCACHED OR APCU
wordpress.org/plugins/wp-performance-pack/
OR ONLY THE CACHEABLE MO LOADING:
github.com/aucor/dynamic-mo-loader
CHOOSING THE BEST
LANGUAGE SELECTOR
"#$%
&'()
FI / SV / EN
LANGUAGE CODES
ET / RU / EL / TR / ZH / JA / HI / AR
suomeksi på Svenska In English
FULL LANGUAGE NAMES == 😍
SUPER ULTIMATE+
WORKING WITH
NON-LATIN
ALPHABET
GLOBAL SHARES OF ALPHABETS & SCRIPTS
Source: http://www.worldstandards.eu/other/alphabets/
Other
14 %
Cyrillic
4 %
Arabic
14 %
Devanagari
14 % Chinese
18 %
Latin
36 %
WEBFONTS
FOR NON-LATIN
CHARACTERS
90%OF DESIGNERS
HAVEN’TCONSIDERED
*
* Number completely made up in my mind
font-family: "MyFancyFontWithLimitedLanguageSupport", cursive;
CASCADING FONT-STACKS
Typographically aethstetic headline
STRÖMSÖ:
Tässä otsikossa on ääkkösiä
REALITY:
CASCADING FONT-STACKS
天⽓气weather
CASCADING FONT-STACKS
font-family: "MyFancySerif", serif;
天⽓气weather
font-family: serif;
CHARACTER SUBSET
Typekit
INCLUDE CORRECT
Google Fonts
NOTO SANS
google.com/get/noto/
google.com/fonts/earlyaccess
GOOGLE WEBFONTS EARLY ACCESS
EASY SOLUTIONS:
TRANSLITERATION
Getting rid of unwanted characters
TRANSLITERATION: WORDPRESS DEFAULT
/tässä-osoitteessa-on-myös-å/
/tassa-osoitteessa-on-myos-a/
TRANSLITERATION: WORDPRESS DEFAULT
/芬兰全国⽓气象预报/
/芬兰全国⽓气象预报/
TRANSLITERATION PLUGINS
CYRILLIC: CYR TO LAT ENHANCED
wordpress.org/plugins/cyr3lat/
CHINESE: SO PINYIN SLUGS
wordpress.org/plugins/so-pinyin-slugs/
ARABIC: ARABIC TO LAT
wordpress.org/plugins/arabic-to-lat/
wordpress.org/plugins/tags/transliteration
RTL
tfel-ot-thgir
CHANGE THE DIRECTION
<html dir="rtl">
RIGHT SHOULD BE LEFT
LEFT SHOULD BE RIGHT
ASSETS FOR RTL
if ( is_rtl() ) {
wp_enqueue_style( 'style-rtl', 

get_stylesheet_directory_uri() . '/css/style-rtl.css' );
wp_enqueue_script( 'script-rtl',
get_stylesheet_directory_uri() . '/js/script-rtl.js' );
}
rtl.css
THINGS TO BE MIRRORED
• floats
• asymmetric margins
• asymmetric paddings
• list styles
• directional JS
THINGS TO BE MIRRORED
EXCEPTION: FLEXBOX
1 2 3
123
DIR=”LTR”:
DIR=”RTL”:
.container { display: flex; }
JANNE ALA-ÄIJÄLÄ
janne@ala-aijala.fi
@j_underdude

More Related Content

Similar to Leveling Up Your Multilingual WordPress site

Rubric student's oral presentation
Rubric  student's oral presentationRubric  student's oral presentation
Rubric student's oral presentation
JessicaLuna10
 
Upstate CSCI 450 PHP Chapters 5, 12, 13
Upstate CSCI 450 PHP Chapters 5, 12, 13Upstate CSCI 450 PHP Chapters 5, 12, 13
Upstate CSCI 450 PHP Chapters 5, 12, 13
DanWooster1
 
Php i basic chapter 3 (mardhiah kamaludin's conflicted copy 2013-04-23)
Php i basic chapter 3 (mardhiah kamaludin's conflicted copy 2013-04-23)Php i basic chapter 3 (mardhiah kamaludin's conflicted copy 2013-04-23)
Php i basic chapter 3 (mardhiah kamaludin's conflicted copy 2013-04-23)
Muhamad Al Imran
 

Similar to Leveling Up Your Multilingual WordPress site (20)

01-basics.ppt
01-basics.ppt01-basics.ppt
01-basics.ppt
 
Rubric student's oral presentation
Rubric  student's oral presentationRubric  student's oral presentation
Rubric student's oral presentation
 
Upstate CSCI 450 PHP Chapters 5, 12, 13
Upstate CSCI 450 PHP Chapters 5, 12, 13Upstate CSCI 450 PHP Chapters 5, 12, 13
Upstate CSCI 450 PHP Chapters 5, 12, 13
 
01 basics
01 basics01 basics
01 basics
 
php basic
php basicphp basic
php basic
 
Prersentation
PrersentationPrersentation
Prersentation
 
Upstate CSCI 450 PHP
Upstate CSCI 450 PHPUpstate CSCI 450 PHP
Upstate CSCI 450 PHP
 
Php mysql
Php mysqlPhp mysql
Php mysql
 
Php tutorial
Php  tutorialPhp  tutorial
Php tutorial
 
Php i basic chapter 3 (mardhiah kamaludin's conflicted copy 2013-04-23)
Php i basic chapter 3 (mardhiah kamaludin's conflicted copy 2013-04-23)Php i basic chapter 3 (mardhiah kamaludin's conflicted copy 2013-04-23)
Php i basic chapter 3 (mardhiah kamaludin's conflicted copy 2013-04-23)
 
WT_PHP_PART1.pdf
WT_PHP_PART1.pdfWT_PHP_PART1.pdf
WT_PHP_PART1.pdf
 
Perl Moderno
Perl ModernoPerl Moderno
Perl Moderno
 
basic concept of php(Gunikhan sonowal)
basic concept of php(Gunikhan sonowal)basic concept of php(Gunikhan sonowal)
basic concept of php(Gunikhan sonowal)
 
Intro to Dynamic Web Pages
Intro to Dynamic Web PagesIntro to Dynamic Web Pages
Intro to Dynamic Web Pages
 
PHP
PHPPHP
PHP
 
Creating Multilingual WordPress Websites
Creating Multilingual WordPress WebsitesCreating Multilingual WordPress Websites
Creating Multilingual WordPress Websites
 
Php mysql
Php mysqlPhp mysql
Php mysql
 
My cool new Slideshow!
My cool new Slideshow!My cool new Slideshow!
My cool new Slideshow!
 
slidesharenew1
slidesharenew1slidesharenew1
slidesharenew1
 
How to make multilingual plugins and themes
How to make multilingual plugins and themesHow to make multilingual plugins and themes
How to make multilingual plugins and themes
 

Recently uploaded

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Recently uploaded (20)

Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 

Leveling Up Your Multilingual WordPress site