liorfrenkel
Forum Replies Created
-
OK, thanks a lot
I really appreciate it!hey Chip,
thanks a lot for the answers,by “a function that updates the core options”, you mean use this?
<?php update_option( 'blogname', $newvalue ); // Blog Title ?>if I do that I change the original strings,
I have both 4 options on the “general” options page:
1) title english
2) description english
3) title hebrew
4) description hebrew
with the help of the Settings API I added the 2 fields in hebrew.so after using the update_option functions I now have the 2 hebrew fields duplicated into the normal ‘blogname’ and ‘blogdescription’ options.
is there an array containing all the options that I could change on the fly?
I mean some array or variable that wordpress uses to read all the options from db into it and then uses it for wp_title for example?I build a multi language site (2 languages that the user can switch between),
for that I use the qTranslate plugin.
but it did not give me an option to translate the main title and description.is there a better way to build a multi language wordpress site?