It's not a secret anymore that WordPress search results is not very good. Sometimes it is not relevance. It is because WordPress search use "OR" sql query for search keyword. And i manage to make my own plugin to replace WordPress core search function.This is my very first plugin that i upload to WordPress plugin repository. I name it: Fast WordPress Search, it available on WordPress plugin repository. Fast WordPress Search is a replacement for WordPress core search feature, it is faster and … Read more...

Add Post Thumbnail Support For Your WordPress Themes
WordPress have post thumbnail support but it is not enabled by default. You need to explicitly enable it from your themes function. If you are WordPress themes designer and want to automate post thumbnail to be displayed in your posts list such as in homepage. And it become more popular nowadays.To add post thumbnail support in your themes just add these two lines in your themes functions.php:How to use it: 1. When creating a new post, and uploading a new image, now you have set image … Read more...

Solve 404 Error When Activating Plugin In WordPress
Today i found a weird issue when trying to activate a WordPress plugin. I always redirected to 404 Error Page (Not Found). This is the first time i met this error. In most case it is crash problem or PHP Fatal error, which is easily to fix. I tried to debug the Apache error log, Nginx error log and MySQL log. There were no error related to the issue.After doing debug for hours, i finally found the issue. It was a very slow query which is lead to exceed PHP max execution time. There are 3 … Read more...

DB Cache Reloaded Version 2.1 Not Compatible With WordPress 3.1
I have been using DB Cache Reloaded for a while now, it have a better performance than W3 Total Cache database cache. You may read my previous article Guide To Improve Your WordPress Blog Performance For Free. Now i have update my clone of this blog to use Wordpress 3.1 for testing purpose, at the beginning it was fine. But now it turns out that i have an issue with DB Cache Reloaded which is not compatible with WordPress 3.1.I dig a while and i found that it's not just me. There are some … Read more...

Are You Ready Upgrade To WordPress 3.1?
As i write this now, WordPress 3.1 stable release is just released to public. I have been following this WordPress 3.1 development since beta version. WordPress 3.1 or WordPress “Django” is named in honor of the jazz guitarist Django Reinhardt.[quote sourcename="WordPress.com" sourceurl="http://wordpress.org/news/2011/02/threeone/"]This release features a lightning fast redesigned linking workflow which makes it easy to link to your existing posts and pages, an admin bar so you’re … Read more...

[HowTo] Export All Your Visitors Comment Email In WordPress
In default WordPress comment your visitors need to input their email to leave a comment in your blog. And you can export those emails for whatever reasons you need. Probably you need to keep in touch, or just say hi, you name it. I just want to share a little trick to export those emails from database to a csv file.Here is the php code to do that:Or you can download it here.DISCLAIMER:This script is free to use and modified. And i don't responsible for any legal or ILEGAL activity … Read more...

Add Your Custom Logo To Your WordPress Dashboard
WordPress dashboard is WordPress backend to manage your blog. As WordPress can easily customize, you can add your custom logo and favicon in your WordPress Dashboard page. This can be done by adding a small code in your themes function.To add your custom logo into your Wordpress dashboard, add this code into your functions.php in your themes folder:You can do the same to add favicon to your Worpress Dashboard:So now you can customozie your WordPress website. For more tips please … Read more...

WordPress 3.0.4, KSES Library Patched
WordPress 3.0.4 released on Deecember 29, 2010 as the latest WordPress released in 2010. This released is a patch for XSS vulnerabilities in in the KSES library. And this release is considered as critical security update by WordPress.What is KSES? KSES is an HTML/XHTML filter written in PHP. It removes all unwanted HTML elements and attributes, and it also does several checks on attribute values. kses can be used to avoid Cross-Site Scripting (XSS). KSES is an open source project available … Read more...

SEO For Beginner Videos From WordPress and Google
SEO or search engine optimization is a technique or a process to increase your web visibility on search engine search results for a certain search keywords. As nowadays Google is widely used for searching anything on the net, SEO becomes more and more important if you want your websites have lot of visitors. As a website owners of course you want your website to be highly visited for any reasons.So i would like to share these 2 videos from Matt Cutts, a head of Google Web Spam team, … Read more...

WordPress 3.0.2 Hardening Security Released
WordPress 3.0.2 has been released on November 30, 2010 and ready for download. This released is fixes a moderate security issue that could allow a malicious Author-level user to gain further access to the site, addresses a handful of bugs, and provides some additional security enhancements.What have been fixed in this released:Remove pingback/trackback blogroll whitelisting feature as it can easily be abused. Fix canonical redirection for permalinks containing %category% with nested … Read more...