Thursday, November 19th, 2009
Just received a email from Edir to fixed the problem for WPMU Admin Interface Language. Open the file with editor or notepad, just make a mirror change. Take a look.
function admin_in_english_locale( $locale ) {
$lang = get_user_option(‘lang_id’, $user_id);
if ( !$lang ) {
return $locale; // Change HERE
}
if( WP_ADMIN === true ) {
if ( $lang ) {
$locale = [...]
Fixed WPMU Admin Interface Language
Posted in Plugins, WPMU, Wordpress, Wordpress Languages | No Comments »
Friday, November 13th, 2009
I just wrote a simple plugin for WordpressMU and Blogates. This is very simple plugin to automatically add a share badge to the blog’s articles. It’s allowed to enable Digg This and Facebook. You can get source code from the Wordpress MU Plugin. For Blogates user, you may found the option at your Discussion menu.
Facebook Share Badge Plugin
Tags: Digg, Facebook, Share Badge
Posted in Blogates | No Comments »