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

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

Add Facebook Share button on WordPress

January 27th, 2010 By WP Tricks Posted in Tricks

Did you know that, there are so many ways to add Facebook Share button on WordPress, I will tried to coverage some of them. The first method is using standard facebook share button, or we can said it Faebook Sharer Widget, there are two design for this sharer, mini and standard design. Advantages using this method, we can display total facebooker that share our content.

Facebook Share Button

Above Content Counter Button

<a name="fb_share" type="box_count" href="http://www.facebook.com/sharer.php">Share</a><script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script>

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

Added Custom Size on Your Post Thumbnails

August 3rd, 2010 By WP Tricks Posted in Tips

Chadcoleman created wonderful tutorials, how to added Custom Size Post Thumbnail. All we need to do only put some functions and use it whatever and whenever you want.

Custom Size Thumbnail - Avril Lavigne

Custom Size Thumbnail - Avril Lavigne

Added this code on your functions.php

if ( function_exists( 'add_theme_support' ) ) { // Added in 2.9
	add_theme_support( 'post-thumbnails' );
	set_post_thumbnail_size( 50, 50, true ); // Normal post thumbnails
	add_image_size( 'my-custom-size', 405, 180, true );
}

That it’s, you have new custom size for you thumbnail and you can call it with Post Thumbnail Tricks

Amazing Touch

WordPress 3.0: New Screenshot has come

March 11th, 2010 By WP Tricks Posted in News

Did you know? WordPress 3.0 will be the first integrated between WordPress MU and WordPress Standard? On WordPress 3.0 The developer said will be more and more featured available. And here we go some of avaliable featured screen shot. Enjoy it

Menu Settings on WordPress 3.0

WordPress 3 New Menu Settings

WordPress 3 New Menu Settings

New featured and nice one is Menu Setting, this menu is based on WooNav WooThemes Framework menu.
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