Looking at the source, there is no programmatic way to accomplish that. There is only one location where $_GET['rtl']
is referenced and its value is used directly (i.e., it is not used to set the value of another variable used in the plugin). The function you would want to modify if you want the same effect without passing the rtl
parameter is function _show_post_content()
in inc/translation-management/translation-management.class.php
. Specifically this block of code looks to be the only place affected by the parameter:
[...]
if ( @intval( $_GET[ 'rtl' ] ) ) {
$rtl=" dir="rtl"";
} else {
$rtl="";
}
echo '<html' . $rtl . '>';
[...]
You could just remove the if/else statement all together and change the echo to echo '<html dir="rtl">'
for a quick “hacky” fix if desired.
Related Posts:
- Uninstall languages
- Add language/country code to each possible URL
- Can I change my language to English?
- change only the theme language
- Theme’s text domain & language.PO file not working
- Install wordpress using composer in a specific language
- how to modify language in a child theme
- WordPress native thickbox language
- Creating a WP site in Cyrillic
- Hebrew Characters Have gone bad
- Can I use two languages together in WordPress
- Why my wordpress admin panel shows only English Language in setting?
- Adding Language Switcher in header , WP
- What programming language should I study to know WordPress very well?
- The option to change site language isn’t available
- My website change automatically lenguage in wordpress [closed]
- Unable to change default language in wordpress – it changes texts to my language, but default value remains en_US
- POLYLANG: Hide current language
- How can i auto translate titles from any language to english?
- Redirect user based on his language and country using WPML [closed]
- Unicode Problem
- wp language changed after upgrading to centos 5.8
- Is it possible to convert wordpress language files .mo to .po (and vice versa) in windows? [closed]
- How to Fix Mangled Thai Characters
- How do I fix errors regarding the language markup of my webpage?
- WPML – Hook when language is switched (change user language)
- How to change frontend language only
- What coding language to use?
- Japanese content on english page?
- Theme isn’t multilanguage ready. How can i still add a second language to the site?
- Language Pack not working
- How to change strings in the theme/core?
- qTranslate: Two languages on the same exact page
- How to identify WordPress language updates?
- Use specific language for comment section
- WordPress language problem
- Spanish site, some words translation still in English
- WordPress uses en_US by default instead of en-US for html lang
- WordPress Language Settings will not work for BBPress
- Can’t change language (only “English (United States)”)
- HTML inside __() or _e() language translation string
- Change language by clicking a button
- Override default WordPress core translation
- Best WordPress Multi-language Plugin? [closed]
- Change page template programmatically ?
- Open Source replacement for WPML? [closed]
- How to change the language for the front-end only?
- Rewrite Rule for Multilingual Website, Like qTranslate?
- How to get a translated string from a language other than the current one?
- How to keep plugin translations after updates?
- How can I uninstall a language?
- WPML with WP_Query serving up all 3 languages [closed]
- How do I change the value of lang=en-US
- [Plugin WPML] : How to create a translation of a post using the WPML API?
- gettext does not translate when called in ajax
- How do I change the language of only the login page?
- Different back-end language for different users?
- How to remove WPML Generator Meta Tag by theme’s functions.php (override plugin function)? [closed]
- Changing the language of a single page
- WPML: getting page title in different language
- Gettext details
- Edit plugin without hooks in functions.php
- Best pratice to make taxonomy terms translatable without changing slugs?
- What is better for wordpress performace?
- Custom Post Type With Different Views
- Rewrite url for custom post type
- How do I override a parent theme’s language files with a child theme?
- Checking current language in a function
- How to get posts in different language from WPML Plugin [closed]
- WPML Get url without outputting
- WPML : how to determine manually the language in which a given page is displayed
- Comments waiting but no comments found
- Getting a blog language (site “lang_id” field vs the WPLANG setting)
- How to set locale in ajax requests?
- Remove WPML’s home_url filter
- URL to download latest version of WP for other languages than English
- Need to give custom page template for each language in WPML
- What is the difference between the Package Language and the Site Language?
- Translate content, not instance, per-post
- Change content language for one page
- Setting the language of RSS feed
- `wp_set_script_translations` with `wp.i18n` does not return translated strings in simple plugin
- How To Write An Inner Join With WP Query
- How to write Hebrew characters?
- wp_pagenavi function parameters [closed]
- How to change language file used by _e function
- Make theme translatable for WPML
- How to trigger the core WPLANG to make automatically set a language when the theme is activated? [duplicate]
- WordPress admin not changing language
- Insights into WordPress Multi-Site, Domain Mapped, and Multilanguage site using WPML [closed]
- Filter the URL of next_posts_link & previous_posts_link
- Unable to display multiple post types in same query (WPML WP_Query)
- How to use load_plugin_textdomain from within a theme
- Multisite use language code as subdirectory
- How can override a add_filter of a plugin?
- Why isn’t WMPL correctly redirecting users based on browser language? [closed]
- Why load_textdomain work but not load_plugin_textdomain?
- WPML – Change the language of large number of posts
- Created pages not showing up in ‘All Pages’ list
- Language Translation is not working?