February 17th, 2010 By WP Tricks Posted in Tips
With little bit functions Display Recently Registered Users on WordPress with Gravatar is easy, we only need to write down little bit of code and the result will be displayed. This code is original resource from WP Recipes, we only tweak it little bit.

Display Registratered Users on WordPress with Gravatar
Read the rest of this entry »
Amazing Touch
Tags: API, Display Users, Registered, Users
5 Comments
December 29th, 2009 By WP Tricks Posted in Tricks
WordPress 2.5 and up added new featured that called wp-caption, this is nice custom, you can add extra text on your image post, beside that tricks you can explore more with this featured. My bigg problem is the default wp-caption is added extra inline style. This inline style added extra padding on the left and right on your wp-caption. If you wp-caption style is using standard method of wordpress, you didn’t need this tricks.
But if you theme design need another style, like disable padding on your wp-caption, you’ll need it. Let’s explore more details. Read the rest of this entry »
Amazing Touch
Tags: caption, fix, inline, shortcode, style, wp-caption
No Comments
March 4th, 2010 By WP Tricks Posted in Tricks
WordPress introduces some new featured that called Post Revisions, if we keep on edit our post content, Post Revision will be created, and this is not good if you have a lot of Post Revision it’s will increased your Databases sizes, on this post I will show you how to deleted post revision and meta associated to those revisions on WordPress. So you can save your Databases sized.

How To deleted post revisions and meta associated
The good things is, we will use SQL Queries to do this, you can use phpMyAdmin or install SQL Executionner Plugin and write down on your SQL Command Area
DELETE a,b,c FROM wp_posts a WHERE a.post_type = 'revision' LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id) LEFT JOIN wp_postmeta c ON (a.ID = c.post_id);
Read the rest of this entry »
Amazing Touch
Tags: Post Revisions, Query, SQL
No Comments
September 4th, 2010 By WP Tricks Posted in Tricks
WordPress 3.0 is a solid and powerful publishing platform, I like it and really enjoy using it. Using WordPress we can tweak on many area using Plugin or hard coded on our function. Now let’s get started made a Custom WordPress Log-In Screen, original source code on this tutorial made it as plugin. But I prefer to put it in our themes functions.php.

Create a Custom WordPress Log-In Screen - Indianapolis Padlock Girl
First, Open your functions.php and put on this code
function custom_wp_login () {
$url = get_option('template');
$url = $url . '/wp-login.css';
echo '<link rel="stylesheet" href="' . $url . '" type="text/css" media="screen"/>';
}
add_action ('login_head', 'custom_wp_login');
Read the rest of this entry »
Amazing Touch
Tags: Custom, Log-in Screen, wp-admin
No Comments
WP Tutorial: Remove admin name in comments class
June 6th, 2010 By WP Tricks Posted in TipsBatovasan, create nicely WordPress Tutorial. The reason create this tutorial is Small Security Hole on WordPress.
Remove admin name in comments class - Miranda Kerr Pictures
Like we all know by default, when the blog admin left a comment on his blog, WordPress use the name in the comment css class. This is useful for styling, but it will also let people know about your admin login name. This is not good, because some hacker or whatever we call it, can use this info to crack our WordPress site.
Read the rest of this entry »
Amazing Touch
Tags: Class, Comment, Hole, Hook, security
2 Comments