Read below about related content about wp+multiple+thumbnails, You can contact us to improve our contents and site quality

Read below about related content about wp+multiple+thumbnails, You can contact us to improve our contents and site quality

How To Display Recently Registered Users on WordPress

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

How To Filter caption-Shortcode in WordPress

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

WP Tutorial: Remove admin name in comments class

June 6th, 2010 By WP Tricks Posted in Tips

Batovasan, create nicely WordPress Tutorial. The reason create this tutorial is Small Security Hole on WordPress.

Remove admin name in comments class - Miranda Kerr Pictures

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

Deleted Post Revisions on WordPress and Meta Associated

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

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