Read below about related content about include+thumb+rss+wordpress, You can contact us to improve our contents and site quality

Read below about related content about include+thumb+rss+wordpress, You can contact us to improve our contents and site quality

Automatically empty Trash

June 1st, 2010 By WP Tricks Posted in Tips

Today WordPress Tips is How To Automatically empty Trash in our WordPress. Like we all know, WordPress 2.9 introducing Trash system. This system is better handled for accidentals deleted some our content. Example we deleted our post, but for some reason we need to bring it back.

Automatically empty Trash - Candice Swanepoel

Automatically empty Trash - Candice Swanepoel

This also happen on comment and page, after we choose sent the content into trash, this content will not visible anymore. The Next question is, if we deleted to many content, the trash will be a lot of data. How to Automatically unneeded data? Follow this step by WP Recipes.
Read the rest of this entry »

Amazing Touch

Displaying Your Average RSS readers

August 2nd, 2010 By WP Tricks Posted in Tricks

Cats Who Blog write nice code, the function of this code is How to display your average feed and readers. I’ll re share this code for you and we hope you like it.

Displaying Your RSS readers - Diana vickers

Displaying Your RSS readers - Diana vickers

Before we started to code, we need to prepare text editor such as Coda, TextMate, Text Edit, Notepad++ or whatever you like. Then open your functions.php in your themes files and write down.

function get_average_readers($feed_id,$interval = 7){
	$today = date('Y-m-d', strtotime("now"));
	$ago = date('Y-m-d', strtotime("-".$interval." days"));
	$feed_url="https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=".$feed_id."&dates=".$ago.",".$today;
	$ch = curl_init();
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
	curl_setopt($ch, CURLOPT_URL, $feed_url);
	$data = curl_exec($ch);
	curl_close($ch);
	$xml = new SimpleXMLElement($data);
	$fb = $xml->feed->entry['circulation'];

	$nb = 0;
	foreach($xml->feed->children() as $circ){
		$nb += $circ['circulation'];
	}

	return round($nb/$interval);
}

Read the rest of this entry »

Amazing Touch

Automatically Shorten your Permalink using Bit.ly services

June 5th, 2010 By WP Tricks Posted in Tricks

WordPress Beginner show nicely tutorial about How To Automatically Shorten your Permalink using Bit.ly services. Why we need to shorten our URL? Shorten URL is good to share on many social web, social news, social media and social network such as Twitter, Facebook, Digg and many more..

Shorten your Permalink using Bit.ly - Marie Digby Photo

Shorten your Permalink using Bit.ly - Marie Digby Photo


Read the rest of this entry »

Amazing Touch

How to Fix readfile Problem on TimThumb

February 6th, 2010 By WP Tricks Posted in Tips

TimThumb is my favorite Auto Generated Thumbnail code ever seen, simple to use and work great in almost server. But there are readfile function problem on some server in TimThumb auto resized imaged on the fly, this script development by Darren Hoyt and Tweak by Ben Gillbanks, The problem that I currently have is readfile function that disabled by Hosting Server Administrator, they said disabled this function for security reason. So I googling to find out how to fix this problem.
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