<?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>Inspiration Bit &#187; wordpress</title>
	<atom:link href="http://www.inspirationbit.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.inspirationbit.com</link>
	<description>Knowledge comes from inspiration - one bit at a time</description>
	<lastBuildDate>Tue, 29 Sep 2009 18:48:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Meticulous Design: Image Styling</title>
		<link>http://www.inspirationbit.com/meticulous-design-image-styling/</link>
		<comments>http://www.inspirationbit.com/meticulous-design-image-styling/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 08:00:38 +0000</pubDate>
		<dc:creator>Vivien</dc:creator>
				<category><![CDATA[how-to]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[recommended]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.inspirationbit.com/?p=1019</guid>
		<description><![CDATA[It takes a bit of effort in styling the images to fit within the site's design without breaking the flow.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been said many times that images support the written word, add visual interest to articles and help to break down long posts by drawing the reader&#8217;s attention to pictures and the lines that precede and follow. Nowadays it&#8217;s not a problem to find images that support our posts with dozens of <a href="http://www.inspirationbit.com/8-finest-bits-of-free-stock-photo-sites/">free</a> and commercial stock photos online, but it takes a bit of effort in styling them to fit the site&#8217;s design without breaking the flow of sentences and paragraphs. I&#8217;ve seen many sites where the authors simply insert the images in different sizes, following each other like a zigzag, separated at times with a line or two.</p>
<p>The better approach would be to find out what&#8217;s the maximum allowable width for an image to fit nicely in your content area, and set/resize your images to that width. For example, on Inspiration Bit the safe width is 400px, so I try to set my images 400 px wide. There are cases though, when you don&#8217;t want or can&#8217;t end up with such a long image, then it&#8217;s best to set it to half or third of the maximum width and then align those images to the left or right of the content, letting the words to flow nicely and wrap around the image. Randa Clay has put together a very helpful tutorial on <a href="http://randaclay.com/how-to/how-to-style-images-in-your-blog-posts/">how to style images</a> and how to align them with CSS. Finally, if you&#8217;re <a href="http://creativecurio.com/2008/06/inspiration-from-the-past-and-present/">showcasing series of thumbnails</a>, then set up multiples of them in rows of the same height, and equal widths.</p>
<p>Of course you can also let your imagination fly and come up with unusual ways to present your images. A <a href="http://abriefmessage.com/">BriefMessage</a>, for examples, features a big image not only as a main element of each post, but the entire site as well. Displaying post&#8217;s metadata on top of the image seamlessly integrates the pictures with the overall design of the site. <a href="http://jasonsantamaria.com/articles/annotated/">Jason Santa Maria</a> aligned a huge image, 495 x 863 px to the left of the content on his recently re-designed site. </p>
<p>As part of my <a href="http://www.inspirationbit.com/meticulous-design-information-architecture/">meticulous</a> <a href="http://www.inspirationbit.com/meticulous-design-dramatic-headlines/">design series</a>, I now present you with eight different ways to style images in your site.</p>
<h3>1. CSS Drop Shadows</h3>
<p><a href="http://adsoftheworld.com/media/print/unicid_train"><img src="http://www.inspirationbit.com/wp-content/uploads/2008/06/adsoftheworld.jpg" alt="adsoftheworld" title="adsoftheworld" width="400" height="273" /></a></p>
<p><a href="http://adsoftheworld.com">Ads Of The World</a> is a site that&#8217;s all about visuals, so it&#8217;s not surprising that it pays attention to how the images are presented to viewers. All images here are wrapped in a frame with a drop shadow at the bottom. There is an extensive tutorial on A List Apart that teaches <a href="http://www.alistapart.com/articles/cssdrop2">how to add flexible CSS drop shadows</a> to your images. Ads Of The World has done it a bit differently: 3&#215;3 px shadow.gif is tiled horisontally, and applied to the A tag, while the image itself is styled with borders, background colour and padding. Notice how the colours change when you mouseover the image. </p>
<pre class="brush: css;">
.node-image .image a {
background:transparent url(images/shadow.gif) repeat-x;
}

.node-image .image img {
background:#E4EEF7;
border-color:#D9D9D9;
border-style:solid;
border-width:0pt 1px;
padding:12px;
}
.node-image .content a:hover img {
background:#FFE8CC;
}
</pre>
<h3>2. Background image</h3>
<p><a href="http://www.simplebits.com/notebook/2008/06/05/embossable.html"><img src="http://www.inspirationbit.com/wp-content/uploads/2008/06/simplebits.jpg" alt="simplebits" title="simplebits" width="400" height="171" /></a></p>
<p>SimpleBits approach is very simple yet effective and expandable: it&#8217;s using a tiled background image and padded picture. SimpleBits&#8217; choice of the background image is hardly noticeable, looking more like a solid colour, however it doesn&#8217;t mean that you can&#8217;t experiment with more daring images to be used as a background.</p>
<pre class="brush: css;">
div.photo img {
background:#E0E0D5 url(../img/bitstream/noise-earth.gif) repeat;
padding:1em;
width:49em;
}
</pre>
<h3>3. background+border-top/bottom+padding</h3>
<p><a href="http://nitram-nunca.com/"><img src="http://www.inspirationbit.com/wp-content/uploads/2008/06/nitram-nunca.jpg" alt="nitram-nunca" title="nitram-nunca" width="400" height="158" /></a></p>
<p><a href="http://nitram-nunca.com/">Nitram+nunca</a> has come up with an interesting touch with its presentation of images: it&#8217;s displaying only the top and bottom borders in addition to the background colour and padding around the image. Different colours for the two borders make the pictures look embossed to the site.</p>
<pre class="brush: css;">
.main .entry img {
background:#D9CFBD;
border-bottom:1px solid #FEFEFD;
border-top:1px solid #C9C5B3;
padding:5px 6px 6px;
}
</pre>
<h3>4. Decorative Image Captions</h3>
<p><a href="http://designintellection.com/photos/"><img src="http://www.inspirationbit.com/wp-content/uploads/2008/06/designintellection.jpg" alt="designintellection" title="designintellection" width="400" height="112" /></a></p>
<p><a href="http://designintellection.com/">DesignIntellection</a> initiates a new way in using image captions with a semi-transparent layer at the top of the image. First of all, the DIV container with the class <em>&#8220;post-image&#8221;</em> is set with a <em>position: relative</em>, which allows an absolute positioning with the <em>&#8220;title-date&#8221;</em> span inside that DIV.</p>
<pre class="brush: css;">
.post-image {
position: relative;
}

.post-image span.title-date {
background:transparent url(images/tnsp-black-65.png) repeat scroll 0pt 50%;
color:#FFFFFF;
font: 11px/16px Helvetica,Arial,sans-serif;
margin:5px 0pt 0pt;
padding:5px 10px 5px 74px;
position:absolute;
left:0pt;
top:0pt;
}

#main .post-image p img {
border:5px solid #E7E2DF;
}
</pre>
<h3>5. Dashed borders</h3>
<p><a href="http://www.antiphrasis.com/"><img src="http://www.inspirationbit.com/wp-content/uploads/2008/06/antiphrasis.jpg" alt="antiphrasis" title="antiphrasis" width="400" height="145" /></a></p>
<p>Image styling on Antiphrasis is not at all complicated, but combined with a few delicate details it looks very effective. The images itself are simply padded with a dashed border, but because the majority of pictures there are transparent PNGs, they look very impressive, especially when you mouseover them  and the background &#8220;flashes&#8221; at you with a different colour and the light dashed border turns orange and solid.</p>
<pre class="brush: css;">
.article-img {
border:1px dashed #9EA8A8;
padding:10px;
}

.article-img-link:hover img {
background-color:#506262;
border:1px solid #F07800;
}
</pre>
<p><a href="http://www.cameronmoll.com/"><br />
<img src="http://www.inspirationbit.com/wp-content/uploads/2008/06/cameronmoll.jpg" alt="cameronmoll" title="cameronmoll" width="400" height="217" /></a></p>
<p><a href="http://www.cameronmoll.com/">Cameron Moll</a> also uses a dashed border on his site, with no frills — just a padded image on a white background.</p>
<pre class="brush: css;">
.picC {
background:#FFFFFF;
border:1px dashed #999999;
padding:4px;
}
</pre>
<h3>6. Book-like image captions</h3>
<p><a href="http://warpspire.com/marks/red-crown-studio/"><img src="http://www.inspirationbit.com/wp-content/uploads/2008/06/warpspire.jpg" alt="warpspire" title="warpspire" width="400" height="99" /></a></p>
<p>Kyle is using various techniques to style different kinds of images on Warpspire: featured post image is prominently displayed in the site&#8217;s header; some images in the posts have no accompanying captions, while others appear with book-like captions.</p>
<pre class="brush: css;">
.figure {
background:#F5F5F5;
border:1px solid #DDDDDD;
line-height:0pt;
margin:19px 0pt 1em;
padding:2px;
text-align:center;
}

.figure small {
background:#DDDDDD;
color:#666666;
display:block;
font-size:10px;
line-height:12px;
margin:2px 0pt 0pt;
padding:5px 7px;
text-align:left;
}
</pre>
<p>You can get inspired by more images with captions over at <a href="http://www.smileycat.com/design_elements/image_captions/">Elements Of Design</a>.</p>
<h3>7. Images with Fixed Backgrounds</h3>
<p><a href="http://www.carnivaleduvin.com/2008/about/"><img src="http://www.inspirationbit.com/wp-content/uploads/2008/06/carnivaleduvin.jpg" alt="carnivaleduvin" title="carnivaleduvin" width="400" height="184" /></a></p>
<p>If you can prepare and always resize your images with the same width, you could apply a fixed fancy background image underneath. <a href="http://www.carnivaleduvin.com/">CarnivaleDuVin</a>, for example, is showcasing the images in an ornate frame.</p>
<pre class="brush: css;">
.entry img.hdr {
background:transparent url(../images/hdr-img.jpg) no-repeat;
margin:-8px 0pt 0pt -12px;
padding:24px 25px;
}
</pre>
<p><a href="http://ernesthemingwaycollection.com/"><br />
The Ernest Hemingway Collection</a> on the other hand is featuring pictures framed like photos with shadows. </p>
<p>Recently <a href="http://www.webdesignerwall.com">Nick La</a> posted a comprehensive tutorial on how to style images with CSS and set them within some very impressive frames. </p>
<p><a href="http://www.webdesignerwall.com/tutorials/css-decorative-gallery/"><img src="http://www.inspirationbit.com/wp-content/uploads/2008/06/wdw.jpg" alt="wdw" title="wdw" width="400" height="189" /></a></p>
<h3>8. Digital Image Editing</h3>
<p>You can also go with a completely different route and style your images not with CSS but in any digital editing image software that you can get your hands on.</p>
<p><a href="http://justcreativedesign.com/"><img src="http://www.inspirationbit.com/wp-content/uploads/2008/06/justcreativedesign.jpg" alt="justcreativedesign" title="justcreativedesign" width="400" height="107" /></a></p>
<p><a href="http://justcreativedesign.com/">Jacob Caas</a> cleverly crops all main post images in a shape of a pencil, similar to the one in his logo. <a href="http://ilovetypography.com/">John Boardley</a> beautifully decorates the images on iLoveTypography with white on black captions. </p>
<p><a href="http://ilovetypography.com/"><img src="http://www.inspirationbit.com/wp-content/uploads/2008/06/ilt.jpg" alt="ilt" title="ilt" width="400" height="213" /></a></p>
<p>Looking at all those original ideas helped me to choose how I would be styling images on Inspiration Bit after the re-design. Have you seen some other interesting ways in formatting images on the Web? </p>
]]></content:encoded>
			<wfw:commentRss>http://www.inspirationbit.com/meticulous-design-image-styling/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>WP Vivtiger Image Resizer</title>
		<link>http://www.inspirationbit.com/wp-vivtiger-image-resizer/</link>
		<comments>http://www.inspirationbit.com/wp-vivtiger-image-resizer/#comments</comments>
		<pubDate>Thu, 04 Oct 2007 04:39:31 +0000</pubDate>
		<dc:creator>Vivien</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.inspirationbit.com/wp-vivtiger-image-resizer/</guid>
		<description><![CDATA[Back in April, during the Reader Appreciation Week, I&#8217;ve participated in a contest hosted by Ronald Huereca  on his blog Ronalfy, and won a fabulous prize for giving two suggestions on how to improve his website. The prize was any non-monetary thing I wish for, and since Ronald is so great at writing plugins [...]]]></description>
			<content:encoded><![CDATA[<p>Back in April, during the <a href="http://www.raproject.com/raw2007/announcing-reader-appreciation-week-raw-2007/">Reader Appreciation Week</a>, I&#8217;ve participated in a contest hosted by Ronald Huereca  on his blog Ronalfy, and <a href="http://www.ronalfy.com/2007/04/12/prize-4-winner-reader-appreciation-week/">won a fabulous prize</a> for giving two suggestions on how to improve his website. The prize was any non-monetary thing I wish for, and since Ronald is so great at <a href="http://www.raproject.com/wordpress/wp-ajax-edit-comments/">writing plugins for Wordpress</a>, I <a href="http://www.ronalfy.com/2007/04/08/fourth-reader-appreciation-week-prize-a#comment-2825">wished for a custom plugin</a> that would &#8220;proportionally resize my uploaded images to a pre-defined size, and link them to the original image in a popup window&#8221;.</p>
<p>Last month Ronald has completed the work on the plugin, calling it WP Vivtiger Image Resizer and publicly (with my permission, of course) releasing it on <a href="http://wordpress.org/extend/plugins/vivtiger-image-resizer/">Wordpress.org</a>. The plugin has been tested on all major browsers and used with Wordpress versions from v. 2.1 to the latest 2.3.</p>
<h3>What is the Vivtiger Image Resizer?</h3>
<p>The Image Resizer allows you to use the existing WordPress attachment system to upload, crop, and resize an image easily.<br />
The plugin was designed to be simple and straight forward and is a bare-featured image-upload/crop/resize solution.</p>
<h3>Who is Vivtiger Image Resizer For?</h3>
<p>Vivtiger Image Resizer is for those who take a lot of screenshots and like to include them in posts. The plugin allows you to specify a maximum width and resize images based on the maximum width to fit the layout of your blog. There is also an option to link the cropped image to the bigger version in a new browser window.</p>
<h3>Features</h3>
<p>Vivtiger Image Resizer has the following features:</p>
<ul>
<li>Set the maximum width for images on your blog.</li>
<li>Assign a crop ratio for resized images.</li>
<li>Use the existing WordPress attachment system. There&#8217;s no need to learn a different system.</li>
<li>Images are cropped and resized using AJAX.</li>
<li>Large images can be inserted into a post with a single click.</li>
<li>Large images can be launched in a new window.</li>
<li>Numerous admin panel options.</li>
</ul>
<h3>Download</h3>
<p>This page is the official home of the WP Vivtiger Image Resizer plugin. Please, download the plugin file <a href="http://downloads.wordpress.org/plugin/vivtiger-image-resizer.1.0.2.0.zip">vivtiger-image-resizer.1.0.2.0.zip</a></p>
<h3>Installation</h3>
<p>Installation is simple. Just follow these steps:</p>
<ul>
<li>Copy the “vivtiger-image-resizer” folder into your /wp_content/plugins/ directory.</li>
<li>Activate the plugin in the Plugins administration panel.</li>
<li>Customize the plugin in the Options section</li>
</ul>
<h3>Screenshots</h3>
<p><a href="http://www.inspirationbit.com/wp-content/uploads/2007/10/wpvivtiger_options.jpg"><img src='http://www.inspirationbit.com/wp-content/uploads/2007/10/wpvivtiger_options_sm.jpg' alt='Vancouver - Crop ratio On' border='0' /></a><br />
<em>WP Vivtiger Image Resizer plugin Options panel</em></p>
<p><a href="http://www.inspirationbit.com/wp-content/uploads/2007/10/crop_on.jpg"><img src='http://www.inspirationbit.com/wp-content/uploads/2007/10/crop_on_sm.jpg' alt='Vancouver - Crop ratio On' border='0' /></a><br />
<em>The image is to be cropped with the Crop Ratio turned On.</em></p>
<p><a href="http://www.inspirationbit.com/wp-content/uploads/2007/10/crop_on_noinsert.jpg"><img src='http://www.inspirationbit.com/wp-content/uploads/2007/10/crop_on_noinsert_sm.jpg' alt='Vancouver - Crop ratio On - No link' border='0' /></a><br />
<em>The image is already cropped with the Crop Ratio turned On, with no link to the larger image.</em></p>
<p><a href="http://www.inspirationbit.com/wp-content/uploads/2007/10/crop_on_insert.jpg"><img src='http://www.inspirationbit.com/wp-content/uploads/2007/10/crop_on_insert_sm.jpg' alt='Vancouver - Crop ratio On - Link' border='0' /></a><br />
<em>The image is already cropped with the Crop Ratio turned On, with the link to the larger image.</em></p>
<p><a href="http://www.inspirationbit.com/wp-content/uploads/2007/10/crop_off_insert.jpg"><img src='http://www.inspirationbit.com/wp-content/uploads/2007/10/crop_off_insert_sm.jpg' alt='Vancouver - Crop ratio On' border='0' /></a><br />
<em>The image is already cropped with the Crop Ratio turned Off, with the link to the larger image.</em></p>
<h3>Demonstration</h3>
<p>For a demonstration, please view the following videos, courtesy of Ronald Huereca:</p>
<ul>
<li><a href="http://svn.wp-plugins.org/vivtiger-image-resizer/trunk/vivtiger-crop_ratio.avi">Cropping with Crop Ratio On</a></li>
<li><a href="http://svn.wp-plugins.org/vivtiger-image-resizer/trunk/vivtiger-crop_ratio_off.avi">Cropping with Crop Ratio Off</a></li>
</ul>
<h3>FAQ</h3>
<h4>How Does the Plugin Work?</h4>
<p>The plugin works based on the maximum width set in the admin panel. If you upload an image larger than the maximum width, a crop overlay will show up on the attached image. You can then crop the image based on your preferences in the admin panel.</p>
<p>If the cropped image is greater than the maximum width, then an option will show up allowing you to insert a link to the larger image.</p>
<h4>What Happens When I Crop an Image?</h4>
<p>The image will be cropped according to the red-box selection. If the selection is larger than the maximum width you have selected, the image will then be resized to the maximum width.</p>
<h4>What browsers does this plugin work for?</h4>
<p>This plugin has been tested on Firefox 2.0, Opera 9, and IE 7.</p>
<h4>Where can I find support for this plugin?</h4>
<p>This plugin is AS IS. This was a custom plugin for Inspiration Bit, and I agreed to have it publicly released. It is highly unlikely any future updates to this plugin will be released.</p>
<hr />
Hope you&#8217;ll find this plugin useful. Please, do <a href="http://www.inspirationbit.com/contact/">let me know</a> what you think about it. Many thanks to <a href="http://www.ronalfy.com">Ronald</a> for creating this wonderful plugin.</p>
<h2>Updated version of Vivtiger Image Resizer plugin</h2>
<p>A new version of the plugin has just been released by Ronald. Now you can <a href="http://downloads.wordpress.org/plugin/vivtiger-image-resizer.1.1.5.0.zip">Download version 1.1.5.0</a>. Thew latest version of this plugin allows you to  override crop options per image upload. This is especially useful if you need to insert different image sizes to your article.</p>
<p>Here are two screenshots with the new features:</p>
<p><a href='http://www.inspirationbit.com/wp-content/uploads/2007/10/crop_off.jpg' title='Crop Ratio - off, customized later'><img src='http://www.inspirationbit.com/wp-content/uploads/2007/10/crop_off_sm.jpg' alt='Crop Ratio - off, customized later' /></a><br />
Crop Ratio &#8211; off, customized later</p>
<p><a href='http://www.inspirationbit.com/wp-content/uploads/2007/10/crop_off_link.jpg' title='Crop Ratio - off, customized later, with a link'><img src='http://www.inspirationbit.com/wp-content/uploads/2007/10/crop_off_link_sm.jpg' alt='Crop Ratio - off, customized later, with a link' /></a><br />
Crop Ratio &#8211; off, customized later, with a link</p>
<p>Many thanks to <a href="http://www.ronalfy.com">Ronald</a> for adding these new helpful features to the plugin. Let me know, please, how the new version works for you.</p>
<h2>UPDATE:</h2>
<p>There is an updated <a href="http://downloads.wordpress.org/plugin/vivtiger-image-resizer.1.2.1.0.zip">version 1.21</a> of WP Vivtiger Image Resizer Plugin  is available for download from <a href="http://wordpress.org/extend/plugins/vivtiger-image-resizer/">Wordpress.org</a> that fixes the most common problems users were having with the plugin. So be sure to update your plugin.</p>
<p>Also, the plugin&#8217;s author &#8211; Ronald Huereca &#8211; has kindly added the support to WP Vivtiger Image Resizer plugin to his site: <a href="http://www.raproject.com/support/">RA Project Support </a>. If you have any questions regarding the plugin, you can submit your requests at RA Project Support page. <em>Please, consider a donation to Ronald for all his hard work and dedication to this plugin, when sending your requests.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.inspirationbit.com/wp-vivtiger-image-resizer/feed/</wfw:commentRss>
		<slash:comments>94</slash:comments>
		</item>
		<item>
		<title>Tired Of Spam &#8211; Activate The Spam Stopper</title>
		<link>http://www.inspirationbit.com/tired-of-spam-activate-the-spam-stopper/</link>
		<comments>http://www.inspirationbit.com/tired-of-spam-activate-the-spam-stopper/#comments</comments>
		<pubDate>Mon, 16 Apr 2007 16:00:33 +0000</pubDate>
		<dc:creator>Vivien</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.inspirationbit.com/tired-of-spam-activate-the-spam-stopper/</guid>
		<description><![CDATA[The very first plugin that I&#8217;ve activated on my blog was Akismet. During the first month or so I wasn&#8217;t sure if it was actually working or not, since it didn&#8217;t catch any spams, although I was already getting comments on my blog. Several weeks later it caught the first spam comment on my blog. [...]]]></description>
			<content:encoded><![CDATA[<p>The very first plugin that I&#8217;ve activated on my blog was <a href="http://akismet.com/">Akismet</a>. During the first month or so I wasn&#8217;t sure if it was actually working or not, since it didn&#8217;t catch any spams, although I was already getting comments on my blog. Several weeks later it caught the first spam comment on my blog. </p>
<p>From then on the more people visited my blog, the more spam was getting caught by Akismet. It was getting worse every day. Last week I was receiving 40-50 spams daily. I got tired of deleting all those spam comments from Akismet Spam.</p>
<p>Until finally, I&#8217;ve installed a new plugin to keep the spam under control &#8211; <a href="http://blue-anvil.com/archives/wordpress-comment-spam-stopper-plugin">Wordpress Comment Spam Stopper plugin</a>. The plugin adds a captcha to my Comments form, asking a simple question that only humans would know the answer to, not some alien spammers. Thanks to <a href="http://www.ronalfy.com">Ronald</a> for recommending it. Since activating it yesterday Akismet has managed to catch only 1 spam comment &#8211; that&#8217;s a big difference, I think.</p>
<p>Are you keeping spammers under control on your blogs? </p>
]]></content:encoded>
			<wfw:commentRss>http://www.inspirationbit.com/tired-of-spam-activate-the-spam-stopper/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>New Invaluable Wordpress Plugin &#8211; WP Ajax Edit Comments</title>
		<link>http://www.inspirationbit.com/new-invaluable-wordpress-plugin-wp-ajax-edit-comments/</link>
		<comments>http://www.inspirationbit.com/new-invaluable-wordpress-plugin-wp-ajax-edit-comments/#comments</comments>
		<pubDate>Fri, 06 Apr 2007 05:51:00 +0000</pubDate>
		<dc:creator>Vivien</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.inspirationbit.com/new-invaluable-wordpress-plugin-wp-ajax-edit-comments/</guid>
		<description><![CDATA[There are many interesting blogs that we all visit and sometimes comment on. Sometimes when I was too eager to quickly submit my comment and move on to another post, or another blog, or get back to my work, I wasn&#8217;t proofreading my comment and only afterwards noticing a typo on my already published comment. [...]]]></description>
			<content:encoded><![CDATA[<p>There are many interesting blogs that we all visit and sometimes comment on. Sometimes when I was too eager to quickly submit my comment and move on to another post, or another blog, or get back to my work, I wasn&#8217;t proofreading my comment and only afterwards noticing a typo on my already published comment. Or sometimes I would comment on a blog, and after submitting it I wish I could go back and re-phrase my comment, but it was too late to correct the mistakes. That&#8217;s when I was hoping that there was an option to edit the comment on all these blogs.</p>
<p>Thanks to Ronald from Reader Appreciation Project my wish came true and today a new invaluable Wordpress plugin has been released &#8211; <a href="http://www.raproject.com/wordpress/plugins/wp-ajax-edit-comments/">WP Ajax Edit Comments</a></p>
<p>Those who were commenting on my blog this week must&#8217;ve noticed the ability to edit your comments here. Unknowingly you were all alpha and beta testers of this new plugin. Since I didn&#8217;t receive any complaints from my readers, looks like the testing of this plugin was successful. Now you are presented with a chance to install this indispensable new Wordpress plugin on your blog.</p>
<p>You can find download and installation instructions at <a href="http://www.raproject.com/wordpress/plugins/wp-ajax-edit-comments/">RA Project</a>, along with some screenshots. It is very easy to install and set up WP Ajax Edit Comments on your blog. So, give it a try and let me know what you think of it. I find it extremely handy and valuable.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.inspirationbit.com/new-invaluable-wordpress-plugin-wp-ajax-edit-comments/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>The Best Wordpress Plugin Ever</title>
		<link>http://www.inspirationbit.com/the-best-wordpress-plugin-ever/</link>
		<comments>http://www.inspirationbit.com/the-best-wordpress-plugin-ever/#comments</comments>
		<pubDate>Mon, 02 Apr 2007 00:04:26 +0000</pubDate>
		<dc:creator>Vivien</dc:creator>
				<category><![CDATA[humour]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.inspirationbit.com/the-best-wordpress-plugin-ever/</guid>
		<description><![CDATA[Finally, after so many months of fruitless searches for a Wordpress plugin that does absolutely nothing and what&#8217;s more important doesn&#8217;t require us, bloggers, to do anything, it has been released today. Here are some of the best features of this plugin:

no configuration is needed &#8211; simply unzip the download file and copy to your [...]]]></description>
			<content:encoded><![CDATA[<p>Finally, after so many months of fruitless searches for a Wordpress plugin that does absolutely nothing and what&#8217;s more important doesn&#8217;t require us, bloggers, to do anything, it has been released today. Here are some of the best features of this plugin:</p>
<ul>
<li>no configuration is needed &#8211; simply unzip the download file and copy to your plugins folder</li>
<li>no template code tweaking is required</li>
<li>no worries that with a release of a new Wordpress version this plugin becomes incompatible</li>
<li>the latest stable version that would never need to be updated</li>
<li>comes with some top-notch security features. No more worries about various security vulnerabilities like cross-site scripting and SQL injection.</li>
<li>doesn&#8217;t take up much space on your server (less than 1 Kb) and doesn&#8217;t eat your server&#8217;s and database resources</li>
<li>it is compatible not just with all future and past Wordpress versions, but also with all other blogging platforms that are available on the internet or would be created in future.</li>
</ul>
<p>Drum Roll Please, let me introduce the best plugin ever &#8211; <a href="http://www.raproject.com/wordpress/do-nothing/">WP Do Nothing plugin</a>. Hurry up over to RA Project for download and let me know what you think of it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.inspirationbit.com/the-best-wordpress-plugin-ever/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Another Handy Wordpress plugin</title>
		<link>http://www.inspirationbit.com/another-handy-wordpress-plugin/</link>
		<comments>http://www.inspirationbit.com/another-handy-wordpress-plugin/#comments</comments>
		<pubDate>Sun, 04 Mar 2007 08:21:09 +0000</pubDate>
		<dc:creator>Vivien</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.inspirationbit.com/another-handy-wordpress-plugin/</guid>
		<description><![CDATA[Today I realized that I forgot to mention another plugin in my Handy Wordpress Plugins list. A while ago I wrote how to create teasers with a More quick tag in my post How to tease your blog readers and gain more page views. But after upgrading to Wordpress 2.1 I&#8217;ve noticed that the posts [...]]]></description>
			<content:encoded><![CDATA[<p>Today I realized that I forgot to mention another plugin in my <a href="http://www.inspirationbit.com/handy-wordpress-plugins/">Handy Wordpress Plugins</a> list. A while ago I wrote how to create teasers with a More quick tag in my post <a href="http://www.inspirationbit.com/how-to-tease-your-blog-readers-and-gain-more-page-views/">How to tease your blog readers and gain more page views</a>. But after upgrading to Wordpress 2.1 I&#8217;ve noticed that the posts in my feeds are not displaying in full anymore, even though I&#8217;ve specified to use a Full feed in my RSS feeds setup. It turned out that the More link is activated in my full feeds as well, thus not displaying the entire posts anymore.<br />
I have searched all over the internet for any advice on how to fix this problem, but to no avail.</p>
<p>Until one day, Ronald from Devlounge, <a href="http://www.devlounge.net/articles/for-the-love-of-the-web-please-use-full-content-feeds">replied to my question</a> about this problem and directed me to a <a href="http://cavemonkey50.com/code/full-feed/">Full Text Feed</a> plugin on cavemonkey50.com. I&#8217;ve quickly installed this plugin and my posts are displayed as full feeds. Many thanks to the 18 year old author of this plugin &#8211; Ronald Heft.</p>
<p>I wonder why starting from Wordpress 2.1 it&#8217;s breaking an RSS feed at the More tag by default. This contradicts to the understanding of a Full feed. If I wanted to break my posts in RSS, I would&#8217;ve set up partial feeds. I think everyone knows now that it&#8217;s better to use full feeds in RSS, nobody likes to read partial RSS feeds.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.inspirationbit.com/another-handy-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Secret Truth About The Plugins Security</title>
		<link>http://www.inspirationbit.com/the-secret-truth-about-the-plugins-security/</link>
		<comments>http://www.inspirationbit.com/the-secret-truth-about-the-plugins-security/#comments</comments>
		<pubDate>Sat, 03 Mar 2007 00:55:14 +0000</pubDate>
		<dc:creator>Vivien</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.inspirationbit.com/the-secret-truth-about-the-plugins-security/</guid>
		<description><![CDATA[Do you want to know a Secret about Wordpress plugins (actually about any plugins)? Well, remember the last two questions in my post with 8 Questions to Ask about Wordpress Plugins? Yes, I&#8217;m talking about the Security vulnerabilities in Plugins and whether or not we can trust plugin writers and believe that they address all [...]]]></description>
			<content:encoded><![CDATA[<p>Do you want to know a Secret about Wordpress plugins (actually about any plugins)? Well, remember the last two questions in my post with <a href="http://www.inspirationbit.com/8-questions-to-ask-about-wordpress-plugins/">8 Questions to Ask about Wordpress Plugins</a>? Yes, I&#8217;m talking about the Security vulnerabilities in Plugins and whether or not we can trust plugin writers and believe that they address all those issues in their code. Most people never question the code in plugins because they&#8217;re not programmers, don&#8217;t know PHP and even if they might have some reservations about the security levels in plugins they don&#8217;t know how to test them.</p>
<p>There are different kind of security vulnerabilities, but the most common of them are <a href="http://en.wikipedia.org/wiki/XSS">XSS</a> (Cross site scripting) and <a href="http://en.wikipedia.org/wiki/Sql_injection">SQL injections</a>. In both cases various flaws and weakness in a system are discovered allowing an attacker to inject a malicious code into a website or a database.</p>
<p>In most cases any form on a website that asks for user&#8217;s input and is not properly validating the input   in the back-end presents a perfect gateway for a hacker to exploit the system. Make sure to check <a href="http://ericfarraro.com/?p=8">Some simple XSS Attacks by Example</a> to see how some of these attacks can be performed. You will see that you don&#8217;t need to be a skilled programmer to hijack someone&#8217;s site or steal a cookie, etc. The existence of a Firefox extension called Web Developer Add-on, makes all form fields vulnerable. One of the examples there shows how you can add a simple JavaScript code to a text field that asks for an image source details. If not validated properly, the form accepts the JavaScript entry as valid and executes the code.</p>
<p>That&#8217;s what happened to a very well-known Democracy plugin for Wordpress that allows you to create polls. Well, there&#8217;s an option to add your own answer to the poll question, and that text field hasn&#8217;t been properly validated in the plugin&#8217;s code, allowing to insert SCRIPT tags with the following <code>window.location='http://anewsite.com'</code><br />
As a result, it hijacks the vulnerable website by redirecting every user to a different website. Aaron Brazell from Technosailor posted all <a href="http://technosailor.com/democracy-plugin-xss-vulnerability-alert/" target="_blank">details</a> about the flaws in the plugin. Fortunately the plugin&#8217;s author has already fixed the code and released the secure version of the plugin.  Subscribe to comments plugin also had similar vulnerabilities, thankfully the author has patched the code as well and released the new and secure version.</p>
<p>While I was writing this article, I saw a notice on my Dashboard about the new version of <a href="http://wordpress.org/development/2007/03/upgrade-212/">Wordpress 2.1.1 being dangerous</a> and that everyone should upgrade to 2.1.2:</p>
<blockquote><p>Long story short: If you downloaded WordPress 2.1.1 within the past 3-4 days, your files may include a security exploit that was added by a cracker, and you should upgrade all of your files to 2.1.2 immediately. </p></blockquote>
<p>I&#8217;m glad I didn&#8217;t rush with upgrading my blog from WP 2.1.0. In my opinion it&#8217;s always a good idea to wait a bit before upgrading to a newer version. </p>
<p>Getting back to my post now. One of the ways to protect your form from XSS attacks is by converting all HTML meta characters (or angle brackets) &lt; and &gt; to the equivalent HTML entities, also stripping the &lt;script&gt; tag will help as well.</p>
<p>As I mentioned before, another common vulnerability is SQL injection. This one allows an attacker to perform unsolicited query to the database. Sometimes a query to delete an entire database or a table can be executed. Make sure to check an eye-opening <a href="http://www.unixwiz.net/techtips/sql-injection.html">SQL Injection Attacks by Example</a>. There are various techniques that can be implemented in the back-end code to protect the database from an SQL injection. This topic is too broad to talk about in this one post, so I&#8217;ll write another post, where I&#8217;ll provide you with some very helpful and useful articles on this security topic for your Recommended Reading. </p>
<p>I really hope that this post has raised some suspicious flags in your head and made you to become more cautious with plugins before using them on your blog. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.inspirationbit.com/the-secret-truth-about-the-plugins-security/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Handy Wordpress Plugins</title>
		<link>http://www.inspirationbit.com/handy-wordpress-plugins/</link>
		<comments>http://www.inspirationbit.com/handy-wordpress-plugins/#comments</comments>
		<pubDate>Thu, 01 Mar 2007 17:40:18 +0000</pubDate>
		<dc:creator>Vivien</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.inspirationbit.com/handy-wordpress-plugins/</guid>
		<description><![CDATA[There are hundreds, if not thousands, of Wordpress plugins available for download. How to find which ones are worthwhile to install on your blog? I&#8217;ve already talked about the essential Wordpress plugins in my previous post. So today I&#8217;ll present some optional but very beneficial and handy Wordpress plugins for you to choose from.
Promotional plugins
This [...]]]></description>
			<content:encoded><![CDATA[<p>There are hundreds, if not thousands, of Wordpress plugins available for download. How to find which ones are worthwhile to install on your blog? I&#8217;ve already talked about the <a href="http://www.inspirationbit.com/practical-information-about-wordpress-plugins/">essential Wordpress plugins</a> in my previous post. So today I&#8217;ll present some optional but very beneficial and handy Wordpress plugins for you to choose from.</p>
<h3>Promotional plugins</h3>
<p>This list includes some of the user-oriented plugins that you should definitely consider installing on your blog. Usually people land on your blog from search engines, or links from other sites, thus they tend to read that particular post they landed on and leave. These plugins will promote your blog and encourage readers to explore your site beyond the landing page.</p>
<ol>
<li><a href="http://www.w-a-s-a-b-i.com/archives/2006/02/02/wordpress-related-entries-20/">Related Posts</a> &#8211; Displays a list of other related posts based on matching keywords within the article. Usually they appear at the end of your post and you can control the number of the generated related entries.</li>
<li><a href="http://www.macalua.com/2007/02/01/top-posts-by-category-plugin/">Top Posts By Category</a> &#8211; Returns a list of Top most viewed or commented posts on your blog. You can customize it to display the posts by category or regardless, and control the number of the most popular posts.</li>
<li><a href="http://www.calevans.com/view.php/page/notable">WP-notable</a> &#8211; Adds social bookmark links/icons (16 in total) to each blog post. The links include sites like digg, del.icio.us, newsvine, fark, furl, reddit, magnolia and much more.</li>
<li><a href="http://alexking.org/projects/wordpress">Share This</a> &#8211; This is another plugin that encourages visitors to post your blog posts t various social bookmarking sites. But it also allows your readers to share your article with others by email. Originally I had wp-notable installed on my blog, but switched to Share This because it adds less clutter to my post, plus includes two options. It&#8217;s a little bit more difficult to customize though, you might need to fiddle with the PHP code a bit and CSS to adjust the colours and some other options. Alex King does provide instructions for this plugin, so you can give it a try.</li>
<li><a href="http://www.aviransplace.com/index.php/digg-this-wordpress-plugin/">Digg This </a>- Detects when your post has been dugg by digg users;  automatically sends an email to you informing that your post has been dugg and displays a link back to the digg post for users to digg your story. You can also display a digg vote box next to that post displaying the number of diggs and the link to &#8220;digg it&#8221;. </li>
</ol>
<h3>Motivational plugins</h3>
<p>These plugins help you with persuading your visitors to come back to your site, to comment and even benefit from being a loyal reader of your blog.</p>
<ol>
<li><a href="http://txfx.net/code/wordpress/subscribe-to-comments/">Subscribe To Comments</a> &#8211; Very often people comment on someone&#8217;s blog but then lose track of that site and never check back to see if anyone has replied to their comments. This plugin allows readers to receive email notifications of new comments that are posted to a post where they left a comment.</li>
<li><a href="http://www.pfadvice.com/wordpress-plugins/show-top-commentators/">Show Top Commentators</a> &#8211; Who doesn&#8217;t want to get a link back to their site? Well this plugin displays readers with the most comments to your blog, with their names, linked to their website if there&#8217;s one. So you&#8217;ll encourage more feedback and discussions from readers and reward them for their active participation.</li>
</ol>
<h3>Administrative Plugins</h3>
<ol>
<li><a href="http://orderedlist.com/wordpress-plugins/wp-tiger-administration/">Tiger Style Administration</a> &#8211; If you&#8217;re not too impressed with the look of your  Wordpress Administration area, then this plugin will allow you to &#8220;freshen it up&#8221;. There are several plugins that give you this option to change the Admin&#8217;s interface, this one is my favourite. Recently someone has come up with a <a href="http://digg.com/design/Digg_style_WordPress_Dashboard_theme">Digg Styled  Wordpress Dashboard</a> plugin but wasn&#8217;t sure if it&#8217;s okay to release it.</li>
<li><a href="http://www.duechiacchiere.it/wp-slimstat/">WP-SlimStat</a> &#8211; You definitely need to track your blog statistics. There are various statistics tools available, including <a href="www.google.com/analytics/">Google Analytics</a>. However I wanted to have an easy and quick way to access my blog stats while I blog. After trying several different statistics plugins, I&#8217;ve stopped with this one. It has a very nice interface and comes with lots of statistical perks (summary of hits and visits for today, yesterday, by week, by month, search strings, recent and most popular resources, domains and much more)</li>
</ol>
<h3>Monetizing Plugins</h3>
<p>Since I haven&#8217;t monetized my blog I can&#8217;t give you any personal recommendations on this topic. I found Lorelle&#8217;s article on <a href="http://lorelle.wordpress.com/2007/02/25/monetizing-wordpress-plugins/">Monetizing Wordpress Plugins</a> very exhaustive and helpful. </p>
<h3>Plugin Resources</h3>
<p><a href="http://codex.wordpress.org/Plugins">Wordpress Codex</a> has a complete list of plugins and plugin resources, carefully categorized and easy to search through. I recommend you to check it out and see if there are any other plugins that are worth installing on your blog. You might want to install some gallery or forum related plugins, polls, widgets, translating plugins, etc. The list is endless, it all depends on your blog&#8217;s needs.<br />
Another way to look for plugins is to simply type your keywords on Google. That&#8217;s how I find most of my information on the internet.</p>
<p>I&#8217;m sure my list of plugins is not an extensive one, but hopefully some of you will find it helpful. I&#8217;ll continue posting about other Wordpress plugins after trying them on my blog.<br />
What are your favourite plugins and what do you use them for? I&#8217;m sure we can all learn from each other.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.inspirationbit.com/handy-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Practical Information About Wordpress Plugins</title>
		<link>http://www.inspirationbit.com/practical-information-about-wordpress-plugins/</link>
		<comments>http://www.inspirationbit.com/practical-information-about-wordpress-plugins/#comments</comments>
		<pubDate>Wed, 28 Feb 2007 16:55:15 +0000</pubDate>
		<dc:creator>Vivien</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.inspirationbit.com/practical-information-about-wordpress-plugins/</guid>
		<description><![CDATA[Wordpress plugins allow anyone to extend the default functionality that comes with Wordpress. Some advantages of plugins are: 

Everyone can choose to install only the plugins they need, saving on time to generate a web page
Extra functionality can be added to Wordpress without having to know programming.
The numerous plugins will make it possible to keep [...]]]></description>
			<content:encoded><![CDATA[<p>Wordpress plugins allow anyone to extend the default functionality that comes with Wordpress. Some advantages of plugins are: </p>
<ul>
<li>Everyone can choose to install only the plugins they need, saving on time to generate a web page</li>
<li>Extra functionality can be added to Wordpress without having to know programming.</li>
<li>The numerous plugins will make it possible to keep Wordpress code from bloating, leaving only the necessary features available in the program&#8217;s core.</li>
</ul>
<p>There are a few drawbacks when dealing with plugins though:</p>
<ul>
<li>Some plugins won&#8217;t work with the new releases of Wordpress, leaving users to  question whether they should upgrade their Wordpress but lose the plugin or keep the plugin and the old Wordpress version.</li>
<li>When installing a new plugin, you usually integrate it with the active theme. If the theme is changed, you will have to hook all your plugins with the new theme all over again.</li>
<li>Not all plugins come with a solid support system. Some plugin writers are happy to share their code with the rest of the world, but have no time to provide an actual support, and troubleshoot the problems that you may encounter when getting these plugins to work properly.</li>
</ul>
<h2>Which Wordpress plugins are essential?</h2>
<ol>
<li><a href="http://akismet.com/">Akismet</a> &#8211; there&#8217;s a good reason why Akismet plugin is one of the three plugins that come with every Wordpress installation. So make sure you activate this plugin and it&#8217;ll save you lots of time and frustrations when dealing with an inevitable spam on your blog. After two months of blogging, my blog suddenly started getting spam comments, almost on a daily basis: just one or two, but I&#8217;m sure glad I have my Akismet warrior catching them.</li>
<li><a href="http://elasticdog.com/2004/09/optimal-title/">Optimal Title</a> &#8211; this plugin is good for SEO. By default Wordpress displays your blogs name first in every page/post title tag, followed by the actual post title. Optimal Title plugin reverses the structure which makes it more SEO friendly, by giving more prominence to the keywords in your post&#8217;s title.</li>
<li><a href="http://orderedlist.com/wordpress-plugins/feedburner-plugin/">Feedburner Feed Replacement</a> &#8211; Forwards all feed traffic to Feedburner. This allows you to customize your feeds with various feed presentation, analyze your subscribers statistics, and much more. </li>
<li><a href="http://ryanduff.net/projects/wp-contactform/">WP-ContactForm</a> or <a href="http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/">Dagon Design Form Mailer</a> &#8211; Every blog, just like every website, should have a Contact page. Of course, you can create one and display your contact details there, but it&#8217;s much better to have a contact form that your readers can use to contact you directly, and the form will protect your email address from getting spanned. At first I was using WP-Contact Form plugin for my contact page, but then I was told by Jonathan from <a href="http://f6design.com/journal/2006/12/09/securing-php-contact-forms/">Pixel Acres</a> about another plugin which includes more security features in the contact form code &#8211; Dagon Design Form Mailer. I looked at the code and the features and I did like it better. It includes an Image Verification question which ensures that a person fills out your contact form, not a spam bot.</li>
<li><a href="http://www.arnebrachhold.de/2005/06/05/google-sitemaps-generator-v2-final">Google Sitemaps</a> &#8211; This plugin will generate a Google compliant sitemap of your WordPress blog. Google sitemap will allow Google to know how often a web page has been updated and helps to get more pages crawled.</li>
</ol>
<p>If you think that I missed on some essential plugins for Wordpress, please, let me know and I will update this list. Next I will talk about some optional plugins that would make your blogging life easier and more efficient, based on your blog&#8217;s needs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.inspirationbit.com/practical-information-about-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>8 Questions to Ask about Wordpress Plugins</title>
		<link>http://www.inspirationbit.com/8-questions-to-ask-about-wordpress-plugins/</link>
		<comments>http://www.inspirationbit.com/8-questions-to-ask-about-wordpress-plugins/#comments</comments>
		<pubDate>Mon, 26 Feb 2007 18:04:10 +0000</pubDate>
		<dc:creator>Vivien</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.inspirationbit.com/questions-to-ask-about-wordpress-plugins/</guid>
		<description><![CDATA[Wordpress is an excellent tool for building a blog site, but what makes it a killer application is the vast amount of free plugins and themes that allow anyone to customize the blog to their needs and taste. On the other hand the huge collection of plugins can be a bit too overwhelming for some [...]]]></description>
			<content:encoded><![CDATA[<p>Wordpress is an excellent tool for building a blog site, but what makes it a killer application is the vast amount of free plugins and themes that allow anyone to customize the blog to their needs and taste. On the other hand the huge collection of plugins can be a bit too overwhelming for some people. No wonder that most of us have or should have these questions in mind:</p>
<ol>
<li>What is a plugin?</li>
<li>What are the essential plugins that everyone should have on their blogs?</li>
<li>Are there any specific plugins that I might need for my particular blog?</li>
<li>Which plugins are nice to have but not necessary?</li>
<li>Where do I look for these plugins?</li>
<li>Will these plugins work for my version of Wordpress?</li>
<li>Who writes these plugins; can I trust their code? </li>
<li>Did plugin writers keep the security issues in mind when developing those plugins?</li>
</ol>
<p>You may have other questions about plugins but make sure you always address the security questions before installing the plugin. It&#8217;s not that difficult to write a plugin if you are a programmer. However, every programmer has a certain style, a specific skill set and adheres to a particular set of rules when writing a code. Not every programmer follows a clean well-documented code, knows and focuses on security issues and vulnerabilities of a particular application, performs a sufficient testing of this plugin. </p>
<p>Even Wordpress programmers often miss on these things, that&#8217;s why they regularly release updated versions of the application on a monthly basis. The latest version 2.1.1 includes &#8220;about 30 bug fixes, mostly minor things around encoding, XML-RPC, the object cache, and HTML code&#8221;. Considering that the previous version 2.1 has been released just 30 days prior to the update, that&#8217;s 1 bug every day. Most plugin writers don&#8217;t update their code as frequently, but who knows how many bugs their code contains?</p>
<p>I will tackle these questions soon and dedicate a few posts on this topic. Meanwhile if you have any other questions about plugins, let me know and I&#8217;ll attend to them as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.inspirationbit.com/8-questions-to-ask-about-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
