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

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

Download Gravatar Widget Plugin

April 5th, 2010 By WP Tricks Posted in Plugins

I love and really enjoy Gravatar, we can simply display our avatar or photos in our site and of course on WordPress. Download Gravatar Widget plugin for WordPress. This plugin is the easiest ways to diplay our gravatar on our sidebar or whatever widget. It’s look like WordPress.com.

The question is, why we recommended this Gravatar Widget Plugin? This is some reason we do it.

  • Email address of Gravatar taken from a user on the blog, or any address
  • Change size of Gravatar
  • Image alignment
  • URL for Gravatar (when someone clicks on the image)
  • Add arbitrary text to your widget
  • Fully localized

Read the rest of this entry »

Amazing Touch

Add Favicon on WordPress Blog

February 5th, 2010 By WP Tricks Posted in Tips

Website Favicon is small size (16×16) in .ico or image extension. Everybody blogging everybody need some unique design and content, some of them add some unique sign by add Favicon. There are several ways to add favicon on WordPress blog, we can add favicon by add some code on the header and upload your favicon into your themes folder. This code must be inserted on your and before

<link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/favicon.ico" />
<link rel="icon" type="image/png" href="<?php bloginfo('template_directory'); ?>/favicon.ico">

Read the rest of this entry »

Amazing Touch

Enable Shortlink in WordPress 3.0

May 2nd, 2010 By WP Tricks Posted in Tips

WordPress 3.0 built in with many many new featured, Integrated WordPress MU, New WordPress 3.0 Nav Menu, New Default Theme and many more. Shorlink feature is another nicely feature in WordPress 3.0. Default WordPress 3.0 shortink on you header front end will be come like this , but if you are using WordPress Stats, you’ll have WP.ME integration shortlink.

Enable WordPress Shortlink - Lizzy Caplan

Enable WordPress Shortlink - Lizzy Caplan

How to integrate Shortlink on our themes? You can use with 4 parameters

* @param string $text Optional The link text or HTML to be displayed.  Defaults to 'This is the short link.'
 * @param string $title Optional The tooltip for the link.  Must be sanitized.  Defaults to the sanitized post title.
 * @param string $before Optional HTML to display before the link.
 * @param string $before Optional HTML to display after the link.
 */
the_shortlink($text = '', $title = '', $before = '', $after = '')

Read the rest of this entry »

Amazing Touch

How To Disallow theme switching

April 28th, 2010 By WP Tricks Posted in Tricks

For some reason we need to Disallow theme switching in WordPress, why we need disable this featured? There are some reason why we should do it, such as Our WordPress powered site is Final Version, so we didn’t need to change the theme. Or The client “explored” the WordPress dashboard and “accidentally” switched the theme.

Disallow Theme Switcing WordPress

Disallow Theme Switcing WordPress


Read the rest of this entry »

Amazing Touch

Replace Content on Your WordPress using SQL

April 2nd, 2010 By WP Tricks Posted in Tricks

Like we all know, we can use SQL to replace or remove some content in our WordPress using phpMyAdmin, on this post I will show you How To Replace/Remove Content on Your WordPress using SQL. On this trick you can access trough phpMyAdmin on your server or using plugin WP-DBManager and you can direct access trough WordPress Admin panel.

Replace Content on Your WordPress using SQL

Replace Content on Your WordPress using SQL

The original source is come from Digging Into WordPress blog. Did you know what DigWP? is it wonderful WordPress books by Jeff Stars and Chris Coyier. Let’s move on, after you install DB manager or logging into phpMyAdmin, go to Run SQL interface and do this code

UPDATE wp_posts SET post_content = REPLACE ( post_content, 'nofollow ', '' );

Read the rest of this entry »

Amazing Touch