I have purchased a theme, and have created a child theme. In the website’s sidebar is a search form, with a default placeholder text I would like to change....
I’m using composer to automatically deploy wordpress on a ubuntu-server. Additionally, I need to install the german language pack. I learned that there are some guys who create composer-packages...
I’ve taken over a website targeting different markets using five language versions, each is setup as it’s own site within a multisite network. The main website mainly targets a...
I have a plugin to be translated. I have done following tasks: 1. Loaded the TextDomain $my_td = 'mysignup'; function my_signup_textdomain_init() { load_plugin_textdomain( $my_td, false, dirname( plugin_basename( __FILE__ )...
my site’s language is persian and persian is a right-to-left language. WordPress has a default installation package for this lang but for some cases like very bad translation for...
The function is_rtl() checks the blog language direction if it is LTR or RTL. public function is_rtl() { return 'rtl' == $this->text_direction; } But I couldn’t find where or...
My wpconfig.php file: define('WPLANG', 'tr_TR'); My Code: echo '<div id="wtdCustomizButtonDetailsPage"><a href="'. $getCustomPage .'?type=wtd_sc_designer&wtd_id='. $id .'">'. __('Customize', 'wctd') .'</a></div>'; My PO File Naming: Inside of my PO File: What am...
In my plugin’s init function load_textdomain( 'myplugin', ABS_PATH_TO_MO_FILE ); // OK load_plugin_textdomain( 'myplugin', false, ABS_PATH_TO_LANGS_DIR); // No effect echo( __('Test', 'myplugin') ); In the code above, the load_textdomain works,...
What is the simplest / easiest way to set up the language of the rss feed. Currently, that field in my feed xml is blank, it looks like this...
I installed WordPress in the subdiretory /de and activated multisite features. The main blog has the URL/path: mysite.de/de Now I want to add a second site for the English...