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...
  • May 26, 2022
  • 0 Comments
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...
  • May 25, 2022
  • 0 Comments
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,...
  • May 24, 2022
  • 0 Comments
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...
  • May 24, 2022
  • 0 Comments
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...
  • May 22, 2022
  • 0 Comments