May 5th, 2010 By WP Tricks Posted in Tips
Now, Added New WordPress Theme much easier, there are so many ways to do this. The easiest method is Browse on your WordPress Dashboard Appearance Panel > Add New Themes and select some options field your query and do search the data from http://wordpress.org/extend/themes/.

Tricks for Upload WordPress Theme - 1
On our Example Below we put Search Term Prosumer, and the result displayed Prosumer Theme by WPGPL.com

Tricks for Upload WordPress Theme - 2
Read the rest of this entry »
Amazing Touch
Tags: How To, Themes, Tutorial, Upload
2 Comments
February 13th, 2010 By WP Tricks Posted in Tricks
Right now, many blogger uses WordPress for their Publishing platform, I will give some tips how to save space on your WordPress blog server. We will added little bit php code in our functions.php theme files. This code is Automatically uses resized images instead the originals size.
Write code to Automatically uses resized images insteaad the originals below
function replace_uploaded_image($image_data) {
// if there is no large image : return
if (!isset($image_data['sizes']['large'])) return $image_data;
// paths to the uploaded image and the large image
$upload_dir = wp_upload_dir();
$uploaded_image_location = $upload_dir['basedir'] . '/' .$image_data['file'];
$large_image_location = $upload_dir['path'] . '/'.$image_data['sizes']['large']['file'];
// delete the uploaded image
unlink($uploaded_image_location);
// rename the large image
rename($large_image_location,$uploaded_image_location);
// update image metadata and return them
$image_data['width'] = $image_data['sizes']['large']['width'];
$image_data['height'] = $image_data['sizes']['large']['height'];
unset($image_data['sizes']['large']);
return $image_data;
}
add_filter('wp_generate_attachment_metadata','replace_uploaded_image');
This code is doing automatically, so you didn’t needed any command anymore. Thanks for Serge Rauber for tricks about Save Space in WordPress blog server.
Amazing Touch
Tags: Automatically, Images, Sized
1 Comment
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 21st, 2009 By WP Tricks Posted in Tricks
If you need something different on your wordpress login screen, you should try wordpress tricks on this below. This tricks is Customize WordPress login logo without a plugin installed. This code was created by Rami, I got this info from WP Recipes.
Customize WordPress login logo without a plugin
Open your functions.php theme files and put this code
function my_custom_login_logo() {
echo '<style type="text/css">
h1 a { background-image:url('.get_bloginfo('template_directory').'/images/custom-login-logo.gif) !important; }
</style>';
}
add_action('login_head', 'my_custom_login_logo');
Please note, you need to change your custom logo url on this code and put the right logo name on your wordpress logo name.
Amazing Touch
Tags: Custom, How To, Logo, Tips, Tricks
No Comments