<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Creativz Lab &#187; WordPress</title>
	<atom:link href="http://creativeslab.net/category/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://creativeslab.net</link>
	<description>weblog for Developers &#38; Designers</description>
	<lastBuildDate>Sun, 18 Jul 2010 16:37:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Get Excerpt with Thumbnail Image &#8211; Wordpress Plug-in</title>
		<link>http://creativeslab.net/get-excerpt-with-thumb</link>
		<comments>http://creativeslab.net/get-excerpt-with-thumb#comments</comments>
		<pubDate>Fri, 17 Jul 2009 10:50:25 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[social web]]></category>
		<category><![CDATA[webtrends]]></category>
		<category><![CDATA[excerpt]]></category>
		<category><![CDATA[excerpt thugms]]></category>
		<category><![CDATA[thumb images]]></category>

		<guid isPermaLink="false">http://creativeslab.net/?p=303</guid>
		<description><![CDATA[<span style="padding-left: 20px">Get Excerpt with Thumbnail</span> images is a simple wordpress plugin. It gives thumbnail image, excerpt and title of Wordpress post, in the form PHP array. It is upto the developer how he can display these info on his web page.]]></description>
			<content:encoded><![CDATA[<p>
<span style="padding-left: 30px">Get Excerpt with Thumbnail</span> images is a simple wordpress plugin. It gives thumbnail image, excerpt and title of Wordpress post, in the form PHP array. It is upto the developer how he can display these info on his web page.
</p>
<p>
<span style="padding-left: 30px">Simple</span> to use Get Excerpts with Thumbnail plugin uses meta data of wordpress post, to retrieve thumbnail image. It also uses another plug-in named <a href="http://www.webspaceworks.com/resources/wordpress/44/">Content Extract</a> by <a href="http://www.webspaceworks.com">Rob Shumann</a>, to retrieve excerpt from POST. You need install Content Extract plugin before start working with this plugin.
</p>
<p>
<span style="padding-left: 30px">Inspite</span> of having found numerous plugins to get excerpts along with thumbnail images in Wordpress plugin directory. I have written this plugin to reduce number of requests that are made to MySQL database while fetching data.
</p>
<p>
== Installation ==<br />
Install <a href="http://www.webspaceworks.com/resources/wordpress/44/">Content Extract</a> by <a href="http://www.webspaceworks.com">Rob Shumann</a>, before installing this plugin.<br />
The plugin is simple to install:<br />
<br />
1. Download the zip file, from <a href="http://wordpress.org/extend/plugins/get-excerpt-with-thumbnail-images/">wordpress plugin directory</a><br />
2. Unpack the zip.<br />
3. Extract zip file and upload directory present in zip file to the `wp-content/plugins` directory on your WordPress installation.<br />
4. Activate plugin<br />
5. Go to Settings -&gt; Get Excerpt with Thumbnail page, to change configuration for the plug-in.
</p>
<p>
<strong>Configuration of Plug-in:</strong>
</p>
<p>
<span style="padding-left: 30px;">Goto Settings -&gt; Get Excerpt With Thumbnail link in your wordpress admin page.</span><br />
Following four elements need to be configured.<br />
1) Thumbnail CSS Class -&gt; this is .css class name to be used by this plug-in. By default, CSS class name is displayed as &#8216;imgstyle&#8217;, change this to your desired class name and make sure it is defined in .css file of your wordpress theme.<br />
2) More Text -&gt; link that appears next to excerpt to read full post.<br />
3) Post Length -&gt; Inspite of reading entire post to retrieve excerpt, plugin just reads number of characters entered by you in this field.<br />
Note: Once an excerpt is generated by this plugin, it will be stored in excerpt field of your wordpress post.<br />
4) Excerpt Length -&gt; Length of excerpt to be displayed.<br />
Note: Always make suer Post Length is greater than or equal to Excerpt Length.
</p>
<p>Sample usage of this plugin:</p>
<p>
<span style="padding-left: 30px"><br />
while (have_posts()) {<br />
       the_post();<br />
$data = getExcerptsWithThumbnail();<br />
echo  $data['post_thumbnail'] . &#8216;&lt;h5&gt;&#8217; . $data['post_title'] . &#8216;&lt;/h5&gt;&#8217;  .  $data['post_excerpt'] ;<br />
}<br />
</span>
</p>
<p>
<span style="padding-left: 30px;"><br />
In above code snippet,</span> you can see getExcerptsWithThumbnail() function returns an array.<br />
code snippet uses &lt;h5&gt; tag to display title of the post, you can use any of the style you want, for the presentation of thumbnail image along with excerpt.</p>
<p>
Screen shot of the plugin, when Thumbnail Image position is used as &#8216;float:left&#8217;
</p>
<p><img src="http://creativeslab.net/wp-content/uploads/2009/07/scree1-300x160.jpg" alt="scree1" width="300" height="160" class="aligncenter size-medium wp-image-310" /></p>
<p>
Screen shot of plugin, when Thumbnail Image position is used as &#8216;float:right&#8217;
</p>
<p><img src="http://creativeslab.net/wp-content/uploads/2009/07/scree2.jpg" alt="scree2" width="646" height="428" class="aligncenter size-full wp-image-311" /></p>
<p>
Get Excerpt with Thumbnail plugin just gives data, presentation of this data on theme pages is left to theme developer.
</p>
<p>
Reference: see category or tag pages on <a href="http://searchandhra.com">SearchAndhra.com</a> to check how this plugin is used.</p>
<p>
Please place your queries as comments to this post, so that i can reply to you.</p>
]]></content:encoded>
			<wfw:commentRss>http://creativeslab.net/get-excerpt-with-thumb/feed</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>Google on Twitter</title>
		<link>http://creativeslab.net/google-on-twitter</link>
		<comments>http://creativeslab.net/google-on-twitter#comments</comments>
		<pubDate>Mon, 13 Jul 2009 06:37:34 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[social web]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[Google accounts on twitter]]></category>
		<category><![CDATA[Google updates]]></category>

		<guid isPermaLink="false">http://creativeslab.net/?p=295</guid>
		<description><![CDATA[Twitter, the buzzword on web these days, is becoming a powerful tool day by day. Increasing popularity and the reach of Twitter on Web attracted Google, to list all its frequent updates on Twitter.]]></description>
			<content:encoded><![CDATA[<p>
Twitter, the buzzword on web these days, is becoming a powerful tool day by day. Increasing popularity and the reach of Twitter on Web attracted Google, to list all its frequent updates on Twitter.
</p>
<p>
Google opened acccounts on Twitter to let everybody know what is happening inside.
</p>
<p>
<strong>Following are Google accounts on Twitter.</strong><br />
</p>
<p><a href="http://twitter.com/Google">twitter.com/Google</a> &#8211; our central account<br />
<a href="http://twitter.com/Blogger">twitter.com/Blogger</a> &#8211; for Blogger fans<br />
<a href="http://twitter.com/Blogger">twitter.com/GoogleCalendar</a> &#8211; user tips &amp; updates<br />
<a href="http://twitter.com/GoogleImages">twitter.com/GoogleImages</a> &#8211; news, tips, tricks on our visual image search<br />
<a href="http://twitter.com/GoogleNews">twitter.com/GoogleNews</a> &#8211; latest headlines via Google News<br />
<a href="http://twitter.com/GoogleReader">twitter.com/GoogleReader</a> &#8211; from our feed reader team<br />
<a href="http://twitter.com/iGoogle">twitter.com/iGoogle</a> &#8211; news &amp; notes from Google&#8217;s personalized homepage<br />
<a href="http://twitter.com/GoogleStudents">twitter.com/GoogleStudents</a> &#8211; news of interest to students using Google<br />
<a href="http://twitter.com/YouTube">twitter.com/YouTube</a> &#8211; for YouTube fans<br />
<a href="http://twitter.com/YouTubeES">twitter.com/YouTubeES</a> &#8211; en Espanol<br />
<a href="http://twitter.com/GoogleAtWork">twitter.com/GoogleAtWork </a>- solutions for IT and workplace productivity
</p>
<p>
<strong>Geo-related</strong><br />
<a href="http://twitter.com/SketchUp">twitter.com/SketchUp</a> &#8211; Google SketchUp news<br />
<a href="http://twitter.com/3DWH">twitter.com/3DWH</a> &#8211; SketchUp&#8217;s 3D Warehouse<br />
<a href="http://twitter.com/Modelyourtown">twitter.com/Modelyourtown</a> &#8211; 3D modeling to build your favorite places<br />
<a href="http://twitter.com/EarthOutreach">twitter.com/EarthOutreach</a> &#8211; Earth &amp; Maps tools for nonprofits &amp; orgs<br />
<a href="http://twitter.com/GoogleMaps">twitter.com/GoogleMaps</a> &#8211; uses, tips, mashups<br />
<a href="http://twitter.com/GoogleSkyMap">twitter.com/GoogleSkyMap</a> -Android app for the night sky</p>
<p><strong>Ads-related </strong><br />
<a href="http://twitter.com/AdSense">twitter.com/AdSense</a> &#8211; for online publishers<br />
<a href="http://twitter.com/AdWordsHelper">twitter.com/AdWordsHelper</a> &#8211; looking out for AdWords questions and tech issues<br />
<a href="http://twitter.com/AdWordsProSarah">twitter.com/AdWordsProSarah</a> &#8211; Google Guide for AdWords Help Forum<br />
<a href="http://twitter.com/GoogleAnalytics">twitter.com/GoogleAnalytics</a> &#8211; insights for website effectiveness<br />
<a href="http://twitter.com/GoogleAdBuilder">twitter.com/GoogleAdBuilder</a> &#8211; re building display ads<br />
<a href="http://twitter.com/GoogleRetail">twitter.com/GoogleRetail</a> &#8211; for retail advertisers<br />
<a href="http://twitter.com/TechnologyUK">twitter.com/TechnologyUK</a> &#8211; for U.K. tech advertisers<br />
<a href="http://twitter.com/InsideAdWordsDE">twitter.com/InsideAdWordsDE</a> &#8211; for German AdWords customers<br />
<a href="http://twitter.com/GoogleAgencyDE">twitter.com/GoogleAgencyDE</a> &#8211; for German ad agencies<br />
<a href="http://twitter.com/AdSensePT">twitter.com/AdSensePT</a> &#8211; info for Portuguese-language publishers<br />
<a href="http://twitter.com/AdWordsRussia">twitter.com/AdWordsRussia</a> &#8211; AdWords news &amp; tips in Russian<br />
<a href="http://twitter.com/DentroDeAdWords">twitter.com/DentroDeAdWords</a> &#8211; Spanish updates from the Inside AdWords blog<br />
<a href="http://twitter.com/AdWordsAPI">twitter.com/AdWordsAPI</a> &#8211; AdWords API tips
</p>
<p>
<strong>Developer &amp; technical </strong><br />
<a href="http://twitter.com/GoogleResearch">twitter.com/GoogleResearch</a> &#8211; from our research scientists<br />
<a href="http://twitter.com/GoogleWMC">twitter.com/GoogleWMC</a> &#8211; Google Webmaster Central<br />
<a href="http://twitter.com/GoogleCode">twitter.com/GoogleCode</a> &#8211; latest updates for Google developer products<br />
<a href="http://twitter.com/GoogleData">twitter.com/GoogleData</a> &#8211; Data APIs provide a standard protocol for reading and writing web data<br />
<a href="http://twitter.com/app_engine">twitter.com/app_engine</a> &#8211; web apps run on Google infrastructure<br />
<a href="http://twitter.com/DataLiberation">twitter.com/DataLiberation</a> &#8211; our initiative for complete import/export of all data<br />
<a href="http://twitter.com/GoogleMapsAPI">twitter.com/GoogleMapsAPI</a> &#8211; about using Google Maps embedded in websites<br />
<a href="http://twitter.com/GoogleIO">twitter.com/GoogleIO</a> &#8211; Google&#8217;s largest annual developer event
</p>
<p>
<strong>Culture, People</strong><br />
<a href="http://twitter.com/googletalks">twitter.com/googletalks</a> &#8211; notes from our @Google speaker series<br />
<a href="http://twitter.com/googlejobs">twitter.com/googlejobs</a> &#8211; the voice of Google recruiters
</p>
<p>
<strong>Country or Region</strong><br />
<a href="http://twitter.com/googlearabia">twitter.com/googlearabia</a> &#8211; news from the Google Arabia Blog*<br />
<a href="http://twitter.com/googledownunder">twitter.com/googledownunder</a> &#8211; Google activities in Australia &amp; New Zealand<br />
<a href="http://twitter.com/GoogleDE">twitter.com/GoogleDE</a> &#8211; Google in Germany<br />
<a href="http://twitter.com/GoogleKorea">twitter.com/GoogleKorea </a>- News &amp; notes in Korean*<br />
<a href="http://twitter.com/GoogleLatAm">twitter.com/GoogleLatAm</a> &#8211; Latin America (en Espanol)<br />
<a href="http://twitter.com/GooglePolicyIt">twitter.com/GooglePolicyIt</a> &#8211; Notes on Google policy issues in Italy
</p>
<p>
So folks just follow these accounts on Twitter and get latest updates on google.</p>
]]></content:encoded>
			<wfw:commentRss>http://creativeslab.net/google-on-twitter/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress Plugin &#8211; List Latest Posts Titles</title>
		<link>http://creativeslab.net/wordpress-plugin-latest-posts-titles</link>
		<comments>http://creativeslab.net/wordpress-plugin-latest-posts-titles#comments</comments>
		<pubDate>Thu, 09 Jul 2009 08:49:49 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software Programming]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[social web]]></category>
		<category><![CDATA[webtrends]]></category>
		<category><![CDATA[latest posts]]></category>
		<category><![CDATA[Latest Posts title]]></category>
		<category><![CDATA[list latest post titles]]></category>
		<category><![CDATA[plugin wordpress]]></category>
		<category><![CDATA[Wordpress plugin]]></category>

		<guid isPermaLink="false">http://creativeslab.net/?p=292</guid>
		<description><![CDATA[Here is a latest plugin for Wordpress, called <strong><a href="http://wordpress.org/extend/plugins/latest-posts-titles/">Latest Posts Titles</a></strong>, that we have developed to bring all Titles of Latest Posts posted on a Wordpress blog.]]></description>
			<content:encoded><![CDATA[<p>
Here is a latest plugin for Wordpress, called <strong><a href="http://wordpress.org/extend/plugins/latest-posts-titles/">Latest Posts Titles</a></strong>, that we have developed to bring all Titles of Latest Posts posted on a Wordpress blog.
</p>
<p>
The requirement came when we are developing a theme for our site <a href="http://searchandhra.com"><strong>SearchAndhra.com</strong></a>, where in we need to display latest posts belongs to a specific category, in our home page and also in single post page. After checking various plugins available for WordPress we coded this plugin.
</p>
<p>
The main motive behind coding this plugin is to reduce number of queries fired against MySQL database, while listing titles of latest posts.
</p>
<p>
List Latest Posts Titles plugin uses only one query per call, to retrieve titles of latest posts belongs to a particular category.
</p>
<p>
<strong>You can download and install this List Latest Posts Titles plugin from</strong> <a href="http://wordpress.org/extend/plugins/latest-posts-titles/">WordPress Plugin Directory</a>.</p>
<p>
Post your comments if you require any further information regarding this plugin, we are ready to help you out.</p>
]]></content:encoded>
			<wfw:commentRss>http://creativeslab.net/wordpress-plugin-latest-posts-titles/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
