Wordpress

Are you a website developer or web designer looking for a powerful wordpress function to help you with your coding, PHP and learning needs?

1-2 minute reading

Simple Prefetch and Prerender

This is simple funtions to puts html5 Prerender and Prefetch link tag in your WordPress front page and post page to speed up your site. Its currently only supported in Firefox(Prefetch) and Google Chrome(Prerender). add_filter(‘next_post_rel_link’, ‘prefetch_next_post_rel’); add_filter(‘previous_post_rel_link’, ‘prefetch_previous_post_rel’); add_action(‘wp_head’, ‘front_page_prefetch’); /* Add Prefetch and Prenreder to Post Page */ if (!function_exists(‘prefetch_next_post_rel’)){ function prefetch_next_post_rel($link){ $link = […]

0-1 minute reading

Fixed WPMU Admin Interface Language

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. To make it works, it needs to return the actual value of $locale, used in wp-config.php, when it returns false, it returns to English in […]

WordPress Plugins Released

Just uploaded and released three wordpressMU and wordpress plugin to the Plugin Directory. WPMU Admin Interface Language Lets WPMU user to select language in backend administration panel. Multiple Twitter Widgets Allows for multiple twitter widgets to be displayed. Gravatar Favicon This plugin allows you to generate a gravatar favicon for your blog and admin logo […]

0-1 minute reading

Updated: WPMU Admin Languages

Previous version the option is per blog not per user, so is appear problem if user without blog. I changed option to per user,  now the option is per user. Thank you for your feedback. Download here: wpmu-admin-languages1.5.zip

0-1 minute reading

WPMU: Admin Language Plugin

WordPress MU allowed blogger to set up blog’s language but it’s also change the language of Admin Panel. I make a simple plugin that allowed user to set up different laguange in Admin Panel and blog interface. You have no need to install extra language pack, the plugin will use the wordpressMU existing language files.  […]