<?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>Wordpress Arena &#187; Wordpress Plugin</title>
	<atom:link href="http://wparena.com/tag/wordpress-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://wparena.com</link>
	<description>A Blog for WordPress Developers, Designers and Bloggers</description>
	<lastBuildDate>Wed, 08 Feb 2012 17:37:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to add Multiple Product Categories to WP e-Commerce Plugin</title>
		<link>http://wparena.com/how-to/how-to-add-multiple-product-categories-into-wp-e-commerce-plugin/</link>
		<comments>http://wparena.com/how-to/how-to-add-multiple-product-categories-into-wp-e-commerce-plugin/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 19:43:33 +0000</pubDate>
		<dc:creator>Nur</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[E-Commerce]]></category>
		<category><![CDATA[eCommerce]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[WordPress eCommerce Shop]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>
		<category><![CDATA[WP-eCommerce]]></category>

		<guid isPermaLink="false">http://wparena.com/?p=10921</guid>
		<description><![CDATA[WP e-Commerce is a free WordPress Shopping Cart Plugin that lets customers buy your products, services and digital downloads online. PHPurchase is a paid plugin, it seems to be of better quality than the free versions as well as slightly easier to use. It has the more features as compare to the free one. Even there are WordPress Themes with [...]


Related posts:<ol><li><a href='http://wparena.com/how-to/how-to-addshow-images-with-wp-category/' rel='bookmark' title='How to add/Show Images with WP-Category'>How to add/Show Images with WP-Category</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-custom-fields-metadata-for-categories-and-tags-terms/' rel='bookmark' title='How to add Custom Fields [metadata] for categories and tags [terms]'>How to add Custom Fields [metadata] for categories and tags [terms]</a></li>
<li><a href='http://wparena.com/inspiration/wpa-storefront-the-ultimate-wp-e-commerce-theme/' rel='bookmark' title='WPA Storefront – The Ultimate WP-E-Commerce Theme'>WPA Storefront – The Ultimate WP-E-Commerce Theme</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-navigation-trail-by-using-wordpress-plugin-breadcrumb-navxt/' rel='bookmark' title='How to add navigation trail by using WordPress Plugin &#8211; BreadCrumb NavXT'>How to add navigation trail by using WordPress Plugin &#8211; BreadCrumb NavXT</a></li>
<li><a href='http://wparena.com/how-to/create-online-store-with-free-wordpress-e-commerce-plugin/' rel='bookmark' title='Create Online Store with Free WordPress e-Commerce plugin'>Create Online Store with Free WordPress e-Commerce plugin</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwparena.com%2Fhow-to%2Fhow-to-add-multiple-product-categories-into-wp-e-commerce-plugin%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwparena.com%2Fhow-to%2Fhow-to-add-multiple-product-categories-into-wp-e-commerce-plugin%2F&amp;source=wparena&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><em><a href="http://getshopped.org/">WP e-Commerce</a></em> is a free WordPress Shopping Cart Plugin that lets customers buy your products, services and digital downloads online. <a href="http://www.phpurchase.com/?ap_id=wparena">PHPurchase</a> is a paid plugin, it seems to be of better quality than the free versions as well as slightly easier to use. It has the more features as compare to the free one. Even there are WordPress <a href="http://wparena.com/themeforest-sensation" rel="nofollow">Themes</a> with eCommerce features, you can find theme on the following links:</p>
<ul>
<li><a href="http://wparena.com/tools/best-wordpress-ecommerce-themes-shopping-cart-plugin/">Best WordPress Ecommerce Themes &amp; Shopping Cart plugin</a></li>
<li><a href="http://wparena.com/inspiration/opencart-as-a-favourite-e-commerce-application-and-its-templates/" target="_blank">OpenCart as a favourite E-Commerce Application and Its Templates</a></li>
</ul>
<p>If you are using this plugin as a e-Commerce platform and want to add multiple categories, here give you a solution for that and by using this code you can create your own Plugin to add bulk Product categories for your online shop. You can read all about WP-eCommerce Plugin here: <a href="http://wparena.com/how-to/create-online-store-with-free-wordpress-e-commerce-plugin/">Create Online Store with Free WordPress e-Commerce plugin</a></p>
<pre>&lt;?php
/*
Plugin Name: Add Product Categories
Version: v0.1
Author: WordPress Arena
URL: http://wparena.com
Description: Bulk category import for WP-eCommerce Plugin
Plugin URI: http://wparena.com/?p=10921
Author URI: http://wparena.com
*/
function batch_import_function() {
global $wpdb;
if(isset($_POST['Add'])) {

$group_id = $_POST['groupid'];
$parent_id = $_POST['category'];
$categories = $_POST['categories'];
$cats_array = explode(",",$categories);
print_r ($cats_array);
foreach($cats_array as $key =&gt; $value) {
$nice_name = str_replace (" ","-",$value);
echo ($nice_name);
$wpdb-&gt;insert(
	'wp_wpsc_product_categories',
	array(
		'group_id' =&gt; $group_id,
		'name' =&gt; $value,
		'nice-name' =&gt; $nice_name,
		'active' =&gt; 1,
		'category_parent' =&gt; $parent_id
		),
	array(
		'%s',
		'%s',
		'%s',
		'%d',
		'%d'
	)
);
}
  }
?&gt;
&lt;form name="batchcats" action="" method="post"&gt;
Group:&lt;input type="text" name="groupid" /&gt;
Parent Category:&lt;input type="text" name="category" /&gt;
Categories:&lt;textarea name="categories"&gt;&lt;/textarea&gt;
&lt;input name="Add" type="submit" value="Add" /&gt;
&lt;/form&gt;
&lt;?php
}
function batch_import() {
      add_menu_page("Import Categories", "Import Categories", 1, "Import Categories", "batch_import_function");
}
add_action('admin_menu', 'batch_import');
?&gt;</pre>
<p>Save this file  as a .php and upload it into plugin directory, activate the plugin and you will see &#8220;Import Categories&#8221; tab in your admin panel. Click on this tab and add Group id number and add Parent Category id, after adding ids entry the categories name separated by commas and click on add button.</p>
<h2>WordPress <a href="http://wparena.com/themeforest-wordpress" style=""  rel="nofollow" onmouseover="self.status='http://wparena.com/themeforest-wordpress';return true;" onmouseout="self.status=''">Themes</a> for eCommerce</h2>
<hr />
<ul>
<li><a href="http://wparena.com/gorillathemes" target="_blank">gorillathemes</a></li>
<li><a href="http://wparena.com/iThemeBuilder" target="_blank">iThemeBuilder</a></li>
<li><a href="http://wparena.com/GenesisThemeFramework" target="_blank">GenesisThemeFramework</a></li>
<li><a href="http://wparena.com/DIYthemes" target="_blank">DIYthemes</a></li>
<li><a href="http://wparena.com/StudioPress" target="_blank">StudioPress</a></li>
<li><a href="http://wparena.com/eleganttheme" target="_blank">eleganttheme</a></li>
<li><a href="http://wparena.com/MOJOThemes" target="_blank">MOJOThemes</a></li>
<li><a href="https://www.e-junkie.com/ecom/gb.php?cl=89938&amp;c=ib&amp;aff=107974">TokoKoo: Best Premium WordPress ecommerce themes</a></li>
</ul>


<p>Related posts:<ol><li><a href='http://wparena.com/how-to/how-to-addshow-images-with-wp-category/' rel='bookmark' title='How to add/Show Images with WP-Category'>How to add/Show Images with WP-Category</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-custom-fields-metadata-for-categories-and-tags-terms/' rel='bookmark' title='How to add Custom Fields [metadata] for categories and tags [terms]'>How to add Custom Fields [metadata] for categories and tags [terms]</a></li>
<li><a href='http://wparena.com/inspiration/wpa-storefront-the-ultimate-wp-e-commerce-theme/' rel='bookmark' title='WPA Storefront – The Ultimate WP-E-Commerce Theme'>WPA Storefront – The Ultimate WP-E-Commerce Theme</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-navigation-trail-by-using-wordpress-plugin-breadcrumb-navxt/' rel='bookmark' title='How to add navigation trail by using WordPress Plugin &#8211; BreadCrumb NavXT'>How to add navigation trail by using WordPress Plugin &#8211; BreadCrumb NavXT</a></li>
<li><a href='http://wparena.com/how-to/create-online-store-with-free-wordpress-e-commerce-plugin/' rel='bookmark' title='Create Online Store with Free WordPress e-Commerce plugin'>Create Online Store with Free WordPress e-Commerce plugin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wparena.com/how-to/how-to-add-multiple-product-categories-into-wp-e-commerce-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to integrate Magento into WordPress e-Commerce site</title>
		<link>http://wparena.com/how-to/how-to-integrate-magento-into-wordpress-e-commerce-site/</link>
		<comments>http://wparena.com/how-to/how-to-integrate-magento-into-wordpress-e-commerce-site/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 21:34:07 +0000</pubDate>
		<dc:creator>Nur</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[E-Commerce]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Shopping]]></category>
		<category><![CDATA[Shopping Cart]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress e-commerce]]></category>
		<category><![CDATA[WordPress eCommerce Shop]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>

		<guid isPermaLink="false">http://wparena.com/?p=10793</guid>
		<description><![CDATA[Magento is the best eCommerce software, well architected and well designed too. You can easily customize it and change theme according to your needs. I have compiled a list of Great Themes for Magento. Over 60,000 merchants worldwide use Magento to power their ecommerce front. WordPress is becoming the great platform for setting up your online eCommerce web [...]


Related posts:<ol><li><a href='http://wparena.com/how-to/how-to-add-multiple-product-categories-into-wp-e-commerce-plugin/' rel='bookmark' title='How to add Multiple Product Categories to WP e-Commerce Plugin'>How to add Multiple Product Categories to WP e-Commerce Plugin</a></li>
<li><a href='http://wparena.com/how-to/how-to-integrate-facebook-with-wordpress-automatically/' rel='bookmark' title='How To Integrate Facebook With WordPress Automatically'>How To Integrate Facebook With WordPress Automatically</a></li>
<li><a href='http://wparena.com/how-to/create-online-store-with-free-wordpress-e-commerce-plugin/' rel='bookmark' title='Create Online Store with Free WordPress e-Commerce plugin'>Create Online Store with Free WordPress e-Commerce plugin</a></li>
<li><a href='http://wparena.com/themes/best-magento-themes-for-your-online-store/' rel='bookmark' title='Best Magento Themes for Your Online Store'>Best Magento Themes for Your Online Store</a></li>
<li><a href='http://wparena.com/how-to/how-to-use-wordpress-as-an-e-commerce-store/' rel='bookmark' title='How to use WordPress as an E-Commerce Store'>How to use WordPress as an E-Commerce Store</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwparena.com%2Fhow-to%2Fhow-to-integrate-magento-into-wordpress-e-commerce-site%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwparena.com%2Fhow-to%2Fhow-to-integrate-magento-into-wordpress-e-commerce-site%2F&amp;source=wparena&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.shareasale.com/r.cfm?B=94840&amp;U=446130&amp;M=14139" target="_blank">Magento</a> is the best eCommerce software, well architected and well designed too. You can easily customize it and change theme according to your needs. I have compiled a list of <a href="http://wparena.com/themes/best-magento-themes-for-your-online-store/">Great Themes for Magento</a>. Over 60,000 merchants worldwide use Magento to power their ecommerce front.</p>
<p>WordPress is becoming the great platform for setting up your online eCommerce web site. Building online store Powered by WordPress has many benefits. First of all WordPress is a Search Engine friendly platform, whenever you make new post, it will automatically ping the search engines and these pages are easily indexed.  So WordPress reduces your SEO’s cost, as well help your eCommerce site to have more visitors that’s mean more money for you &#8211; <a href="http://wparena.com/inspiration/creative-wordpress-powered-ecommerce-web-sites/">Detail</a>.</p>
<p>In case if you are using Magento as an e-commerce engine but want to use the power of WordPress&#8217;s CMS, then you’ll be happy to learn that the two can now be easily integrated.</p>
<h3>Magento WordPress Integration:</h3>
<p><img class="alignnone size-full wp-image-10794" title="WordPressMagento-integration" src="http://wparena.com/www/wparena/media/wp-content/uploads/2011/09/WordPressMagento-integration.jpg" alt="" width="522" height="115" /></p>
<p>The <a title="WordPress Magento Integration" href="http://wordpress.org/extend/plugins/magento-wordpress-integration/">Magento WordPress Integration</a> plugin is well known as a <a href="http://www.tristarwebdesign.co.uk/wordpress-plugins/wordgento/">Wordgento</a>, which give you to add any of the default Magento Blocks into your WordPress theme – for example, the shopping cart, top links, top navigation, and more. You can also add any number of Magento products to your WordPress posts and pages.</p>
<p><strong>The Initial Setup Tab.</strong></p>
<p><strong></strong><a href="http://wparena.com/www/wparena/media/wp-content/uploads/2011/09/Magento-WordPress-Integration-tab.jpg"><img class="alignnone size-medium wp-image-10795" title="Magento-WordPress-Integration-tab" src="http://wparena.com/www/wparena/media/wp-content/uploads/2011/09/Magento-WordPress-Integration-tab-620x319.jpg" alt="" width="620" height="319" /></a></p>
<p><strong>The tab where you can choose which CSS/JS to load into your WordPress theme.</strong></p>
<p><strong></strong><a href="http://wparena.com/www/wparena/media/wp-content/uploads/2011/09/Magento-WordPress-Integration-tab2.jpg"><img class="alignnone size-medium wp-image-10796" title="Magento-WordPress-Integration-tab2" src="http://wparena.com/www/wparena/media/wp-content/uploads/2011/09/Magento-WordPress-Integration-tab2-620x319.jpg" alt="" width="620" height="319" /></a><br />
<strong>The tab that allows you to add any number of custom Magento Blocks.</strong></p>
<p><a href="http://wparena.com/www/wparena/media/wp-content/uploads/2011/09/Magento-WordPress-Integration-tab3.jpg"><img class="alignnone size-medium wp-image-10797" title="Magento-WordPress-Integration-tab3" src="http://wparena.com/www/wparena/media/wp-content/uploads/2011/09/Magento-WordPress-Integration-tab3-620x319.jpg" alt="" width="620" height="319" /></a></p>
<p><strong>The tab that allows you to style the products that have been added to a WordPress post or page.</strong></p>
<p><strong></strong><a href="http://wparena.com/www/wparena/media/wp-content/uploads/2011/09/Magento-WordPress-Integration-tab4.jpg"><img class="alignnone size-medium wp-image-10798" title="Magento-WordPress-Integration-tab4" src="http://wparena.com/www/wparena/media/wp-content/uploads/2011/09/Magento-WordPress-Integration-tab4-620x319.jpg" alt="" width="620" height="319" /></a></p>
<p>The Magento WordPress Integration Plugin allows you to to the following:</p>
<ul>
<li>Bring out any of the default Magento Blocks in your WordPress theme.</li>
<li>Bring out any Magento blocks that you have created yourself.</li>
<li>Bring out any static blocks that you have made in your Magento admin area.</li>
<li>Choose which toplinks to show (if you are using that block).</li>
<li>Choose which javascript and css files to load in your WordPress theme.</li>
<li>Add additional javascript and css files from you Magento installation.</li>
<li>Show Magento products on a WordPress post or page by entering a list of comma seprated SKUs into the field provided in the post/page editors.</li>
<li>Use the options provide in the plugin settings to style the products that are shown on posts/pages.</li>
</ul>
<p>If upgrading, please back up your database first!</p>
<h2><a href="http://www.jckemp.com/plugins/magento-wordpress-integration/">Installation</a></h2>
<hr />
<p>Before installing, please make sure you don’t have any other plugins that load in Magento – as it can create conflict. It is not a simple and easy way to use this plugin for detail installation visit the plugin’s <a href="http://www.jckemp.com/plugins/magento-wordpress-integration/">homepage</a> and get the complete instructions.</p>
<blockquote>
<ol>
<li>Deactivate a Magento function that conflicts with one in WordPress.
<ol>
<li>Navigate to ~/your-magento/app/code/core/Mage/Core/functions.php</li>
<li>Duplicate that file and place the new version in ~/your-magento/app/code/local/Mage/Core/functions.php – this file will now be used over the original, and will remain during Magento upgrades.</li>
<li>Open the newly created file and browse to around line 90, where you will find this:
<pre>function __()
{
return Mage::app()-&gt;getTranslator()-&gt;translate(func_get_args());
}</pre>
</li>
<li>Replace the above line with:
<pre>if(!function_exists('__')) {
	function __()
	{
	return Mage::app()-&gt;getTranslator()-&gt;translate(func_get_args());
	}
}</pre>
</li>
<li>Upload the file to your server, and you are done!</li>
</ol>
</li>
</ol>
<p>Now that we have that out the way, let’s move on to the good stuff. You can either download the plugin manually from the WordPress Plugin Directory, or browse to <strong>Plugins » Add New</strong> in your WordPress admin area, then search for “Magento WordPress Integration”.</p>
<ol>
<li>Install the plugin as described above.</li>
<li>Activate the plugin. There will be a message reminding you to remove the __() function from Magento. If you have already done so, please ignore the message.</li>
<li>Click <strong>Mage/WP</strong> in your side bar.</li>
<li>Under the <strong>Initial Setup</strong> tab, you will need to enter the details of your Magento store.
<ol>
<li>The first field requires the path to your Magento installation – this needs to be on the same domain as your WordPress installation, and must be entered from the root (i.e. it will start with a forward slash – for example: <strong>/shop</strong>).</li>
<li>The second field requires the name of Magento theme or package – For example, if you are using the modern theme, just enter<strong>modern</strong>. If you have installed a new package, then enter <strong>package-name/theme-name</strong>.</li>
<li>The third field needs to be the store view code of the Magento store that you want to get blocks and data from. If you haven’t specifically renamed or made any new Magento store views, then just leave this as <strong>default</strong>.</li>
</ol>
</li>
<li>Once you have done the above, you can move on the other tabs. Each of these tabs contains usage instructions and should be pretty workable.</li>
</ol>
<h2><strong>Installation Tips</strong></h2>
<p>Setting the cookie paths in Magento can help to solve any issues regarding customer session data between platforms – Go to your Magento admin area. Navigate to System » Configuration » Web » Session Cookie Management. Set the Cookie Path to / and the Cookie Domain to .yourdomain.com.</p>
<h2>Usage</h2>
<p>Usage instructions can be found in the settings under each tab, there is also a tab entitled Usage, which describes how to bring out the default Magento blocks.</p>
<p>The plugin basically provides little PHP snippets that you can the use in your WordPress theme to bring out the required blocks. For example:</p>
<p><code>&lt;?php </code><code>echo</code> <code>jk_mwi(</code><code>'welcome'</code><code>); ?&gt;</code><br />
<!--?php echo jk_mwi('welcome'); ?--><br />
The above will echo the Magento welcome message.</p></blockquote>
<p><a href="http://wordpress.org/extend/plugins/magento-wordpress-integration/">Download</a> | <a href="http://www.jckemp.com/plugins/magento-wordpress-integration/">Detail</a></p>
<h3>WordPress into Magento</h3>
<p>The other way to integrate is to get your WordPress content and variables onto your Magento pages. I’ve seen several different approaches to this, but I’m going to stick with my favorite way, because its the easiest, fastest and doesn’t require a ton of steps like some of the others do. <a href="http://www.tripleginteractive.com/blog/code-snippets/integrate-magento-wordpress/">Detail</a></p>


<p>Related posts:<ol><li><a href='http://wparena.com/how-to/how-to-add-multiple-product-categories-into-wp-e-commerce-plugin/' rel='bookmark' title='How to add Multiple Product Categories to WP e-Commerce Plugin'>How to add Multiple Product Categories to WP e-Commerce Plugin</a></li>
<li><a href='http://wparena.com/how-to/how-to-integrate-facebook-with-wordpress-automatically/' rel='bookmark' title='How To Integrate Facebook With WordPress Automatically'>How To Integrate Facebook With WordPress Automatically</a></li>
<li><a href='http://wparena.com/how-to/create-online-store-with-free-wordpress-e-commerce-plugin/' rel='bookmark' title='Create Online Store with Free WordPress e-Commerce plugin'>Create Online Store with Free WordPress e-Commerce plugin</a></li>
<li><a href='http://wparena.com/themes/best-magento-themes-for-your-online-store/' rel='bookmark' title='Best Magento Themes for Your Online Store'>Best Magento Themes for Your Online Store</a></li>
<li><a href='http://wparena.com/how-to/how-to-use-wordpress-as-an-e-commerce-store/' rel='bookmark' title='How to use WordPress as an E-Commerce Store'>How to use WordPress as an E-Commerce Store</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wparena.com/how-to/how-to-integrate-magento-into-wordpress-e-commerce-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Online Store with Free WordPress e-Commerce plugin</title>
		<link>http://wparena.com/how-to/create-online-store-with-free-wordpress-e-commerce-plugin/</link>
		<comments>http://wparena.com/how-to/create-online-store-with-free-wordpress-e-commerce-plugin/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 23:55:26 +0000</pubDate>
		<dc:creator>Nur</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[E-Commerce]]></category>
		<category><![CDATA[E-Commerce plugin]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[online store]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>
		<category><![CDATA[WP e-Commerce plugin]]></category>

		<guid isPermaLink="false">http://wparena.com/?p=10566</guid>
		<description><![CDATA[One of the greatest strength of WordPress lies in how easy it is to modify and extend. WordPress is an open source, its functionality is nearly limitless as well. WordPress developers creating hundreds of plugins to extend its capabilities. WP e-Commerce is a free WordPress Shopping Cart Plugin that lets customers buy your products, services and digital [...]


Related posts:<ol><li><a href='http://wparena.com/inspiration/wpa-storefront-the-ultimate-wp-e-commerce-theme/' rel='bookmark' title='WPA Storefront – The Ultimate WP-E-Commerce Theme'>WPA Storefront – The Ultimate WP-E-Commerce Theme</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-multiple-product-categories-into-wp-e-commerce-plugin/' rel='bookmark' title='How to add Multiple Product Categories to WP e-Commerce Plugin'>How to add Multiple Product Categories to WP e-Commerce Plugin</a></li>
<li><a href='http://wparena.com/how-to/how-to-use-wordpress-as-an-e-commerce-store/' rel='bookmark' title='How to use WordPress as an E-Commerce Store'>How to use WordPress as an E-Commerce Store</a></li>
<li><a href='http://wparena.com/how-to/how-to-integrate-magento-into-wordpress-e-commerce-site/' rel='bookmark' title='How to integrate Magento into WordPress e-Commerce site'>How to integrate Magento into WordPress e-Commerce site</a></li>
<li><a href='http://wparena.com/inspiration/why-choose-wordpress-as-an-e-commerce-platform/' rel='bookmark' title='Why choose WordPress as an E-Commerce platform'>Why choose WordPress as an E-Commerce platform</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwparena.com%2Fhow-to%2Fcreate-online-store-with-free-wordpress-e-commerce-plugin%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwparena.com%2Fhow-to%2Fcreate-online-store-with-free-wordpress-e-commerce-plugin%2F&amp;source=wparena&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>One of the greatest strength of WordPress lies in how easy it is to modify and extend. WordPress is an open source, its functionality is nearly limitless as well. WordPress developers creating hundreds of plugins to extend its capabilities. <em><a href="http://getshopped.org/">WP e-Commerce</a></em> is a free WordPress Shopping Cart Plugin that lets customers buy your products, services and digital downloads online. <a href="http://www.phpurchase.com/?ap_id=wparena">PHPurchase</a> is a paid plugin, it seems to be of better quality than the free versions as well as slightly easier to use. It has the more features as compare to the free one. Even there are WordPress <a href="http://wparena.com/themeforest-AmplifyBusinessTheme?=" style=""  rel="nofollow" onmouseover="self.status='http://wparena.com/themeforest-AmplifyBusinessTheme?=';return true;" onmouseout="self.status=''">Themes</a> with eCommerce features, you can find theme on the following links:</p>
<ul>
<li><a href="http://wparena.com/tools/best-wordpress-ecommerce-themes-shopping-cart-plugin/">Best WordPress Ecommerce Themes &amp; Shopping Cart plugin</a></li>
<li><a href="http://wparena.com/inspiration/opencart-as-a-favourite-e-commerce-application-and-its-templates/" target="_blank">OpenCart as a favourite E-Commerce Application and Its Templates</a></li>
</ul>
<h2>About the WP e-Commerce plugin</h2>
<hr />
<p><a href="http://getshopped.org">WP e-Commerce</a> Plugin is created by the New Zealand-based company: <a href="http://www.instinct.co.nz/">Instinct</a>.  I found this plugin can be easily integrate e-commerce capabilities into any WordPress theme. WP e-Commerce is the most tried-and-true way to build an online store with WordPress. It&#8217;s an ideal solution for selling physical goods, services, and digital products online.</p>
<h2>Site and business possibilities</h2>
<hr />
<p>Whatever you can imagine to run online store, this plugin is fulfil your dreams, let&#8217;s see in the follwing showcase  how WordPress Developers and designers are using WP e-Commerce plugin to run online business for their clients and to sell own creative work.</p>
<h2>Showcase</h2>
<p><span class="Apple-style-span" style="font-size: 15px;"><strong><a href="http://icondock.com/">IconDock</a></strong></span></p>
<p><a href="http://icondock.com/"><img title="IconDock-wordpress-ecommerce" src="http://wparena.com/wp-content/uploads/2011/06/IconDock-wordpress-ecommerce.jpg" alt="" width="550" height="300" /></a></p>
<p>Icon Dock is a great showcase of wp-e-commerce and the DropShop gold module.<br />
<strong><a href="http://www.pedalplay.co.uk/">PedalPlay</a></strong></p>
<p>PedalPlay sell classic style metal pedal cars and ride-on toys using WP e-Commerce.</p>
<p><strong><a href="http://www.chippiandchilli.com.au/">Chippi and Chilli</a></strong><br />
With an aim to keep you happy through an ever growing range of fabulous products, Chippi &amp; Chilli will travel to the ends of the earth to fulfil your needs.</p>
<p><strong><a href="http://bolser.ru/">Photo, music, video, web-dev</a></strong><br />
Personal site of Sergei Bolser.</p>
<p><strong><a href="http://innovateelectricalsupplies.co.uk/">Innovate Electrical Supplies</a></strong><br />
Innovate Electrical Supplies Ltd supplies a wide range of electrical products, specialising in tools, lighting and data.</p>
<p><strong><a href="http://www.boutikboutik.com/">BoutikBoutik.com &#8211; hard to find t-shirts</a></strong><br />
BoutikBoutik.com offers you the best t-shirts. We carry hard to find brands and always concentrate on maximum customer satisfaction.</p>
<p><strong><a href="http://citysurfshops.co.uk/">City Surf</a></strong><br />
City Surf Shops online store</p>
<p><strong><a href="http://www.richardet-design.com/">Richardet Design</a></strong><br />
Company website with an included shop for web design <a href="http://wparena.com/LandingPages" style=""  rel="nofollow" onmouseover="self.status='http://wparena.com/LandingPages';return true;" onmouseout="self.status=''">templates</a> and postcards.</p>
<p><strong><a href="http://www.digitalpig.com/">DigitalPig</a></strong><br />
Digitalpig the home of digital Photography and Artwork</p>
<p><strong><a href="http://panyizsuzsi.hu/webshop">panyizsuzsi &#8211; blod.color.glass</a></strong><br />
Handmade fused glass jewelry by panyizsuzsi, a European gass artist</p>
<p><strong><a href="http://www.artistsforhope.org/">Artists For Hope</a></strong><br />
Artists for Hope has been selling donated art to help support a rescue center in Haiti since 2008.</p>
<p><strong><a href="http://www.northlandski.com/">NorthlandSki</a></strong><br />
Ski rent &amp; shop: book online.</p>
<p><strong><a href="http://paperwhistle.com/">Paper Whistle</a></strong><br />
Paper Whistle is an art shop and blog about art and design.</p>
<p><strong><a href="http://www.lightstalkersscotland.com/">Lightstalkers Scotland</a></strong><br />
Guided photography workshops and tours in the Scottish Highlands, built on WP E-Commerce.</p>
<p><strong><a href="http://www.papermagnolia.com/">Paper Magnolia</a></strong><br />
Beautiful functional stationery has never been more accessible! Our own Made in Australia range now available. Buy online, we ship worldwide!</p>
<p><strong><a href="http://www.afcea-qp.org/">AFCEA &#8211; Quantico-Potomac</a></strong><br />
The Armed Forces Communications and Electronic Association is an international forum for military and industry in the telecommunications field. This site has integrated WP Shopping Cart for event registrations and payments.</p>
<p><strong><a href="http://chefc.tv/">Chef C- Celebrating the Nourishing Life</a></strong><br />
Healthy recipes and &#8220;Green Living&#8221; blog by award winning Chef C.</p>
<p><strong><a href="http://www.charlotterollergirls.com/">Charlotte Roller Girls</a></strong><br />
Flat-Track Roller Derby promotional, fan and press website for the Charlotte Roller Girls.</p>
<p><strong><a href="http://innerpeaks.com/">Inner Peaks Climbing Center</a></strong><br />
Inner Peaks Climbing Center is the largest, state-of-the-art, full service indoor climbing gym in the Charlotte area. We have been in operation since July, 1998.</p>
<p><strong><a href="http://madmonkeyweb.com/">Mad Monkey Web</a></strong><br />
Web and Interactive Media Design.</p>
<p><strong><a href="http://www.altsurfshop.com/">Alternative Surf Shop</a></strong><br />
Alternative Surf Shop aims to provide a channel for alternative brands to reach consumers via the web.</p>
<p><strong><a href="http://www.theuppercrustcafe.co.uk/">The Uppercrust Cafe</a></strong><br />
We converted wp-ecommerce to be an online food ordering system! Awesome!</p>
<p><strong><a href="http://www.spotlightcartorch.co.uk/">Spotlight Car torch</a></strong><br />
We&#8217;ve sold loads of spotlights thru wp-ecommerce &#8211; it rocks!</p>
<p><strong><a href="http://executivechef.co.nz/">Executive Chef</a></strong><br />
Wil Mulders is an award winning European chef based in Hawke’s Bay. He shaped his unique cooking style in restaurants throughout Europe – from the Mediterranean coast to a exclusive castle in the Belgian Ardennes.</p>
<p><strong><a href="http://tomwallacecycles.com.au/">Tom Wallace Cycles</a></strong><br />
Tom Wallace Cycles, a Brisbane based bike shop.</p>
<p><strong><a href="http://www.chouxbijouxcailloux.fr/">Choux Bijoux Cailloux</a></strong><br />
Devoted mainly to necklaces, the creations are unique pieces made from quality materials &#8230; glass beads, metal or ceramic, for exclusive jewelry with warm colors and bright.</p>
<p><strong><a href="http://www.deirdrecartwright.com/">Deirdre Cartwright</a></strong><br />
Deirdre Cartwright is a Jazz guitarist and composer. Buy and download MP3s using WP e-Commerce.</p>
<p><strong><a href="http://www.soniccycles.com.au/">Sonic Cycles</a></strong><br />
Sonic Cycles is a Brisbane, Springwood based cycle shop.</p>
<p><strong><a href="http://www.comptoir-des-savonniers-06.com/">Le Comptoir des Savonniers</a></strong><br />
Beautiful soaps E-commerce website made with wp-ecommerce</p>
<p><strong><a href="http://www.ggverlag.at/">G&amp;G Verlagsgesellschaft mbH</a></strong><br />
Site Austrian Publishing Company</p>
<p><strong><a href="http://tangotix.com/">TangoTix.com</a></strong><br />
Book your Buenos Aires tango show online. Better prices, less hassle.</p>
<p><strong><a href="http://www.angelarook.com/">MindGarden by Angela Rook</a></strong><br />
JEWELLERY • ACCESSORIES • GIFTS • BRIDAL • FINE ART • JOURNALS all original &amp; handmade by Angela Rook Check out how I customized WP E-Commerce and Grid Layout to integrate seamlessly with my theme!</p>
<p><strong><a href="http://www.gaia.ie/">Gaiacom Wireless Networks</a></strong><br />
Gaiacom Ltd designs, sells and hires energy efficient information technology communications installations equipment. The mission is to facilitate always on everywhere information flows to foster business efficiency and interpersonal communications.</p>
<p><strong><a href="http://headstoneforpets.com/products">Headstones for Pets shop</a></strong><br />
Headstones for Pets &#8211; Creating memorials for your loved ones.</p>
<p><strong><a href="http://www.yayforpins.com/">YayForPins </a></strong><br />
Here&#8217;s a unique store. Notice once again that it&#8217;s easy to create an assortment of products right on the main page of the site.</p>
<p><strong><a href="http://www.seekanddestroyclothing.com/">Seek &amp; Destroy  - Designer Clothing &#8211; Tees, Tshirts, T shirts</a></strong><br />
With WP e-Commerce, it&#8217;s easy to create a front page of Cloth store that displays a gallery of products.</p>
<p><strong><a href="http://intricateart.com/">Pet Portraits &#8211; Custom pet paintings by Portrait Artist Leanne Wildermuth</a></strong><br />
WP e-Commerce makes it easy to create listings of photographic products, complete with sample images.</p>
<h2>WP e-Commerce feature overview</h2>
<hr />
<p><a href="http://getshopped.org/" target="_blank"><img title="Free-WordPress-e-Commerce-plugin" src="http://wparena.com/www/wparena/media/wp-content/uploads/2011/08/Free-WordPress-e-Commerce-plugin.jpg" alt="" width="600" height="218" /></a></p>
<p>On the above list you have seen the WP e-Commerce plugin in action, let&#8217;s take a quick look at some of the overall features.</p>
<h2>Setting up the development environment</h2>
<p>Always try to set up WordPress on localhost as it speed up the process of development. If you are on windows or Linux you can use <a href="http://www.apachefriends.org/en/xampp.html">xampp</a>. For mac lovers can use <a href="http://www.mamp.info/">mamp</a>. Follow these short and easy tutorials on how to setup local host on your own computer.</p>
<ul>
<li><a href="http://www.tamba2.org.uk/wordpress/xampp/">Setting Up WordPress On Your PC/Linux Using XAMPP</a></li>
<li><a href="http://codex.wordpress.org/Installing_WordPress_Locally_on_Your_Mac_With_MAMP">Installing WordPress Locally on Your Mac With MAMP</a></li>
</ul>
<p>Moreover I am using <a href="http://wordpress.org/extend/themes/jq">jQ</a>, an awesome free theme for WordPress.</p>
<h2>Installing the plugin</h2>
<p>Install WP e-Commerce from<a href="http://wordpress.org/extend/plugins/wp-e-commerce/"> official plugins repository</a> or from its <a href="http://getshopped.org/">official website</a>. Activate the plugin and you can see after activation, <strong>Products</strong>  along with other tabs below the comments tab. We will start from settings and then we will create some products to finally set up our demo store.</p>
<h3>Settings WP e-Commerce&gt;General</h3>
<p>On Dashboard, there appear Store tab under Setting. Click on Store, There you can set location, target markets and currency in which you will sell products. There is an additional tax option which will be applied on the top of your product price.</p>
<p><img class="alignnone size-full wp-image-10577" title="Store-setting-wp-ecommerce" src="http://wparena.com/www/wparena/media/wp-content/uploads/2011/08/Store-setting-wp-ecommerce.jpg" alt="" width="600" height="569" /></p>
<h2>Settings WP e-Commerce&gt;Presentation</h2>
<p>The presentation tab is the front of your store. <a href="http://www.instinct.co.nz/">Instinct</a>, the company behind WP e-Commerce also offers a gold cart premium plugin with more options.</p>
<p><img class="alignnone size-full wp-image-10578" title="Store-setting-presentation" src="http://wparena.com/www/wparena/media/wp-content/uploads/2011/08/Store-setting-presentation.jpg" alt="" width="600" height="569" /></p>
<p>You can change setting for Product Page Settings, Shopping Cart Settings, Product Category Settings,Thumbnail Settings, Pagination settings, and Comment Settings with <a href="http://intensedebate.com/">IntenseDebate Comments</a> plugin.</p>
<h2>Settings WP e-Commerce&gt;Admin</h2>
<p>Under Admin panel  you can set how much time a user can download a specific file. You can also lock downloads to that specific ip from which orders has been placed. You can customized the default email addresses. The purchase receipt is the message e-mailed to users after purchasing products from your shop.<br />
<strong></strong></p>
<p><img class="alignnone size-full wp-image-10580" title="Store-setting-admin" src="http://wparena.com/www/wparena/media/wp-content/uploads/2011/08/Store-setting-admin.jpg" alt="" width="600" height="569" /></p>
<p><strong>Track and Trace settings:</strong><br />
The Tracking Subject, is the subject for The Tracking Message email. The Tracking Message is the message e-mailed to users when you click &#8216;Email buyer&#8217; on the sales log. This option is only available for purchases with the status of &#8216;Job Dispatched&#8217;. Tags you can use in the email message section are %trackid% and %shop_name%</p>
<h2>Settings WP e-Commerce&gt;Shipping</h2>
<p><img class="alignnone size-full wp-image-10581" title="Store-setting-shipping" src="http://wparena.com/www/wparena/media/wp-content/uploads/2011/08/Store-setting-shipping.jpg" alt="" width="600" height="569" /></p>
<p>To enable shipping in WP e-Commerce you must select which shipping methods you want to enable on your site, along with different shipping schemes like flat rate and weight rate that will automatically calculate the shipping charges and will add these charges on top of your product price. WP e-Commerce has built in support for <a href="http://www.shipwire.com/">ShipWire </a>which is an order fulfillment company for online vendors.</p>
<p>If you want to use fixed-price shipping options like &#8220;Pickup &#8211; $0, Overnight &#8211; $10, Same day &#8211; $20, etc.&#8221; you can download a WordPress plugin from plugins directory for <a href="http://wordpress.org/extend/plugins/wp-e-commerce-fixed-rate-shipping/">Simple shipping</a>. It will appear in the list as &#8220;Fixed rate&#8221;.</p>
<h2>Organization and layout</h2>
<p>WP e-Commerce has a number of features to assist with organizing and displaying of your merchandise. These include:</p>
<h2>Easy integration with all WordPress <a href="http://wparena.com/themeforest-AmplifyBusinessTheme?" style=""  rel="nofollow" onmouseover="self.status='http://wparena.com/themeforest-AmplifyBusinessTheme?';return true;" onmouseout="self.status=''">themes</a></h2>
<p>WP e-Commerce assumes your WordPress theme has a page.php, or a single.php or an index.php like any good WordPress theme should have.<br />
Due to some limitations to the Custom Post Type system implemented by WordPress (for more information on this please read <a href="http://www.leewillis.co.uk/wordpress-custom-post-type-theming-is-broken/">here</a>) WP e-Commerce has an interesting job when rendering Products Pages. Infact most WP e-Commerce pages use two <a href="http://wparena.com/LandingPages" style=""  rel="nofollow" onmouseover="self.status='http://wparena.com/LandingPages';return true;" onmouseout="self.status=''">templates</a>. One for the overall look of the site (The arrangements for Header, Sidebar, Content, Footer) and another for The Content section. You can find detail on WP e-Commerce <a href="http://docs.getshopped.org/wiki/documentation/design-and-layout/templates">Templates</a>.</p>
<ul>
<li><a href="https://www.e-junkie.com/ecom/gb.php?cl=22794&amp;c=ib&amp;aff=107974">Gabfire Themes Library</a></li>
<li><a href="https://www.e-junkie.com/ecom/gb.php?cl=25555&amp;c=ib&amp;aff=107974">WPZOOM Themes</a></li>
<li><a href="https://www.e-junkie.com/ecom/gb.php?cl=62494&amp;c=ib&amp;aff=107974">Theme Junkie</a></li>
<li><a href="https://www.e-junkie.com/ecom/gb.php?ii=290001&amp;c=ib&amp;aff=107974&amp;cl=66253">ThemShift</a></li>
<li><a href="https://www.e-junkie.com/ecom/gb.php?cl=136641&amp;c=ib&amp;aff=107974">ThemeFuse</a></li>
<li><a href="https://www.e-junkie.com/ecom/gb.php?cl=128165&amp;c=ib&amp;aff=107974">ThemeTrust</a></li>
<li><a href="https://www.e-junkie.com/ecom/gb.php?cl=101105&amp;c=ib&amp;aff=107974">ThemeJam</a></li>
<li><a href="https://www.e-junkie.com/ecom/gb.php?cl=34898&amp;c=ib&amp;aff=107974">Organized Themes</a></li>
<li><a href="http://wordpress.org/extend/themes/crafty-cart">CraftyCart</a></li>
<li><a href="http://designdisease.com/blog/fervens-theme/">Ferevens</a></li>
<li><a href="http://wordpress.org/extend/themes/fusion">Fusion</a></li>
<li><a href="https://www.e-junkie.com/ecom/gb.php?ii=91851&amp;c=ib&amp;aff=107974&amp;cl=19136">Market Theme</a></li>
<li><a href="http://wparena.com/PandaTheme" target="_blank">PandaTheme</a></li>
<li><a href="http://wparena.com/Themify" target="_blank">Themify</a></li>
<li><a href="http://wparena.com/upthemes" target="_blank">upthemes</a></li>
<li><a href="http://wparena.com/gorillathemes" target="_blank">gorillathemes</a></li>
<li><a href="http://wparena.com/iThemeBuilder" target="_blank">iThemeBuilder</a></li>
<li><a href="http://wparena.com/GenesisThemeFramework" target="_blank">GenesisThemeFramework</a></li>
<li><a href="http://wparena.com/DIYthemes" target="_blank">DIYthemes</a></li>
<li><a href="http://wparena.com/StudioPress" target="_blank">StudioPress</a></li>
<li><a href="http://wparena.com/eleganttheme" target="_blank">eleganttheme</a></li>
<li><a href="http://wparena.com/MOJOThemes" target="_blank">MOJOThemes</a></li>
<li><a href="https://www.e-junkie.com/ecom/gb.php?cl=89938&amp;c=ib&amp;aff=107974">TokoKoo: Best Premium WordPress ecommerce themes</a></li>
</ul>
<p>Other <a href="http://wparena.com/themeforest-sensation" style=""  rel="nofollow" onmouseover="self.status='http://wparena.com/themeforest-sensation';return true;" onmouseout="self.status=''">themes</a> should work as well. If you have any doubt, just try it yourself.</p>
<h2>Products and merchandising</h2>
<p>WP e-Commerce platform provide the best solution to manage and add inventory, which give you full control over your product catalog. You can add a new product directly from the WordPress dashboard, adding any descriptive elements with a rich text editor.</p>
<h2>Widgets</h2>
<p>WordPress Widgets (WPW) <a href="http://docs.getshopped.org/wiki/documentation/design-and-layout/templates" target="_blank">[1]</a> provide a simple way to arrange the various elements of your sidebar content (known as “widgets”) without having to change any code - <a href="http://docs.getshopped.org/wiki/documentation/design-and-layout/widgets">Detail</a>.</p>
<h2>Product variations</h2>
<p>You can set product attributes for a single product. For instance, a electric store owner might create one variation for product size (small, medium, large, XL, and XXL) and another variation for color (red, green, navy, and black). The product variation for product size is seen in the following screenshot:</p>
<h2><img class="alignnone size-full wp-image-10573" title="WP-eCommerce-plugin" src="http://wparena.com/www/wparena/media/wp-content/uploads/2011/08/WP-eCommerce-plugin.jpg" alt="" width="600" height="342" /></h2>
<h2>Configuring your Payment Gateway</h2>
<p><img class="alignnone size-full wp-image-10583" title="Store-setting-payment" src="http://wparena.com/www/wparena/media/wp-content/uploads/2011/08/Store-setting-payment.jpg" alt="" width="600" height="569" /></p>
<p>Activate the payment gateways that you want to make available to your customers by selecting them below option.</p>
<ul>
<li>ChronoPay</li>
<li>Google Checkout</li>
<li>PayPal Express Checkout 2.0</li>
<li>PayPal Payments Standard 2.0</li>
<li>PayPal Pro 2.0</li>
<li>Test Gateway</li>
</ul>
<p>The plugin not only keeps track of what items the customer wants to buy, but also calculates additional shipping and handling costs that you specify. Once you start making sales, the plugin maintains a purchase log for you. All transactions are logged on a month-by-month basis. Additionally, you can download a full report as a Comma-Seperated Values (CSV) file for further analysis or financial administration. Detail: <a href="http://docs.getshopped.org/wiki/documentation/payments/payments">Payment Gateways we support / General Information</a>.</p>
<h2>Shortcodes</h2>
<p>A shortcode is a WordPress-specific code that lets you do nifty things with very little effort. Shortcodes can embed files or create objects that would normally require lots of complicated, ugly code in just one line. Shortcode = shortcut.</p>
<p><a href="http://docs.getshopped.org/wiki/documentation/design-and-layout/shortcodes">Deatil</a></p>
<p>The <a href="http://getshopped.org/">WP e-Commerce plugin</a> enhance  the power and flexibility of WordPress, and seamlessly integrates a Shopping Cart into it. Anyone with an existing WordPress installation can quickly add the ability to sell goods and services.</p>


<p>Related posts:<ol><li><a href='http://wparena.com/inspiration/wpa-storefront-the-ultimate-wp-e-commerce-theme/' rel='bookmark' title='WPA Storefront – The Ultimate WP-E-Commerce Theme'>WPA Storefront – The Ultimate WP-E-Commerce Theme</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-multiple-product-categories-into-wp-e-commerce-plugin/' rel='bookmark' title='How to add Multiple Product Categories to WP e-Commerce Plugin'>How to add Multiple Product Categories to WP e-Commerce Plugin</a></li>
<li><a href='http://wparena.com/how-to/how-to-use-wordpress-as-an-e-commerce-store/' rel='bookmark' title='How to use WordPress as an E-Commerce Store'>How to use WordPress as an E-Commerce Store</a></li>
<li><a href='http://wparena.com/how-to/how-to-integrate-magento-into-wordpress-e-commerce-site/' rel='bookmark' title='How to integrate Magento into WordPress e-Commerce site'>How to integrate Magento into WordPress e-Commerce site</a></li>
<li><a href='http://wparena.com/inspiration/why-choose-wordpress-as-an-e-commerce-platform/' rel='bookmark' title='Why choose WordPress as an E-Commerce platform'>Why choose WordPress as an E-Commerce platform</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wparena.com/how-to/create-online-store-with-free-wordpress-e-commerce-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Create Google +1 WordPress Plugin</title>
		<link>http://wparena.com/how-to/how-to-create-google-1-wordpress-plugin/</link>
		<comments>http://wparena.com/how-to/how-to-create-google-1-wordpress-plugin/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 01:48:08 +0000</pubDate>
		<dc:creator>Nur</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Google +1]]></category>
		<category><![CDATA[Google +1 button]]></category>
		<category><![CDATA[Google Plus]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>

		<guid isPermaLink="false">http://wparena.com/?p=10193</guid>
		<description><![CDATA[If you are a web developer with basic PHP skills just like me than writing a WordPress plugin is not difficult for you.  All you need, PHP skills, a right direction, some resources, a little information on how WordPress expects your plugin to behave, and most importantly a great idea. How to create a Google + [...]


Related posts:<ol><li><a href='http://wparena.com/how-to/how-to-add-navigation-trail-by-using-wordpress-plugin-breadcrumb-navxt/' rel='bookmark' title='How to add navigation trail by using WordPress Plugin &#8211; BreadCrumb NavXT'>How to add navigation trail by using WordPress Plugin &#8211; BreadCrumb NavXT</a></li>
<li><a href='http://wparena.com/inspiration/wordpress-hooks-database-resources-and-tutorials-for-plugin-developers/' rel='bookmark' title='WordPress Hooks Database, Resources and Tutorials for Plugin Developers'>WordPress Hooks Database, Resources and Tutorials for Plugin Developers</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-the-google-1-button-to-your-website/' rel='bookmark' title='How to Add the Google +1 Button to your Website'>How to Add the Google +1 Button to your Website</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-multiple-product-categories-into-wp-e-commerce-plugin/' rel='bookmark' title='How to add Multiple Product Categories to WP e-Commerce Plugin'>How to add Multiple Product Categories to WP e-Commerce Plugin</a></li>
<li><a href='http://wparena.com/how-to/how-to-move-a-wordpress-site-from-one-server-to-another/' rel='bookmark' title='How to Move a WordPress Site from one Server to another'>How to Move a WordPress Site from one Server to another</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwparena.com%2Fhow-to%2Fhow-to-create-google-1-wordpress-plugin%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwparena.com%2Fhow-to%2Fhow-to-create-google-1-wordpress-plugin%2F&amp;source=wparena&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>If you are a web developer with basic PHP skills just like me than writing a WordPress plugin is not difficult for you.  All you need, PHP skills, a right direction, some resources, a little information on how WordPress expects your plugin to behave, and most importantly a great idea.</p>
<p>How to create a Google + Plugin for WordPress.. Although there are plugins available but wouldn’t it be nice to learn how to create one from scratch? And that’s the topic of my post today — I’ll show you how to create your very own WordPress Plugin to display your Google plus feed in your post.</p>
<p>This tutorial &#8220; How to Create own Google+1 WordPress  Plugin&#8221; is only for learning purpose,  and  is the clone of <a href="http://fadihania.com/2011/06/wordpress-creating-your-own-google-plusone-plugin/">Easy Google +1 Plugin</a>, Other useful resources about how to create you own plugin.</p>
<p><a href="http://wparena.com/how-to/tools-required-to-develop-a-wordpress-plugin/">Tools required to Develop a WordPress Plugin</a><br />
<a href="http://codex.wordpress.org/Writing_a_Plugin">Writing a Plugin</a><br />
<a title="http://planetozh.com/blog/2009/09/top-10-most-common-coding-mistakes-in-wordpress-plugins/" href="http://planetozh.com/blog/2009/09/top-10-most-common-coding-mistakes-in-wordpress-plugins/">Top 10 Most Common Coding Mistakes in WordPress Plugins</a><br />
<a title="http://markjaquith.wordpress.com/2006/06/02/wordpress-203-nonces/" href="http://markjaquith.wordpress.com/2006/06/02/wordpress-203-nonces/">WordPress 2.0.3: Nonces (Secure your forms with nonces)</a><br />
<a title="http://amiworks.co.in/talk/simplified-ajax-for-wordpress-plugin-developers-using-jquery/" href="http://amiworks.co.in/talk/simplified-ajax-for-wordpress-plugin-developers-using-jquery/">Simplified AJAX For WordPress Plugin Developers using Jquery</a><br />
<a title="http://www.rafaeldohms.com.br/2008/03/10/desenvolvendo-plugins-para-wordpress/pt/" href="http://www.rafaeldohms.com.br/2008/03/10/desenvolvendo-plugins-para-wordpress/pt/">&#8220;Desenvolvendo Plugins para WordPress&#8221; by Rafael Dohms </a><br />
<a title="http://www.devlounge.net/extras/how-to-write-a-wordpress-plugin" href="http://www.devlounge.net/extras/how-to-write-a-wordpress-plugin">12 part &#8220;How to Write a WordPress Plugin&#8221; at DevLounge.net</a> by <a title="http://ronalfy.com" href="http://ronalfy.com/">Ronald Huereca</a><br />
<a title="http://ditio.net/2007/08/09/how-to-create-wordpress-plugin-from-a-scratch/" href="http://ditio.net/2007/08/09/how-to-create-wordpress-plugin-from-a-scratch/">How to create WordPress Plugin from a scratch</a><br />
<a title="http://mitcho.com/code/hookpress/" href="http://mitcho.com/code/hookpress/">HookPress</a>, a plugin that enables extending WordPress in languages other than PHP via webhooks.<br />
<a title="http://beerpla.net/2010/01/13/wordpress-plugin-development-how-to-include-css-and-javascript-conditionally-and-only-when-needed-by-the-posts/" href="http://beerpla.net/2010/01/13/wordpress-plugin-development-how-to-include-css-and-javascript-conditionally-and-only-when-needed-by-the-posts/">How To Include CSS and JavaScript Conditionally And Only When Needed By The Posts</a><br />
<a title="http://aaron.jorb.in/2010/wordpress-external-cron-plugin/" href="http://aaron.jorb.in/2010/wordpress-external-cron-plugin/">Demonstrating how to use the Settings API, WP_Http, and Pseudo-cron</a><br />
<a title="30+ Essential WordPress Plugins" href="http://wparena.com/freebies/30-essential-wordpress-plugins/">30+ Essential WordPress Plugins</a><br />
<a href="http://marketplace.tutsplus.com/item/get-going-with-google-adwords/156098?ref=wparena">Get Going with Google AdWords</a></p>
<h2>Names, Files, and Locations</h2>
<hr />
<h2>Plugin Name</h2>
<p>The plugin name must be unique, Check out <a title="Plugins" href="http://codex.wordpress.org/Plugins">Plugins</a> directory and the other repositories it refers to, to verify that your name is unique; you might also do a Google search on your proposed name. I choose  wpArena Google +1 for this plugin.</p>
<h2> Plugin Files</h2>
<p>The file name of PHP should be unique because  People who install your Plugin will be putting this PHP file into the WordPress Plugin directory in their installation, <tt>wp-content/plugins/</tt>, so no two Plugins they are using can have the same PHP file name.</p>
<p>Another option is to split your Plugin into multiple files. Your WordPress Plugin must have at least one PHP file; it could also contain JavaScript files, CSS files, image files, language files, etc. If there are multiple files, pick a unique name for a file directory and for the main PHP file, such as create a directory name &#8220;wparena-google-plusone&#8221;  and two files as easy-google-plusone.php and easy-google-plusone-admin.php</p>
<h2>Readme File</h2>
<p>If you want to host your Plugin on <a title="http://wordpress.org/extend/plugins/" href="http://wordpress.org/extend/plugins/">http://wordpress.org/extend/plugins/</a>, you also need to create a <tt>readme.txt</tt> file in a standard format, and include it with your Plugin. See <a title="http://wordpress.org/extend/plugins/about/readme.txt" href="http://wordpress.org/extend/plugins/about/readme.txt">http://wordpress.org/extend/plugins/about/readme.txt</a> for a description of the format.</p>
<p>Right now are are not adding this plugin  to WordPress Plugin Directory, so we are not creating the one.</p>
<h2>Home Page</h2>
<p>It is also very useful to create a web page to act as the home page for your WordPress Plugin. This page should describe how to install the Plugin, what it does, what versions of WordPress it is compatible with, what has changed from version to version of your Plugin, and how to use the Plugin.</p>
<h1>File Headers</h1>
<hr />
<p>The first thing is to add some information into your main Plugin PHP file, as we would add in easy-google-plusone.php file.</p>
<h2>Standard Plugin Information</h2>
<p>Without the <a href="http://codex.wordpress.org/File_Header">header</a>, plugin will never be activated, so its very important to Plugin&#8217;s main PHP file must contain a standard Plugin information header.  As we will add the following information about our wpArena Google +1  plugin:</p>
<pre>&lt;?php
/*
Plugin Name: wparena Google +1
Plugin URI: http://wparena.com/
Description: Add the Google +1 Button to WordPress posts. With wparena Google +1 you can change the +1 button settings by changing the size, postion, language, alignment or count display.
Author: Nur Moustafa
Version: 1.0
Author URI: http://wparena.com/
License: GPL2
*/
?&gt;</pre>
<p>The most important the the Plugin Name line and the rest of the information will be used to create the table of Plugins on the Plugin management screen. The order of the lines is not important.</p>
<p><a href="http://www.gnu.org/licenses/old-licenses/gpl-2.0.html">GPL2</a> is the License slug that  should be a short common identifier.</p>
<p><span style="text-decoration: underline;">Important:</span> file must be in UTF-8 encoding.</p>
<p><a name="License"></a></p>
<p>To indicate a GPL2 license, include the following lines in your Plugin:</p>
<pre><a name="License"></a><span class="Apple-style-span" style="font-family: Consolas, Monaco, monospace; font-size: 12px; line-height: 18px; white-space: pre;">&lt;?php</span>
/*  Copyright YEAR  PLUGIN_AUTHOR_NAME  (email : PLUGIN AUTHOR EMAIL)

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License, version 2, as
    published by the Free Software Foundation.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/
?&gt;</pre>
<h1>Programming Your Plugin</h1>
<hr />
<p>If you have created above files in a directory &#8221;wparena-google-plusone&#8221;  including with these two files &#8220;easy-google-plusone.php&#8221; and &#8220;easy-google-plusone-admin.php&#8221; and add this plugin directory in a wp-content/plugins directory, you can see this plugins in the administration panel so WordPress is aware of it. However, it doesn’t do anything as it contains nothing except of the information header. We are going to change this now.</p>
<h2>WordPress Plugin Hooks</h2>
<p>Hooks are the backbone of WordPress. They enable plugin developers to “hook” into the WordPress workflow to change how it works without directly modifying the core code. This enables users to easily upgrade to newer versions of WordPress<br />
without losing modifications.</p>
<p>WordPress has two primary types of hooks: action hooks and filter hooks.</p>
<p><strong>Action Hooks:</strong> Enables you to execute a function at a certain point.</p>
<p><strong>Filter Hooks:</strong> Enables you to manipulate the output passed through the hook.<br />
Hooks aren’t just for plugins. WordPress uses hooks internally. If you browse through the core source code, you can see<br />
many examples of how WordPress uses its own system to hook into itself. Read detail about Hooks: <a href="http://www.amazon.co.uk/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.co.uk%2Fgp%2Fproduct%2F0470916222&amp;tag=worare-21&amp;linkCode=ur2&amp;camp=1634&amp;creative=6738">Professional WordPress Plugin Development</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.co.uk/e/ir?t=worare-21&amp;l=ur2&amp;o=2" alt="" width="1" height="1" border="0" />.</p>
<p>For wpArena Google +1 Plugin, by calling the &#8220;wp-head&#8221;  function, we can execute and register a function before WordPress adds the head contents, That can be done using the “<code>wp_head</code>” action hook which we will use to add the Google +1 button script to the<code>&lt;head&gt;</code> tag. After this now we need to add Google+ button before or after the posts, that can be done registering a function to be executed before displaying your posts’ content using the “<code>the_content</code>” filter hook. So, Plugin will use the following two hooks:</p>
<ul>
<li>The <code>wp_head</code> action hook which will add the Google +1 button script to your blog <code>&lt;head&gt;</code> tag.</li>
<li><code>the_content</code> filter hook which will modify posts’ content and add the Google +1 button tag to posts.</li>
</ul>
<p>Always try to choose a unique name so it does not conflict with other function of any other plugin. Use a prefix to your functions to make it unique.</p>
<h2>How to add +1 Script to &lt;head&gt;</h2>
<p>To execute and register a add_action function of the Action API will take two parameters, the action name and the function both as string.</p>
<p>We are using  the name “wpgpo_script” for wp_head registered function. The wpgpo prefix is the WordPress  Google Plus One initials.</p>
<pre>add_action('wp_head', 'wpgpo_script');</pre>
<p>Now write PHP function with the same name we registered for the wp_head action.</p>
<pre>function wpgpo_script() {
//...
}</pre>
<p>By using the PHP echo() function we can add the Google +1 button script to tag.</p>
<pre class="brush: plain; title: ; notranslate">
global $post;
$content = '&lt;/pre&gt;
&lt;div class=&quot;simple_google_plusone&quot;&gt;' .
 '' .
 '&lt;/div&gt;
&lt;pre&gt;
' . $content;
</pre>
<p>Change the language according to your own preferred language.</p>
<h2>Override the Post Content</h2>
<p>The add_filter WordPress function takes the two parameters the filter hook name and plugin function name,  which will  register a a function to filter the content of the posts.</p>
<p>The following code register the wpgpo_content function to filter the_content hook and creates the wpgpo_content function which have one parameter the $content variable. The $content parameter contains post content.</p>
<pre>add_filter('the_content', 'wpgpo_content');
function wpgpo_content($content) {
    //...
}</pre>
<p>Following code will add the +1 button tag to your posts’ content by PHP <strong>dot concatenation</strong> and then return the new content. And will add the default settings +1 tag to the beginning of your posts. You can easily concatenate it to the end of your posts by starting first by the $content variable.</p>
<pre>function wpgpo_content($content) {
    $content = '' . $content;

    return $content;
}</pre>
<p>To change the settings of +1 button by using the size, count and href attributes. The href will be next replaced by each posts’ permalink as follow.</p>
<pre>$content = '&lt;g:plusone size="standard" count="true" href="&lt;your-post-permalink&gt;"&gt;&lt;/g:plusone&gt;' . $content;</pre>
<p>At the end give style to Google+ button and then to add your posts’ permalink as the href attribute of the +1 button. Get the post permalink using the get_permalink() function that takes the post ID as parameter. The $post variable is one of WordPress global variables that will use to get the current post ID.</p>
<pre class="brush: php; title: ; notranslate">
global $post;
$content = '&lt;div class=&quot;simple_google_plusone&quot;&gt;' .
               '&lt;g:plusone size=&quot;standard&quot; count=&quot;true&quot; href=&quot;' . get_permalink($post-&gt;id) . '&quot;&gt;&lt;/g:plusone&gt;' .
           '&lt;/div&gt;' . $content;
</pre>
<p>wpArena Google +1 plugin code downloadable .zip version.</p>
<h2><a href="http://wparena.com/wp-content/uploads/Plugins/wparena-google-plusone.zip">wparena-google-plusone</a></h2>
<h3>External Resources</h3>
<p><a href="http://wparena.com/Diggwp">Digging Into WordPress</a><br />
<a title="Edit “120+ People wrote a Help Manual about Google+”" href="http://wparena.com/inspiration/120-people-wrote-a-help-manual-about-google/">120+ People wrote a Help Manual about Google+</a><br />
<a href="http://net.tutsplus.com/tutorials/wordpress/anatomy-of-a-wordpress-plugin/">Anatomy of a WordPress Plugin</a><br />
<a href="http://wparena.com/how-to/how-to-add-the-google-1-button-to-your-website/">How to Add the Google +1 Button to your Website</a><br />
<a href="http://wpcandy.com/teaches/how-to-create-a-functionality-plugin">How to create your own WordPress functionality plugin</a><br />
<a href="http://corpocrat.com/2009/12/27/tutorial-how-to-write-a-wordpress-plugin/">Tutorial: How to write a WordPress Plugin?</a><br />
<a href="http://net.tutsplus.com/tutorials/wordpress/creating-a-custom-wordpress-plugin-from-scratch/">Create a Custom WordPress Plugin From Scratch</a><br />
<a href="http://blog.bluefur.com/2008/05/15/wordpress-plugin-tutorial-hello-world/">WordPress Plugin Tutorial – Hello World</a><br />
<a href="http://markjaquith.wordpress.com/2006/03/04/wp-tutorial-your-first-wp-plugin/">WP Tutorial: Your First WP Plugin &#8211; Video Tutorial</a><br />
<a href="http://net.tutsplus.com/articles/news/a-crash-course-in-wordpress-plugin-development/">A Crash-Course in WordPress Plugin Development</a><br />
<a href="http://video.wparena.com/how-to/building-a-plugin-it%E2%80%99s-easier-than-you-think/">Building a Plugin – It’s Easier Than You Think (Video)</a><br />
<a href="http://video.wparena.com/how-to/developing-wordpress-plugins-slides/">Developing WordPress Plugins – Slides</a><br />
<a href="http://www.3d-mediadesign.de/2011/07/google-free-iconset-in-3d-optik/">Google free icon set in 3d optik</a><br />
<a href="http://www.seriftuts.com/free-resources/google-plus-icon-set-png/">Google Plus (+) Icon Set PNG (dpp)</a></p>


<p>Related posts:<ol><li><a href='http://wparena.com/how-to/how-to-add-navigation-trail-by-using-wordpress-plugin-breadcrumb-navxt/' rel='bookmark' title='How to add navigation trail by using WordPress Plugin &#8211; BreadCrumb NavXT'>How to add navigation trail by using WordPress Plugin &#8211; BreadCrumb NavXT</a></li>
<li><a href='http://wparena.com/inspiration/wordpress-hooks-database-resources-and-tutorials-for-plugin-developers/' rel='bookmark' title='WordPress Hooks Database, Resources and Tutorials for Plugin Developers'>WordPress Hooks Database, Resources and Tutorials for Plugin Developers</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-the-google-1-button-to-your-website/' rel='bookmark' title='How to Add the Google +1 Button to your Website'>How to Add the Google +1 Button to your Website</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-multiple-product-categories-into-wp-e-commerce-plugin/' rel='bookmark' title='How to add Multiple Product Categories to WP e-Commerce Plugin'>How to add Multiple Product Categories to WP e-Commerce Plugin</a></li>
<li><a href='http://wparena.com/how-to/how-to-move-a-wordpress-site-from-one-server-to-another/' rel='bookmark' title='How to Move a WordPress Site from one Server to another'>How to Move a WordPress Site from one Server to another</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wparena.com/how-to/how-to-create-google-1-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Add the Google +1 Button to your Website</title>
		<link>http://wparena.com/how-to/how-to-add-the-google-1-button-to-your-website/</link>
		<comments>http://wparena.com/how-to/how-to-add-the-google-1-button-to-your-website/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 00:31:14 +0000</pubDate>
		<dc:creator>Nur</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Google +1 button]]></category>
		<category><![CDATA[plug]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>

		<guid isPermaLink="false">http://wparena.com/?p=9329</guid>
		<description><![CDATA[Few days back, Google released its Google +1 (“plus one”) button to compete with Twitter’s Tweet button and Facebook’s Like button. This is a big step towards adding the social aspects to the search results.  If you have not incorporate it into your website, do it as soon as possible. Because,  This button can generate a potential [...]


Related posts:<ol><li><a href='http://wparena.com/tools/facebook-twitter-and-google-1-traffic-pop/' rel='bookmark' title='Facebook, Twitter and Google +1 Traffic Pop'>Facebook, Twitter and Google +1 Traffic Pop</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-a-map-to-a-wordpress-post-or-page/' rel='bookmark' title='How to Add a map to a WordPress post or page'>How to Add a map to a WordPress post or page</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-a-contact-form-into-wordpress-powered-website/' rel='bookmark' title='How to Add a Contact Form into WordPress Powered Website'>How to Add a Contact Form into WordPress Powered Website</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-guestbook-in-the-wordpress-blog-and-website/' rel='bookmark' title='How to add GuestBook in the WordPress Blog and Website'>How to add GuestBook in the WordPress Blog and Website</a></li>
<li><a href='http://wparena.com/how-to/how-to-create-google-1-wordpress-plugin/' rel='bookmark' title='How to Create Google +1 WordPress Plugin'>How to Create Google +1 WordPress Plugin</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwparena.com%2Fhow-to%2Fhow-to-add-the-google-1-button-to-your-website%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwparena.com%2Fhow-to%2Fhow-to-add-the-google-1-button-to-your-website%2F&amp;source=wparena&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Few days back, Google released its <strong>Google +1</strong> (“plus one”) button to compete with Twitter’s Tweet button and Facebook’s Like button. This is a big step towards adding the social aspects to the search results.  If you have not incorporate it into your website, do it as soon as possible. Because,  This button can generate a potential traffic and exposure to your web site. All your visitor need to have a Google account to use your Google button.</p>
<p>Why Google created this button? first of all to compete  Facebook like button and Twitter&#8217;s Tweet button.</p>
<blockquote><p>Secondly, +1 helps people discover relevant content—a website, a Google search result, or an ad—from the people they already know and trust. Adding the +1 button to your pages lets users recommend your content, knowing that their friends and contacts will see their recommendation when it’s most relevant—in the context of Google search results.</p></blockquote>
<p><object width="640" height="390"><param name="movie" value="https://www.youtube.com/v/4RyY2-ofP4g?version=3&amp;hl=en_US" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="640" height="390" src="https://www.youtube.com/v/4RyY2-ofP4g?version=3&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h2>How to Add Google +1 in WordPress</h2>
<hr />
<p><img class="alignnone size-full wp-image-9433" title="How-to-add-Google-plus1-button" src="http://wparena.com/wp-content/uploads/2011/06/How-to-add-Google-plus1-button.jpg" alt="" width="374" height="270" /></p>
<p>The process is very simple, just visit <a rel="nofollow" href="http://www.google.com/webmasters/+1/button/index.html" target="_blank">official page for publishers</a> which offers different sizes  with some customization if you want to do it. If still you want to know step by step guide you can visit: <a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-the-google-1-button-to-your-wordpress/">How to Add the Google +1 Button to your WordPress</a>. Webmasters who want to quickly get button code to run on their site should use the <a href="http://www.google.com/webmasters/+1button">configurator</a>. Before using <a href="http://code.google.com/apis/+1button/">+1 Button  API</a> Call you can read the policies on <a href="http://www.google.com/webmasters/+1/button/policy.html">Google +1 Button Publisher Policies</a>. One my  my friend from <strong><a href="http://wparena.com/DIYthemes">DIYthemes</a></strong> for WordPress Thesis <a href="http://wparena.com/themeforest" style=""  rel="nofollow" onmouseover="self.status='http://wparena.com/themeforest';return true;" onmouseout="self.status=''">themes</a> explaiedn in detail about using  +1button API call on his blog <a href="http://diythemes.com/thesis/rtfm/add-google-plus-1-share-button/">How to Add Google +1 (plus one) Share Button to WordPress and Thesis</a> which is a detail tutorial about this excellent +1 button.</p>
<h2>WordPress Plugins for Google +1 Button</h2>
<hr />
<p>If  you  love using WordPress plugin to help you to display sharing  button at the end of your post. Than you can use <strong><a href="http://wordpress.org/extend/plugins/sharedaddy/">Sharedaddy </a></strong> which already allow you to share your posts with Twitter, Facebook, and a host of other services like Google +1 button. You can configure services to appear as icons, text, or both. Some services have additional options to display smart buttons, such as Twitter, which will update the number of times the post has been shared.</p>
<h2><a href="http://codecanyon.net/item/google-1-for-wordpress/261316?ref=wparena">Google +1 for WordPress</a></h2>
<p><a href="http://codecanyon.net/item/google-1-for-wordpress/261316?ref=wparena"><img class="alignnone size-full wp-image-9436" title="google-plus1-wordpress" src="http://wparena.com/wp-content/uploads/2011/06/google-plus1-wordpress.jpg" alt="" width="590" height="300" /></a></p>
<p>Google +1 for WordPress is the only full blown Google +1 plugin for WordPress. +1 Pro gives you support for both custom WordPress ShortCodes AND Template Tags! Add as many Google +1 buttons to your site as you want, anywhere you want!</p>
<h2><a href="http://codecanyon.net/item/google-traffic-pop-for-wordpress/266832?ref=wparena">Google Traffic Pop for WordPress</a></h2>
<p><a href="http://codecanyon.net/item/google-traffic-pop-for-wordpress/266832?ref=wparena"><img class="alignnone size-full wp-image-9434" title="Google-Traffic-Pop-WordPress" src="http://wparena.com/wp-content/uploads/2011/06/Google-Traffic-Pop-WordPress.jpg" alt="" width="590" height="300" /></a></p>
<p>Take full advantage of Google’s 500 million plus user base by giving your visitors an alternative to ads that also create value for you. By clicking +1 on your content they share it with everyone and they get to view your content uninterrupted: a great alternative to those who have content they cant charge for but want added value from it. Requiring them to +1 before reading / viewing / downloading etc will add thousands of new visitors and links to your sites! <strong>More +1’s = more traffic = more money!</strong></p>
<h2><a href="http://codecanyon.net/item/google-1-content-locker/305388?ref=wparena">Google +1 Content Locker</a></h2>
<p><a href="http://codecanyon.net/item/google-1-content-locker/305388?ref=wparena"><img class="alignnone size-full wp-image-9437" title="google-plus1-content-locker" src="http://wparena.com/wp-content/uploads/2011/06/google-plus1-content-locker.jpg" alt="" width="590" height="168" /></a></p>
<p>Tap into Google’s 500 million plus users with Google +1 Content Locker and gain immediate search and social traffic boosts. More +1’s = more traffic = more money!</p>
<p>The first plugin of its kind, Google +1 Content Locker allows you to wrap your WordPress post and page content in a “content locker” that will require the user to share your content with Google +1 before they can see it. Build a social media super prescense over night by locking all, or just parts of your posts and pages!</p>
<p>For Joomla bloggers: <a href="http://www.joomlablogger.net/joomla-tutorials/joomla-extension-tutorials/how-to-add-a-google-1-button-to-your-joomla-site/">HOW TO ADD A GOOGLE +1 BUTTON TO YOUR JOOMLA SITE</a>.</p>
<h2>Why Google +1 Button is Bad for Search Engine Optimization</h2>
<hr />
<p><img class="size-full wp-image-9431 aligncenter" title="Google +1-ButtonBad-Search-Engine-Optimization" src="http://wparena.com/wp-content/uploads/2011/06/Google-+1-ButtonBad-Search-Engine-Optimization.jpg" alt="Why Google +1 Button is Bad for Search Engine Optimization" width="250" height="250" /></p>
<p>I havn&#8217;t face any problem with the load time of this button but <strong><a href="http://bhartzer.wordpress.com/2011/06/07/why-google-1-button-is-bad-for-search-engine-optimization/">bhartzer </a></strong>on WordPress.com has written that</p>
<blockquote><p>It will severely impact your page load time, which will ultimately hurt your website’s usability. Slow page load times will also impact your website’s search engine optimization. Do not implement the Google +1 button at this time.</p></blockquote>
<p>Never forget to rock the Wparena&#8217;s +1 button at the end of this post.</p>


<p>Related posts:<ol><li><a href='http://wparena.com/tools/facebook-twitter-and-google-1-traffic-pop/' rel='bookmark' title='Facebook, Twitter and Google +1 Traffic Pop'>Facebook, Twitter and Google +1 Traffic Pop</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-a-map-to-a-wordpress-post-or-page/' rel='bookmark' title='How to Add a map to a WordPress post or page'>How to Add a map to a WordPress post or page</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-a-contact-form-into-wordpress-powered-website/' rel='bookmark' title='How to Add a Contact Form into WordPress Powered Website'>How to Add a Contact Form into WordPress Powered Website</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-guestbook-in-the-wordpress-blog-and-website/' rel='bookmark' title='How to add GuestBook in the WordPress Blog and Website'>How to add GuestBook in the WordPress Blog and Website</a></li>
<li><a href='http://wparena.com/how-to/how-to-create-google-1-wordpress-plugin/' rel='bookmark' title='How to Create Google +1 WordPress Plugin'>How to Create Google +1 WordPress Plugin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wparena.com/how-to/how-to-add-the-google-1-button-to-your-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Facebook, Twitter and Google +1 Traffic Pop</title>
		<link>http://wparena.com/tools/facebook-twitter-and-google-1-traffic-pop/</link>
		<comments>http://wparena.com/tools/facebook-twitter-and-google-1-traffic-pop/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 20:41:48 +0000</pubDate>
		<dc:creator>Nur</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Traffic]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>

		<guid isPermaLink="false">http://wparena.com/?p=9109</guid>
		<description><![CDATA[Take full advantage of these tools to get more traffic to your website. What they are saying about them: More likes = more exposure = more traffic = more money! More tweets = more exposure = more traffic = more money! More +1’s = more traffic = more money! Twitter Traffic Pop for WordPress Instead [...]


Related posts:<ol><li><a href='http://wparena.com/tools/gives-users-the-ability-to-comment-via-facebook-twitter-google-or-wordpress-ids/' rel='bookmark' title='Gives users the ability to comment via Facebook, Twitter, Google or WordPress IDs.'>Gives users the ability to comment via Facebook, Twitter, Google or WordPress IDs.</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-the-google-1-button-to-your-website/' rel='bookmark' title='How to Add the Google +1 Button to your Website'>How to Add the Google +1 Button to your Website</a></li>
<li><a href='http://wparena.com/how-to/how-to-integrate-facebook-with-wordpress-automatically/' rel='bookmark' title='How To Integrate Facebook With WordPress Automatically'>How To Integrate Facebook With WordPress Automatically</a></li>
<li><a href='http://wparena.com/how-to/best-twitter-tips-and-tutorials-for-websites-marketing/' rel='bookmark' title='Best Twitter Tips and Tutorials for WebSites Marketing'>Best Twitter Tips and Tutorials for WebSites Marketing</a></li>
<li><a href='http://wparena.com/inspiration/best-twitter-desktop-client-applications/' rel='bookmark' title='Best Twitter Desktop Client Applications'>Best Twitter Desktop Client Applications</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwparena.com%2Ftools%2Ffacebook-twitter-and-google-1-traffic-pop%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwparena.com%2Ftools%2Ffacebook-twitter-and-google-1-traffic-pop%2F&amp;source=wparena&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Take full advantage of these tools to get more traffic to your website. What they are saying about them:</p>
<p><strong>More likes = more exposure = more traffic = more money!</strong><br />
<strong>More tweets = more exposure = more traffic = more money!</strong><br />
<strong>More +1’s = more traffic = more money!</strong></p>
<h2><a href="http://codecanyon.net/item/twitter-traffic-pop-for-wordpress/159193?ref=wparena">Twitter Traffic Pop for WordPress</a></h2>
<p><strong><a href="http://codecanyon.net/item/twitter-traffic-pop-for-wordpress/159193?ref=wparena"><img class="alignnone size-full wp-image-9110" title="Twitter-Traffic-Pop-WordPress" src="http://wparena.com/wp-content/uploads/2011/06/Twitter-Traffic-Pop-WordPress.jpg" alt="" width="590" height="300" /></a></strong></p>
<p>Instead of forcing your visitors to see popups with ads, why not ask them to Tweet instead! Tap into Twitter’s 100 million plus users with this hot new popup style marketing tactic. Make Twitter your slave with one line of code! <strong>More tweets = more exposure = more traffic = more money!</strong></p>
<p><strong>Twitter Traffic Pop Featutres</strong></p>
<ul>
<li><strong>Fully customizable</strong> CSS included, looks just like a twitter.com pop-up</li>
<li>Optional close button</li>
<li><strong>LOCKS out page functionality</strong> behind the popup!</li>
<li>Cookies<strong> remember users who already ‘Tweeted’</strong> about your site</li>
<li>Works on all sites and big and small</li>
<li>Viral, Twitter styled pop-up is proven to induce more tweet traffic.</li>
<li><strong>Make Twitter your slave with one line of code!</strong></li>
<li>Great for PREMIUM CONTENT areas or even have your uses tweet ads for you!</li>
<li>Allows you to <strong>pre-populate the tweet input box!</strong></li>
</ul>
<p>Includes full source with documentation and well commented WordPress Plugin and jQuery plugin version of the pop up script.</p>
<h2><a href="http://codecanyon.net/item/twitter-traffic-pop-for-wordpress/159193?ref=wparena">Detail</a></h2>
<h2><a href="http://codecanyon.net/item/google-traffic-pop/299533?ref=wparena">Google Traffic Pop</a></h2>
<p><a href="http://codecanyon.net/item/google-traffic-pop/299533?ref=wparena"><img class="alignnone size-full wp-image-9111" title="Google-Traffic-Pop" src="http://wparena.com/wp-content/uploads/2011/06/Google-Traffic-Pop.jpg" alt="" width="590" height="300" /></a></p>
<p>Take full advantage of Google’s 500 million plus user base by giving your visitors an alternative to ads that also create value for you. By clicking +1 on your content they share it with everyone and they get to view your content uninterrupted: a great alternative to those who have content they cant charge for but want added value from it. Requiring them to +1 before reading / viewing / downloading etc will add thousands of new visitors and links to your sites! <strong>More +1’s = more traffic = more money!</strong></p>
<h2><a href="http://codecanyon.net/item/google-traffic-pop/full_screen_preview/299533?ref=wparena">Live preview</a> | <a href="http://codecanyon.net/item/google-traffic-pop/299533?ref=wparena">Detail</a></h2>
<h2><a href="http://codecanyon.net/item/facebook-traffic-pop/142429?ref=wparena">Facebook Traffic Pop</a></h2>
<p><a href="http://codecanyon.net/item/facebook-traffic-pop/142429?ref=wparena"><img class="alignnone size-full wp-image-9112" title="Facebook-Traffic-Pop" src="http://wparena.com/wp-content/uploads/2011/06/Facebook-Traffic-Pop.jpg" alt="" width="590" height="300" /></a></p>
<p>Tap into Facebook’s 500 million plus users now with the hottest Facebook traffic plugin. Facebook traffic pop is a new breed of ‘popups’ that will allow you to have your users like your pages, instead of trying to get them to click ads. <strong>More likes = more exposure = more traffic = more money!</strong></p>
<h2><a href="http://codecanyon.net/item/facebook-traffic-pop/full_screen_preview/142429?ref=wparena">Live preview</a> | <a href="http://codecanyon.net/item/facebook-traffic-pop/142429?ref=wparena">Detail</a></h2>
<h2><a href="http://codecanyon.net/item/twitter-traffic-pop/144670?ref=wparena">Twitter Traffic Pop</a></h2>
<p><a href="http://codecanyon.net/item/twitter-traffic-pop/144670?ref=wparena"><img class="alignnone size-full wp-image-9113" title="Twitter-Traffic-Pop" src="http://wparena.com/wp-content/uploads/2011/06/Twitter-Traffic-Pop.jpg" alt="" width="590" height="300" /></a></p>
<p>Instead of forcing your visitors to see popups, why not ask them to Tweet instead! Tap into Twitter’s 100 million plus users with this hot new popup style marketing tactic. Make Twitter your slave with one line of code! <strong>More tweets = more exposure = more traffic = more money!</strong></p>
<p><strong>Twitter Traffic Pop Featutres</strong></p>
<ul>
<li>Fully customizable CSS included</li>
<li>Optional close button</li>
<li>LOCKS out page functionality behind the popup!</li>
<li>Cookies remember users who already ‘Tweeted’ about your site</li>
<li>Works on all sites and big and small</li>
<li>Viral, Twitter styled pop-up is proven to induce more tweet traffic.</li>
<li>Make Twitter your slave with one line of code!</li>
<li>Great for PREMIUM CONTENT areas or even have your uses tweet ads for you!</li>
</ul>
<p>Includes full source with documentation and demo examples, and I have even included a blank template for you to build pages off with no set-up required!</p>
<h2><a href="http://codecanyon.net/item/twitter-traffic-pop/144670?ref=wparena">Detail</a></h2>


<p>Related posts:<ol><li><a href='http://wparena.com/tools/gives-users-the-ability-to-comment-via-facebook-twitter-google-or-wordpress-ids/' rel='bookmark' title='Gives users the ability to comment via Facebook, Twitter, Google or WordPress IDs.'>Gives users the ability to comment via Facebook, Twitter, Google or WordPress IDs.</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-the-google-1-button-to-your-website/' rel='bookmark' title='How to Add the Google +1 Button to your Website'>How to Add the Google +1 Button to your Website</a></li>
<li><a href='http://wparena.com/how-to/how-to-integrate-facebook-with-wordpress-automatically/' rel='bookmark' title='How To Integrate Facebook With WordPress Automatically'>How To Integrate Facebook With WordPress Automatically</a></li>
<li><a href='http://wparena.com/how-to/best-twitter-tips-and-tutorials-for-websites-marketing/' rel='bookmark' title='Best Twitter Tips and Tutorials for WebSites Marketing'>Best Twitter Tips and Tutorials for WebSites Marketing</a></li>
<li><a href='http://wparena.com/inspiration/best-twitter-desktop-client-applications/' rel='bookmark' title='Best Twitter Desktop Client Applications'>Best Twitter Desktop Client Applications</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wparena.com/tools/facebook-twitter-and-google-1-traffic-pop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run Advertisement campaign with WP PRO Advertising System Plugin</title>
		<link>http://wparena.com/tools/run-advertisement-campaign-with-wp-pro-advertising-system-plugin/</link>
		<comments>http://wparena.com/tools/run-advertisement-campaign-with-wp-pro-advertising-system-plugin/#comments</comments>
		<pubDate>Sat, 18 Jun 2011 21:33:51 +0000</pubDate>
		<dc:creator>Nur</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[advertisement]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>

		<guid isPermaLink="false">http://wparena.com/?p=9084</guid>
		<description><![CDATA[This WordPress Plugin allows you to manage your advertisements on your WordPress site. It has many powerfull features to put advertisements on your website, manage advertisers, campaigns, banners &#38; adzones, track clicks, impressions &#38; CTR all in just a few seconds. List of Features Manage Advertisers create a profile for each advertiser. Manage Campaigns create [...]


Related posts:<ol><li><a href='http://wparena.com/tools/wordpress-plugins-to-manage-your-advertisement-banners/' rel='bookmark' title='WordPress Plugins To Manage Your Advertisement Banners'>WordPress Plugins To Manage Your Advertisement Banners</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-multiple-product-categories-into-wp-e-commerce-plugin/' rel='bookmark' title='How to add Multiple Product Categories to WP e-Commerce Plugin'>How to add Multiple Product Categories to WP e-Commerce Plugin</a></li>
<li><a href='http://wparena.com/inspiration/best-innovative-uses-of-wordpress-to-run-online-invoicing-system/' rel='bookmark' title='Best  Innovative Uses of WordPress to run Online Invoicing System'>Best  Innovative Uses of WordPress to run Online Invoicing System</a></li>
<li><a href='http://wparena.com/how-to/how-to-automatically-pull-content-from-blogs-or-online-applications-wp-o-matic/' rel='bookmark' title='How to automatically pull content from blogs or online applications-WP-O-Matic'>How to automatically pull content from blogs or online applications-WP-O-Matic</a></li>
<li><a href='http://wparena.com/tools/8-free-banner-exchange-websites/' rel='bookmark' title='8+ Free Banner Exchange Websites'>8+ Free Banner Exchange Websites</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwparena.com%2Ftools%2Frun-advertisement-campaign-with-wp-pro-advertising-system-plugin%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwparena.com%2Ftools%2Frun-advertisement-campaign-with-wp-pro-advertising-system-plugin%2F&amp;source=wparena&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>This WordPress Plugin allows you to manage your advertisements on your WordPress site. It has many powerfull features to put advertisements on your website, manage advertisers, campaigns, banners &amp; adzones, track clicks, impressions &amp; CTR all in just a few seconds.</p>
<p><a href="http://codecanyon.net/item/wp-pro-advertising-system/269693?ref=wparena"><img class="alignnone size-full wp-image-9085" title="WP-PRO-Advertising-System" src="http://wparena.com/wp-content/uploads/2011/06/WP-PRO-Advertising-System.jpg" alt="" width="590" height="300" /></a></p>
<p><strong>List of Features</strong></p>
<ul>
<li><strong>Manage Advertisers</strong> create a profile for each advertiser.</li>
<li><strong>Manage Campaigns</strong> create multiple advertising campaigns for each advertiser. this way you keep a clean overview over all of your banners.</li>
<li><strong>Manage Banners</strong> You can choose between 3 options to add banners.
<ol>
<li>Upload a banner from your computer</li>
<li>Link an external banner</li>
<li>Paste <a href="http://wparena.com/LandingPages" style=""  rel="nofollow" onmouseover="self.status='http://wparena.com/LandingPages';return true;" onmouseout="self.status=''">HTML</a> Code (adSense, iframes, &#8230;)</li>
</ol>
</li>
<li><strong>Manage Adzones</strong> you can place adzones anywhere you want on your websit. As soon as you link a banner to an adzone it will be visible on your site. Adzones can be any size. There are 2 ways to add adzones to your website.
<ol>
<li>Template tag: <em>this is a function you can include into your template.</em></li>
<li>Shortcode: <em>this is a shortcode you can use inside your posts/pages.</em></li>
</ol>
</li>
<li><strong>Track statistics</strong> keep an overview of how many impressions/clicks your ads get and calculate the CTR for every banner, campaign and advertiser.</li>
<li><strong>Customize using Add-Ons</strong> Add-ons allow you to extend the possibilities of the WP Pro Advertising System. This way you can build an advertising manager just the way you like. No need to worry about stuff you’ll never use. Only add the plugins you really need.
<ol>
<li><strong>PRO Ad Region Data</strong>
<ul>
<li>This plugin allows you to show specific banners to users from sprecific countries.</li>
</ul>
</li>
</ol>
</li>
</ul>
<h2><a href="http://codecanyon.net/item/wp-pro-advertising-system/full_screen_preview/269693?ref=wparena">Online Preview</a> | <a href="http://codecanyon.net/item/wp-pro-advertising-system/269693?ref=wparena">Detail</a></h2>


<p>Related posts:<ol><li><a href='http://wparena.com/tools/wordpress-plugins-to-manage-your-advertisement-banners/' rel='bookmark' title='WordPress Plugins To Manage Your Advertisement Banners'>WordPress Plugins To Manage Your Advertisement Banners</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-multiple-product-categories-into-wp-e-commerce-plugin/' rel='bookmark' title='How to add Multiple Product Categories to WP e-Commerce Plugin'>How to add Multiple Product Categories to WP e-Commerce Plugin</a></li>
<li><a href='http://wparena.com/inspiration/best-innovative-uses-of-wordpress-to-run-online-invoicing-system/' rel='bookmark' title='Best  Innovative Uses of WordPress to run Online Invoicing System'>Best  Innovative Uses of WordPress to run Online Invoicing System</a></li>
<li><a href='http://wparena.com/how-to/how-to-automatically-pull-content-from-blogs-or-online-applications-wp-o-matic/' rel='bookmark' title='How to automatically pull content from blogs or online applications-WP-O-Matic'>How to automatically pull content from blogs or online applications-WP-O-Matic</a></li>
<li><a href='http://wparena.com/tools/8-free-banner-exchange-websites/' rel='bookmark' title='8+ Free Banner Exchange Websites'>8+ Free Banner Exchange Websites</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wparena.com/tools/run-advertisement-campaign-with-wp-pro-advertising-system-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Designers and Developers Go for Cloud Computing!</title>
		<link>http://wparena.com/how-to/wordpress-designers-and-developers-go-for-cloud-computing/</link>
		<comments>http://wparena.com/how-to/wordpress-designers-and-developers-go-for-cloud-computing/#comments</comments>
		<pubDate>Sat, 04 Jun 2011 23:07:39 +0000</pubDate>
		<dc:creator>Nur</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Cloud Hosting]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[tag cloud]]></category>
		<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[WordPres hosting]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>

		<guid isPermaLink="false">http://wparena.com/?p=8737</guid>
		<description><![CDATA[For me WordPress designers and developers should go for Cloud computing, because it is an emerging technology. They are often in the business of selling ideas which is not a physical product so they don’t actually have to be anywhere when they work. They just need to be near a computer with an internet connection. Image Ref. Compared [...]


Related posts:<ol><li><a href='http://wparena.com/how-to/online-resources-for-wordpress-developers-and-designers/' rel='bookmark' title='Online resources for WordPress Developers and Designers'>Online resources for WordPress Developers and Designers</a></li>
<li><a href='http://wparena.com/inspiration/best-wordpress-blogs-of-wordpress-developers-and-designers/' rel='bookmark' title='Best WordPress Blogs of WordPress Developers and Designers'>Best WordPress Blogs of WordPress Developers and Designers</a></li>
<li><a href='http://wparena.com/how-to/useful-plugins-for-wordpress-theme-developers/' rel='bookmark' title='Useful Plugins for WordPress Theme Developers'>Useful Plugins for WordPress Theme Developers</a></li>
<li><a href='http://wparena.com/tools/collabpress-plugin-task-and-project-management-for-wordpress-and-wpmu/' rel='bookmark' title='CollabPress Plugin – Task and Project Management for WordPress and WPMU'>CollabPress Plugin – Task and Project Management for WordPress and WPMU</a></li>
<li><a href='http://wparena.com/freebies/best-online-generators-for-designers-developers/' rel='bookmark' title='Best Online Generators  for Designers &amp; Developers'>Best Online Generators  for Designers &#038; Developers</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwparena.com%2Fhow-to%2Fwordpress-designers-and-developers-go-for-cloud-computing%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwparena.com%2Fhow-to%2Fwordpress-designers-and-developers-go-for-cloud-computing%2F&amp;source=wparena&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>For me WordPress designers and developers should go for Cloud computing, because it is an emerging technology. They are often in the business of selling ideas which is not a physical product so they don’t actually have to be anywhere when they work. They just need to be near a computer with an internet connection.</p>
<p><img class="alignnone size-full wp-image-8742" title="Cloud Computing for Designers and Developers " src="http://wparena.com/wp-content/uploads/2011/06/cloudcomputing.jpg" alt="" width="578" height="274" /></p>
<pre><a href="http://miguelcollisdesign.com/cloud.html#images/cloud-large.jpg" target="_blank">Image Ref.</a></pre>
<p>Compared to the traditional shared, VPS or dedicated hosting , cloud hosting offers unprecedented benefits that makes your design and development  grow as you can concentrate on your core designing rather than worrying about the hardware software requirements.</p>
<h2>Optimizing your WordPress installation for cloud computing</h2>
<p>Optimization is very important to run a successful WordPress powered website or blog. On shared hosting no need to pay much attention to how much server resources your WordPress installation utilizes. As well dedicated hosting or virtual private servers can eat up ram and utilize a lots of resources. However, on a cloud computing environment like <a href="http://wparena.com/AmazonS3" target="_blank">Amazon Simple Storage Service (Amazon S3)</a>, give you the edge that only utilized resources will be use.</p>
<p>On the other hand, you should optimize your WordPress installation and use some plugins which help you to minimize resources it uses. Here are some useful plugins.</p>
<h2 id="info-box">Amazon Cloud Computing S3 plugin for WordPress</h2>
<p>This WordPress plugin allows you to use <a href="http://wparena.com/AmazonS3">Amazon’s Simple Storage Service</a> to host your media for your WordPress powered blog.</p>
<p>Thanks to <a href="http://tantannoodles.com/toolkit/wordpress-s3/">Tan Tan Noodles Blog</a>, <a href="http://gigaom.com/2006/07/13/startups-embracing-amazon-s3/">online storage solution</a> and <a href="http://www.codinghorror.com/blog/archives/000808.html">host their images</a> for providing valuable tips about using <a href="http://wparena.com/AmazonS3">Amazon S3</a>.</p>
<p><a href="http://downloads.wordpress.org/plugin/tantan-s3.0.4.zip">Download </a></p>
<h2>Google (XML) Sitemaps Generator for WordPress</h2>
<p>Author: <a href="http://www.arnebrachhold.de/" target="_blank">Arne Brachhold</a></p>
<p>This plugin will generate a special XML sitemap which will help search engines like Google, Bing, Yahoo and Ask.com to better index your blog. With such a sitemap, it’s much easier for the crawlers to see the complete structure of your site and retrieve it more efficiently. The plugin supports all kinds of WordPress generated pages as well as custom URLs. Additionally it notifies all major search engines every time you create a post about the new content.</p>
<p><a href="http://downloads.wordpress.org/plugin/google-sitemap-generator.3.2.4.zip" target="_blank">Download</a> | <a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/" target="_blank">Plugin Homepage</a></p>
<h2>Resize on Upload</h2>
<p>Author: <a href="http://blog.yeticode.co.uk/" target="_blank">John Tindell</a></p>
<p><img title="Resize-on-Upload" src="http://wparena.com/wp-content/uploads/2010/08/Resize-on-Upload.jpg" alt="" width="600" height="242" /></p>
<p>Provides the ability to set a maximum width or height an uploaded image can be, if the image is larger than the specified values then it resized. Ideal for users who wish to upload multiple files without having to resize them via Photoshop or GIMP first.</p>
<p><a href="http://downloads.wordpress.org/plugin/resize-on-upload.zip" target="_blank">Download</a> | <a href="http://blog.yeticode.co.uk/resize-on-upload-plugin/" target="_blank">Plugin Homepage</a></p>
<p><img title="Contact-Form-7" src="http://wparena.com/wp-content/uploads/2010/08/Contact-Form-71.jpg" alt="" width="600" height="481" /></p>
<p>Just another contact form plugin. Simple but flexible.<br />
Contact Form 7 can manage multiple contact forms, plus you can customize the form and the mail contents flexibly with simple markup. The form supports Ajax-powered submitting, CAPTCHA, Akismet spam filtering and so on.</p>
<p><a href="http://downloads.wordpress.org/plugin/contact-form-7.2.3.1.zip" target="_blank">Download</a> | <a href="http://contactform7.com/" target="_blank">Plugin Homepage</a></p>
<h2>Yet Another Related Posts Plugin</h2>
<p>Author: <a href="http://mitcho.com/" target="_blank">mitcho</a> (Michael Yoshitaka Erlewine)</p>
<p>Yet Another Related Posts Plugin (YARPP) gives you a list of posts and/or pages related to the current entry, introducing the reader to other relevant content on your site.</p>
<p><a href="http://downloads.wordpress.org/plugin/yet-another-related-posts-plugin.3.1.9.zip" target="_blank">Download </a>| <a href="http://mitcho.com/code/yarpp/" target="_blank">Plugin Homepage</a></p>
<h2>A Better Tag Cloud</h2>
<p>Author: <a href="http://www.nkuttler.de/" target="_blank">Nicolas Kuttler</a></p>
<p><img title="Better-Tag-Cloud" src="http://wparena.com/wp-content/uploads/2010/08/Better-Tag-Cloud.jpg" alt="" width="600" height="181" /></p>
<p>I was pretty annoyed with the default tag cloud widget. It does a lot of things wrong, like inconsistent <a rel="nofollow" href="http://wparena.com/LandingPages">HTML</a> markup and hardcoded font sizes. So I wanted to write my own. Digging through the code I found out that the wordpress wp_tag_cloud() function is pretty powerful. In fact, it could do almost everyhing I want. So I abandoned my plan to rewrite everything from scratch and added a nice admin interface to my tag cloud widget.</p>
<p><a href="http://downloads.wordpress.org/plugin/nktagcloud.0.99.3.zip" target="_blank">Download</a> | <a href="http://www.nkuttler.de/wordpress/nktagcloud/" target="_blank">Plugin Homepage</a></p>
<h2>Google Analytics for WordPress</h2>
<p>Author: <a href="http://yoast.com/" target="_blank">Joost de Valk</a></p>
<p><img title="Google-Analytics-for-WordPress" src="http://wparena.com/wp-content/uploads/2010/08/Google-Analytics-for-WordPress.jpg" alt="" width="600" height="583" /></p>
<p>The Google Analytics for WordPress plugin allows you to track your blog easily and with lots of metadata. It adds the asynchronous tracking code for Google Analytics and automatically tracks and segments all outbound links from within posts, comment author links, links within comments, blogroll links and downloads. It’ll add custom variables while tracking to show you pageviews per author, post type, category or publication year. It’ll also allow you to track AdSense clicks, add extra search engines, ignore certain user levels, and much much more: this is simply the Ultimate Google Analytic solution for WP!<br />
<a href="http://downloads.wordpress.org/plugin/google-analytics-for-wordpress.4.0.8.zip" target="_blank">Download</a> | <a href="http://yoast.com/wordpress/analytics/#utm_source=wordpress&amp;utm_medium=plugin&amp;utm_campaign=google-analytics-for-wordpress&amp;utm_content=v407" target="_blank">Plugin Homepage</a></p>
<p>These are the links contain more useful plugin list:<br />
<a href="http://wparena.com/freebies/30-essential-wordpress-plugins/">30+ Essential WordPress Plugins</a><br />
<a href="http://wparena.com/tools/the-best-wordpress-plugins-for-bloggers-of-the-future/">The Best WordPress Plugins for Bloggers of the Future</a></p>
<h2>Cloud Website Builders</h2>
<p>The following websites allow anybody to create a blog.</p>
<ul>
<li><a href="http://www.blogger.com/" target="_blank">Blogger</a><br />
Blogger is a website that allows anybody to create their own blog for free.</li>
<li><a href="http://sites.google.com/" target="_blank">Google Sites</a><br />
Google sites allows anybody to easily build a public website or private intranet with advanced functionality. Even quite sophisticated sites can be built and hosted with no payment required.</li>
<li><a href="http://www.moonfruit.com/" target="_blank">Moonfruit</a><br />
Moonfruit is a very easy to use, drag-and-drop website building tool that has already been used to build over 2.5 million websites. A site with up to 15 pages can be built and hosted for free. After that a subscription becomes payable.</li>
<li><a href="http://www.webs.com/" target="_blank">Webs.com</a><br />
Webs is a free or paid website building tool that offers more code-savvy website designers somewhat greater technical flexibility that most of its competitors.</li>
<li><a href="http://wordpress.com/" target="_blank">WordPress</a><br />
Wordpress is a very popular and sophisticated tool for creating your own free or paid blogging website.</li>
</ul>
<h2>Photo, Video and Audio Editors</h2>
<p><img class="alignnone size-full wp-image-8740" title="favicon-creator" src="http://wparena.com/wp-content/uploads/2011/06/favicon-creator.jpg" alt="" width="646" height="212" /></p>
<p>These are all free online media editing tools.</p>
<ul>
<li><a href="http://aviary.com/" target="_blank">Aviary</a><br />
Aviary offers suite of online media editing tools, including its <a href="http://aviary.com/tools/image-editor" target="_blank">Phoenix</a> photo editor, <a href="http://aviary.com/tools/vector-editor" target="_blank">Raven</a>vector-based drawing package (a bit like an online version of Adobe Illustrator), and its <a href="http://aviary.com/online/audio-editor" target="_blank">Myna</a>multi-track audio editor.</li>
<li><a href="http://www.fotoflexer.com/" target="_blank">FotoFlexer</a><br />
Fotoflexer is a popular online photo editor that includes great integration with <a href="http://www.facebook.com/" target="_blank">Facebook</a>, <a href="http://www.flickr.com/" target="_blank">Flickr</a>and <a href="http://www.myspace.com/" target="_blank">MySpace</a>.</li>
<li><a href="http://www.flauntr.com/" target="_blank">flauntR</a><br />
flauntR is an online photo editing package that can integrate with a range of other popular web applications that use photos.</li>
<li><a href="http://www.jaycut.com/" target="_blank">Jaycut</a><br />
Jaycut is a free online video editor. It allows twin-track video editing with transitions and titles, and has direct <a href="http://www.youtube.com/" target="_blank">YouTube</a> upload functionality. A demo can even be tried immediately without registration! This really is cutting-edge cloud software as its most impressive.</li>
<li><a href="http://www.photoshop.com/" target="_blank">Photoshop Express</a><br />
Photoshop express is a free if very-cut-down online version of the industry-standard PhotoShop photo editor.</li>
<li><a href="http://picnik.com/" target="_blank">Picnik</a><br />
Picnik is an online photoeditor that can be used for free without registration. It is a cheery package for those who want clear and simple tools.</li>
<li><a href="http://www.pixlr.com/" target="_blank">Pixlr</a><br />
Pixlr is an absolutely excellent free online photo editor. An interface called <a href="http://pixlr.com/express/" target="_blank">Pixlr Express</a> is provided for image editing novices. However, for those who have experience of the full version of PhotoShop, the full <a href="http://pixlr.com/editor/" target="_blank">Pixlr Editor</a> offers a very powerful range of tools. These include layers, a history brush, and wide range of real-time filters. Anybody can use Pixlr for free online without even registering. Hurrah! However, online file storage is not included.</li>
<li><a href="http://pixorial.com/" target="_blank">Pixorial.com</a><br />
Pixorial is another online video editor. Whilst not as sophisticated as <a href="http://jaycut.com/" target="_blank">Jaycut</a>, it includes some cool collaborative features.</li>
</ul>
<h2>Cloud E-Mail Packages</h2>
<p>Allow e-mail to be written and collected in the cloud.</p>
<ul>
<li><a href="http://mail.google.com/" target="_blank">Gmail</a><br />
Gmail is the very popular free web-based e-mail offering from Google.</li>
<li><a href="http://mimecast.com/" target="_blank">Mimecast</a><br />
Mimecast is a cloud-based e-mail system for businesses that offers enterprise-class security and archiving.</li>
<li><a href="http://www.mail.live.com/" target="_blank">Windows Live Hotmail</a><br />
Windows Live Hotmail is Microsoft&#8217;s free online e-mail system. It offers 5Gb of storage that &#8216;automatically increases as you need it&#8217;.</li>
<li><a href="http://www.mail.yahoo.com/" target="_blank">Yahoo! Mail</a><br />
Yahoo! Mail is a free online e-mail system which claims to offer &#8216;unlimited&#8217; storage.</li>
</ul>
<h2>Virtual Meeting Tools</h2>
<p>Following packages all facilitate virtual meetings by allowing remote participants to electronically communicate and share computing resources.</p>
<ul>
<li><a href="http://www.adobe.com/acom/connectnow" target="_blank">Adobe ConnectNow</a><br />
Adobe ConnectNow is a sophisticated online application for running virtual meetings. Users can share files, notes and their entire screens, as well as using online whiteboards and audio or video conferencing. Both free and paid versions are available.</li>
<li><a href="http://www.lotuslive.com/meetings" target="_blank">LotusLive Meetings</a><br />
LotusLive meetings is a paid online virtual meeting tool from IBM, and one element of the broader LotusLive online collaboration suite.</li>
<li><a href="http://www.webex.com/" target="_blank">WebEx</a><br />
WebEx is a suite of online collaboration tools from Internet giant Cisco. It features file and desktop sharing combined with phone conferencing and video conferencing and is becoming an industry standard. Whilst WebEx is a paid service, a free trial is available.</li>
</ul>
<h2><a href="http://themeforest.net/item/freemium-saas-wordpress-cms-blog-theme-i/114395?ref=wparena">Freemium SaaS WordPress CMS + Blog Theme I</a></h2>
<p><a href="http://themeforest.net/item/freemium-saas-wordpress-cms-blog-theme-i/114395?ref=wparena"><img class="alignnone size-full wp-image-8766" title="Freemium-SaaS-WordpressCMS" src="http://wparena.com/wp-content/uploads/2011/06/Freemium-SaaS-WordpressCMS.jpg" alt="" width="590" height="300" /></a></p>
<p>Freemium SaaS I for WordPress is a theme created for you to market your SaaS (Software as a Service) Web application. This WordPress theme includes the following:</p>
<ul>
<li>WordPress 3.0 Compatible</li>
<li>23 useful shortcodes</li>
<li>6 admin switchable color schemes</li>
<li>Editable 3, 4 or 5 Column Pricing Grid (as static blocks)</li>
<li>Product Tour Pages Template</li>
<li>Billing info &amp; Credit Card Signup Form (must be integrated with your own gateway)</li>
<li>Detailed Setup Instructions</li>
<li>Sample content to get your site looking like our demo</li>
<li>6 Page <a href="http://wparena.com/LandingPages" style=""  rel="nofollow" onmouseover="self.status='http://wparena.com/LandingPages';return true;" onmouseout="self.status=''">Templates</a></li>
<li>4 Panel Theme Settings Admin</li>
<li>Localization support</li>
</ul>
<p>Includes layered Photoshop PSD (Photoshop) file of entire site.</p>
<p><a href="http://themeforest.net/item/freemium-saas-wordpress-cms-blog-theme-i/full_screen_preview/114395?ref=wparena">Live Preview</a> | <a href="http://themeforest.net/item/freemium-saas-wordpress-cms-blog-theme-i/114395?ref=wparena">Detail</a></p>
<h2><a href="http://themeforest.net/item/freemium-saas-wordpress-cms-blog-theme-ii/114695?ref=wparena">Freemium SaaS WordPress CMS + Blog Theme II</a></h2>
<p><a href="http://themeforest.net/item/freemium-saas-wordpress-cms-blog-theme-ii/114695?ref=wparena"><img class="alignnone size-full wp-image-8767" title="Freemium-SaaS-Wordpress-CMS" src="http://wparena.com/wp-content/uploads/2011/06/Freemium-SaaS-Wordpress-CMS.png" alt="" width="590" height="300" /></a></p>
<p>Freemium SaaS II for WordPress is a theme created for you to market your SaaS (Software as a Service) Web application. This WordPress theme includes the following:</p>
<ul>
<li>WordPress 3.0 Compatible</li>
<li>21 useful shortcodes</li>
<li>Editable 3, 4 or 5 Column Pricing Grid (as static blocks)</li>
<li>Product Tour Pages Template</li>
<li>Billing info &amp; Credit Card Signup Form (must be integrated with your own gateway)</li>
<li>Detailed Instructions Documentation</li>
<li>6 Page <a href="http://wparena.com/LandingPages" style=""  rel="nofollow" onmouseover="self.status='http://wparena.com/LandingPages';return true;" onmouseout="self.status=''">Templates</a></li>
<li>Custom 4-panel Admin Settings</li>
</ul>
<p>Includes layered Photoshop PSD (Photoshop) file of entire site.</p>
<p><a href="http://themeforest.net/item/freemium-saas-wordpress-cms-blog-theme-ii/full_screen_preview/114695?ref=wparena">Live Preview</a> | <a href="http://themeforest.net/item/freemium-saas-wordpress-cms-blog-theme-ii/114695?ref=wparena">Detail</a></p>
<p>If you want to understand more about Cloud Computing than you must read this book:</p>
<p><a href="http://www.amazon.co.uk/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.co.uk%2FCloud-Computing-Web-Based-Applications-Collaborate%2Fdp%2F0789738031%3Fs%3Dbooks%26ie%3DUTF8%26qid%3D1307226448%26sr%3D1-12&amp;tag=worare-21&amp;linkCode=ur2&amp;camp=1634&amp;creative=6738" target="_blank"><img class="alignnone size-full wp-image-8739" title="Cloud-Computing" src="http://wparena.com/wp-content/uploads/2011/06/Cloud-Computing.jpg" alt="" width="252" height="323" /></a><br />
<a href="http://www.amazon.co.uk/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.co.uk%2FCloud-Computing-Web-Based-Applications-Collaborate%2Fdp%2F0789738031%3Fs%3Dbooks%26ie%3DUTF8%26qid%3D1307226448%26sr%3D1-12&amp;tag=worare-21&amp;linkCode=ur2&amp;camp=1634&amp;creative=6738" target="_blank"> </a></p>
<p><strong><a href="http://www.amazon.co.uk/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.co.uk%2FCloud-Computing-Web-Based-Applications-Collaborate%2Fdp%2F0789738031%3Fs%3Dbooks%26ie%3DUTF8%26qid%3D1307226448%26sr%3D1-12&amp;tag=worare-21&amp;linkCode=ur2&amp;camp=1634&amp;creative=6738" target="_blank">Cloud Computing: Web-Based Applications That Change the Way You Work and Collaborate Online</a>.</strong></p>


<p>Related posts:<ol><li><a href='http://wparena.com/how-to/online-resources-for-wordpress-developers-and-designers/' rel='bookmark' title='Online resources for WordPress Developers and Designers'>Online resources for WordPress Developers and Designers</a></li>
<li><a href='http://wparena.com/inspiration/best-wordpress-blogs-of-wordpress-developers-and-designers/' rel='bookmark' title='Best WordPress Blogs of WordPress Developers and Designers'>Best WordPress Blogs of WordPress Developers and Designers</a></li>
<li><a href='http://wparena.com/how-to/useful-plugins-for-wordpress-theme-developers/' rel='bookmark' title='Useful Plugins for WordPress Theme Developers'>Useful Plugins for WordPress Theme Developers</a></li>
<li><a href='http://wparena.com/tools/collabpress-plugin-task-and-project-management-for-wordpress-and-wpmu/' rel='bookmark' title='CollabPress Plugin – Task and Project Management for WordPress and WPMU'>CollabPress Plugin – Task and Project Management for WordPress and WPMU</a></li>
<li><a href='http://wparena.com/freebies/best-online-generators-for-designers-developers/' rel='bookmark' title='Best Online Generators  for Designers &amp; Developers'>Best Online Generators  for Designers &#038; Developers</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wparena.com/how-to/wordpress-designers-and-developers-go-for-cloud-computing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How and Where to add AdSense to WordPress blog</title>
		<link>http://wparena.com/tools/how-and-where-to-add-adsense-to-wordpress-blog/</link>
		<comments>http://wparena.com/tools/how-and-where-to-add-adsense-to-wordpress-blog/#comments</comments>
		<pubDate>Wed, 01 Jun 2011 00:13:24 +0000</pubDate>
		<dc:creator>Nur</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[ad management]]></category>
		<category><![CDATA[Adsense]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>

		<guid isPermaLink="false">http://wparena.com/?p=8623</guid>
		<description><![CDATA[Now bloggers do blogging to make money. And the first thing they want to do is to put Google AdSense on their blog. Embedding or placing Google AdSense on your WordPress can be accomplished in a variety of ways. Here is a WordPress guide that gives you different options for integrating Ads into your WordPress blog. Google [...]


Related posts:<ol><li><a href='http://wparena.com/how-to/how-to-add-a-map-to-a-wordpress-post-or-page/' rel='bookmark' title='How to Add a map to a WordPress post or page'>How to Add a map to a WordPress post or page</a></li>
<li><a href='http://wparena.com/how-to/how-to-hide-show-widgets-on-certain-wordpress-pages-posts-categories/' rel='bookmark' title='How to Hide or Show Widgets on Certain WordPress Pages, Posts and Categories'>How to Hide or Show Widgets on Certain WordPress Pages, Posts and Categories</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-guestbook-in-the-wordpress-blog-and-website/' rel='bookmark' title='How to add GuestBook in the WordPress Blog and Website'>How to add GuestBook in the WordPress Blog and Website</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-navigation-trail-by-using-wordpress-plugin-breadcrumb-navxt/' rel='bookmark' title='How to add navigation trail by using WordPress Plugin &#8211; BreadCrumb NavXT'>How to add navigation trail by using WordPress Plugin &#8211; BreadCrumb NavXT</a></li>
<li><a href='http://wparena.com/how-to/how-to-addshow-images-with-wp-category/' rel='bookmark' title='How to add/Show Images with WP-Category'>How to add/Show Images with WP-Category</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwparena.com%2Ftools%2Fhow-and-where-to-add-adsense-to-wordpress-blog%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwparena.com%2Ftools%2Fhow-and-where-to-add-adsense-to-wordpress-blog%2F&amp;source=wparena&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Now bloggers do blogging to make money. And the first thing they want to do is to put Google AdSense on their blog. Embedding or placing Google AdSense on your WordPress can be accomplished in a variety of ways. Here is a WordPress guide that gives you different options for integrating Ads into your <a rel="tag" href="http://technorati.com/blogs/wparena.com">WordPress blog</a>.</p>
<h2>Google Adsense in a Sidebar</h2>
<hr />
<p><a href="http://wparena.com/PriceCalculatorforConstantContent"><img class="alignnone size-full wp-image-8629" title="adsense_wordpress" src="http://wparena.com/wp-content/uploads/2011/05/adsense_wordpress.jpg" alt="" width="300" height="200" /></a></p>
<p>The easiest way to add adds in sidebar is to use WordPress widgets. Adding Google Adsense code to your sidebar and moving them into the order you want is easily achievable by simply dragging and dropping. You can also add anything you want including <a href="http://wparena.com/LandingPages" style=""  rel="nofollow" onmouseover="self.status='http://wparena.com/LandingPages';return true;" onmouseout="self.status=''">HTML</a> code into a text widget.</p>
<p>The latest version of WordPress is integrated with widgets. If you are using old version which does not support widgets, than you can  grab the <a href="http://automattic.com/code/widgets/" target="_blank">Sidebar widgets plugin</a>. Keep in mind that not all WordPress <a href="http://wparena.com/themeforest-AmplifyBusinessTheme?=" style=""  rel="nofollow" onmouseover="self.status='http://wparena.com/themeforest-AmplifyBusinessTheme?=';return true;" onmouseout="self.status=''">themes</a> are “Widget Ready” so if you don’t see the widget option in your dashboard then you will need to <a href="http://automattic.com/code/widgets/themes/" target="_blank">Widgetize </a>your theme.</p>
<h3>Even more information</h3>
<dl>
<dt><a href="http://automattic.com/code/widgets/use/">How to use Widgets</a>: For bloggers: how to install and use Widgets on your own blog</dt>
<dt><a href="http://automattic.com/code/widgets/themes/">Widgetizing Themes</a>: For designers: how to make your <a href="http://wparena.com/themeforest-AmplifyBusinessTheme?" style=""  rel="nofollow" onmouseover="self.status='http://wparena.com/themeforest-AmplifyBusinessTheme?';return true;" onmouseout="self.status=''">themes</a> work with widgets</dt>
<dt><a href="http://automattic.com/code/widgets/plugins/">Widgetizing Plugins</a>: For developers: how to make widgets for WordPress blogs</dt>
</dl>
<h2>AdSense Code Into A WordPress Theme</h2>
<hr />
<p><a href="http://wparena.com/PriceCalculatorforConstantContent"><img class="alignnone size-full wp-image-8627" title="AdvAdsense" src="http://wparena.com/wp-content/uploads/2011/05/AdvAdsense.jpg" alt="" width="400" height="400" /></a></p>
<p>With WordPress Plugins like <a title="Permanent Link: AdSense-Deluxe WordPress Plugin" rel="bookmark" href="http://www.acmetech.com/blog/2005/07/26/adsense-deluxe-wordpress-plugin/">AdSense-Deluxe</a>, you can place Adsense code on any post or page. If you don&#8217;t want to use Plugin even than you can place to add your code in the main index template (index.php),  also be placed in the single post (single.php), page template (page.php), archives and if your theme has one the 404 template. Open one of the files and place your code just above the post content, so place the code above like this:</p>
<blockquote><p><strong>Your Code Here</strong></p>
<p>&lt;?php if (have_posts()) : //Are there any posts? ?&gt;</p></blockquote>
<p><strong>Other places to place the code are:</strong></p>
<p>Below the post,  above or below the comments:</p>
<blockquote><p>&lt;?php if ( comments_open() ) : //if comments are allowed ?&gt;</p></blockquote>
<p>You can experiment with many different places, just be sure to backup any file you are attempting to edit, and that the AdSense code or banner fits in the area and that all <a href="http://wparena.com/LandingPages" style=""  rel="nofollow" onmouseover="self.status='http://wparena.com/LandingPages';return true;" onmouseout="self.status=''">HTML</a> or script tags are properly closed. It would also be wise to view your changes in different browsers and different size windows to make sure it looks right.</p>
<h2>Best WordPress Plugins for Google Adsense</h2>
<hr />
<p><a href="http://wparena.com/PriceCalculatorforConstantContent"><img class="alignnone size-medium wp-image-8628" title="adsense-wordpress" src="http://wparena.com/wp-content/uploads/2011/05/adsense-wordpress-620x283.jpg" alt="" width="620" height="283" /></a></p>
<p>WordPress allows bloggers to easily <strong>integrate Google Adsense inside wordpress</strong> using plugins.For AdSense within a post I recommend following WordPress Plugins for Google  AdSense.</p>
<p><strong><a href="http://www.acmetech.com/blog/2005/07/26/adsense-deluxe-wordpress-plugin/">Adsense Deluxe</a></strong> – probably the most popular and perhaps the best AdSense plugin out there, AdSense Deluxe lets you automatically insert ads (it works with Yahoo ads, too) into your posts or pages. Very configurable and yet simple to use.</p>
<p><strong><a href="http://wp.uberdose.com/2006/11/05/adman/">AdMan</a></strong> – integrates ads directly inside your blog posts. Compatible with AdSense.</p>
<p><strong><a href="http://wordpress.org/extend/plugins/adsense-manager/">AdSense Manager</a></strong> – a fully featured AdSense manager. Use the latest version only, as older versions had some issues with the AdSense terms and conditions.</p>
<p><strong><a href="http://tech.gaeatimes.com/index.php/archive/wordpress-plugin-adrotator-rotate-your-ads-including-adsense-dynamically/">AdRotator</a></strong> – AdRotator rotates (doh!) your AdSense ads, and combines them with other advertising programs.</p>
<p><strong><a href="http://www.biggnuts.com/adsense-plugin/">Adsense Injection</a></strong> – inserts Adsense code randomly into a pre-existing blog. Takes a random paragraph (or br tag) break in your article and inserts adsense code. It does one per story on multi-post pages (home, archive, category) and let’s you pick how many to show on single post pages.</p>
<p><strong><a href="http://urbangiraffe.com/plugins/google-ad-wrap/">Google Ad Wrap</a></strong> – show that pesky Google spider what content on your blog is really important</p>
<p><strong><a href="http://www.supriyadisw.net/2006/07/adsense-beautifier">Adsense Beautifier</a></strong> – places images next to your AdSense ads, which should increase the clickthrough rate. Be very careful with this one, as there’s some controversy over whether this violates the AdSense T&amp;C.</p>
<p><strong><a href="http://www.harleyquine.com/code/author-advertising-plugin/">Author Adsense </a></strong>– split revenue between several blog authors on the same blog.</p>
<p><strong><a href="http://adsense.ayanev.com/">AdSense Sharing Revenue and Earnings System</a> </strong>– another revenue sharing plugin for AdSense on WordPress. Also shows you your earnings in real time.</p>
<p><strong><a href="http://www.internetvibes.net/2006/09/29/adsense-wordpress-plugin/">Adsense Earnings WordPress Plugin</a></strong> – always be in control of your AdSense earnings, right from the WordPress Admin panel.</p>
<p><a href="http://wordpress.org/extend/plugins/whydowork-AdSense/"><strong>WhyDoWork AdSense Plugin</strong></a> &#8211; Thie plugin will help you to insert adsense ads on your blog with out modifying template with useful options. It’s depend on you that what kind of different adsense ads wanna show on page. As you can insert ads 468×60 ad at the start of a article, or same on below of article in your wordpress blog. It’s better way to add ads in blog with out working on template.</p>
<p><a href="http://wordpress.org/extend/plugins/wordpress-plugin-for-simple-google-adsense-insertion/"><strong>WP Simple Adsense Insertion</strong></a> &#8211; This plugin will help you to add google adsense ds to your blog post, pages and also in sidebar. There are so many plugin will help you to insert google adsense ads in post, but this plugin will help you to show ads in pages and sidebar too. Whenever you want to show ads in sidebar, need to using trigger text or calling the php function, it’s simple and easy way to do.</p>
<p><a href="http://wordpress.org/extend/plugins/easy-adsenser/"><strong>Easy AdSense</strong></a> &#8211; This plugin will help you to insert ads into posts, sidebar and add a google search box. it’s very easy to do, and it will give you complete solution for everything adsense related. You can customize google search with adsense. whenever visitor will earch it will show google ads too.</p>
<h2>Adsense Ready WordPress <a href="http://wparena.com/themeforest" style=""  rel="nofollow" onmouseover="self.status='http://wparena.com/themeforest';return true;" onmouseout="self.status=''">Themes</a></h2>
<hr />
<h2><a href="http://themeforest.net/item/robust5-in-1-business-portfolio-wp-theme/108600?ref=wparena">Robust-5 in 1 Business &amp; Portfolio WP Theme</a></h2>
<p><a href="http://themeforest.net/item/robust5-in-1-business-portfolio-wp-theme/108600?ref=wparena"><img class="alignnone size-full wp-image-8631" title="Business-portfolio-WP-Theme" src="http://wparena.com/wp-content/uploads/2011/05/Business-portfolio-WP-Theme.png" alt="" width="590" height="300" /></a></p>
<p>Robust is a premium wordpress theme that will suite any project you can think off thanks to the fresh look and clean design. The theme comes with 5 color skins that are sure to impress any of your site visitors and will suite to your company’s needs.</p>
<p><a href="http://themeforest.net/item/robust5-in-1-business-portfolio-wp-theme/full_screen_preview/108600?ref=wparena">Live Preview</a> | <a href="http://themeforest.net/item/robust5-in-1-business-portfolio-wp-theme/108600?ref=wparena">Detail</a></p>
<h2><a href="http://themeforest.net/item/bvdbeautiful-website-designwordpress/64910?ref=wparena">BVD-Beautiful Website Design-Wordpress</a></h2>
<p><a href="http://themeforest.net/item/bvdbeautiful-website-designwordpress/64910?ref=wparena"><img class="alignnone size-full wp-image-8632" title="Website-Design-Wordpress" src="http://wparena.com/wp-content/uploads/2011/05/Website-Design-Wordpress.jpg" alt="" width="590" height="300" /></a></p>
<p><a href="http://themeforest.net/item/bvdbeautiful-website-designwordpress/full_screen_preview/64910?ref=wparena">Live Preview</a> | <a href="http://themeforest.net/item/bvdbeautiful-website-designwordpress/64910?ref=wparena">Detail</a></p>
<h2><a href="http://themeforest.net/item/egg-theme-personal-wordpress-blog-theme/45799?ref=wparena">Egg Theme &#8211; Personal WordPress Blog theme</a></h2>
<p><a href="http://themeforest.net/item/egg-theme-personal-wordpress-blog-theme/45799?ref=wparena"><img class="alignnone size-full wp-image-8633" title="Wordpress-Blog-theme" src="http://wparena.com/wp-content/uploads/2011/05/Wordpress-Blog-theme.jpg" alt="" width="590" height="300" /></a></p>
<p>2 column, Traditional widget ready theme, Special styled head post and custom widgets to fit the blog design.</p>
<p><a href="http://themeforest.net/item/egg-theme-personal-wordpress-blog-theme/full_screen_preview/45799?ref=wparena">Live Preview</a> | <a href="http://themeforest.net/item/egg-theme-personal-wordpress-blog-theme/45799?ref=wparena">Detail</a></p>
<h2><a href="http://www.mojo-themes.com/item/avura-elegant-magazine-theme/?r=wparena">Avura – Elegant Magazine Theme</a></h2>
<p><a href="http://www.mojo-themes.com/item/avura-elegant-magazine-theme/?r=wparena"><img class="alignnone size-full wp-image-8634" title="Avura–Elegant-Magazine-Theme" src="http://wparena.com/wp-content/uploads/2011/05/Avura–Elegant-Magazine-Theme.jpg" alt="" width="590" height="330" /></a></p>
<p><a href="http://www.mojo-themes.com/item/avura-elegant-magazine-theme/demo/?r=wparena">Live Preview</a> | <a href="http://www.mojo-themes.com/item/avura-elegant-magazine-theme/?r=wparena">Detail</a></p>
<h2><a href="http://www.mojo-themes.com/item/hugo-minimalistic-portfolio-wordpress-theme/?r=wparena">Hugo – Minimalistic Portfolio WordPress Theme</a></h2>
<p><a href="http://www.mojo-themes.com/item/hugo-minimalistic-portfolio-wordpress-theme/?r=wparena"><img class="alignnone size-full wp-image-8635" title="Hugo– WordPress-Theme" src="http://wparena.com/wp-content/uploads/2011/05/Hugo–-WordPress-Theme.jpg" alt="" width="590" height="330" /></a></p>
<p><a href="http://www.mojo-themes.com/item/hugo-minimalistic-portfolio-wordpress-theme/demo/?r=wparena">Live Preview</a> | <a href="http://www.mojo-themes.com/item/hugo-minimalistic-portfolio-wordpress-theme/?r=wparena">Detail</a></p>


<p>Related posts:<ol><li><a href='http://wparena.com/how-to/how-to-add-a-map-to-a-wordpress-post-or-page/' rel='bookmark' title='How to Add a map to a WordPress post or page'>How to Add a map to a WordPress post or page</a></li>
<li><a href='http://wparena.com/how-to/how-to-hide-show-widgets-on-certain-wordpress-pages-posts-categories/' rel='bookmark' title='How to Hide or Show Widgets on Certain WordPress Pages, Posts and Categories'>How to Hide or Show Widgets on Certain WordPress Pages, Posts and Categories</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-guestbook-in-the-wordpress-blog-and-website/' rel='bookmark' title='How to add GuestBook in the WordPress Blog and Website'>How to add GuestBook in the WordPress Blog and Website</a></li>
<li><a href='http://wparena.com/how-to/how-to-add-navigation-trail-by-using-wordpress-plugin-breadcrumb-navxt/' rel='bookmark' title='How to add navigation trail by using WordPress Plugin &#8211; BreadCrumb NavXT'>How to add navigation trail by using WordPress Plugin &#8211; BreadCrumb NavXT</a></li>
<li><a href='http://wparena.com/how-to/how-to-addshow-images-with-wp-category/' rel='bookmark' title='How to add/Show Images with WP-Category'>How to add/Show Images with WP-Category</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wparena.com/tools/how-and-where-to-add-adsense-to-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Must WordPress Setting for New Installation</title>
		<link>http://wparena.com/how-to/must-wordpress-setting-for-new-installation/</link>
		<comments>http://wparena.com/how-to/must-wordpress-setting-for-new-installation/#comments</comments>
		<pubDate>Sun, 29 May 2011 18:30:33 +0000</pubDate>
		<dc:creator>Nur</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Ping]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Installation]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>

		<guid isPermaLink="false">http://wparena.com/?p=8558</guid>
		<description><![CDATA[One of my friend Rai Niaz Ahmad have installed WordPress 3.1.3 and asked for help to set up. After providing him all guidelines, There are some  important settings to change in WordPress installation, which are very helpful for WordPress Tweaking and &#8220;Must To Do Settings&#8221; to improve site performance and very essential changes you should make. WordPress [...]


Related posts:<ol><li><a href='http://wparena.com/how-to/how-to-setting-up-limit-logon-attempts-for-wordpress-blog/' rel='bookmark' title='How to Setting up Limit Logon Attempts for WordPress Blog'>How to Setting up Limit Logon Attempts for WordPress Blog</a></li>
<li><a href='http://wparena.com/how-to/how-to-hide-show-widgets-on-certain-wordpress-pages-posts-categories/' rel='bookmark' title='How to Hide or Show Widgets on Certain WordPress Pages, Posts and Categories'>How to Hide or Show Widgets on Certain WordPress Pages, Posts and Categories</a></li>
<li><a href='http://wparena.com/how-to/how-to-move-a-wordpress-site-from-one-server-to-another/' rel='bookmark' title='How to Move a WordPress Site from one Server to another'>How to Move a WordPress Site from one Server to another</a></li>
<li><a href='http://wparena.com/how-to/how-to-integrate-facebook-with-wordpress-automatically/' rel='bookmark' title='How To Integrate Facebook With WordPress Automatically'>How To Integrate Facebook With WordPress Automatically</a></li>
<li><a href='http://wparena.com/tools/wordpress-error-notification-in-your-e-mail-box/' rel='bookmark' title='WordPress Error Notification in your E-mail Box'>WordPress Error Notification in your E-mail Box</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwparena.com%2Fhow-to%2Fmust-wordpress-setting-for-new-installation%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwparena.com%2Fhow-to%2Fmust-wordpress-setting-for-new-installation%2F&amp;source=wparena&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>One of my friend <a href="http://rainiazahmad.com/">Rai Niaz Ahmad</a> have installed WordPress 3.1.3 and asked for help to set up. After providing him all guidelines, There are some  important settings to change in WordPress installation, which are very helpful for WordPress Tweaking and &#8220;Must To Do Settings&#8221; to improve site performance and very essential changes you should make.</p>
<h2>WordPress General Setting:</h2>
<p><img class="alignnone size-full wp-image-8559" title="General-Setting" src="http://wparena.com/wp-content/uploads/2011/05/General-Setting.jpg" alt="" width="600" height="303" /></p>
<p>You must take account following WordPress General settings to effect immediately after installation.<br />
1. Site Title<br />
2. Tagline<br />
3. Email<br />
4. Set time zone</p>
<h2>WordPress Reading Settings:</h2>
<p>This option give you choice to select <strong>Front page displays</strong> options. Its all depends upon your theme, or If you want to use your own created page to  display as a Home Page, then select <strong>&#8220;A Static Page&#8221;</strong> option, which will give you more option to display as a Home page. Select your page and click <strong>&#8220;Save Setting&#8221;</strong> button. Otherwise use your latest Post to be display on home page.</p>
<h2>WordPress Discussion Settings:</h2>
<p>Here you will find bundle of setting, don&#8217;t be panic. Because these setting are very useful which allow people to post comments on new articles. These setting will help you handle with <a href="http://wparena.com/how-to/how-to-redirect-the-spammers-where-you-want/">spammers</a>, As well you can <a href="http://wparena.com/how-to/stopping-spam-with-recaptcha/">Stop spam with reCAPTCHA</a>.   You can encourage visitors to comment by following these steps: <a href="http://wparena.com/?p=5456">How to Enhance and Encourage to Comments</a>.<br />
Under Discussion Settings, you can choose your own <a href="http://wparena.com/how-to/how-to-display-author-photo-in-wordpress-post-and-comments-using-gravatar/">Avatars</a> along with your own comments on your blog.</p>
<h2>WordPress Permalinks Settings:</h2>
<p>Choose a <a href="http://wparena.com/how-to/how-to-generate-search-engine-friendly-permalinks-for-wordpress-post/">permalink</a> structure that you feel comfortable with and that fits your blog. The suggestions made by WordPress work well, especially the following structure:<br />
<strong>/%year%/%monthnum%/%day%/%postname%/</strong></p>
<p><strong>and %category%/%postname%/</strong></p>
<h2>Privacy Settings:</h2>
<p>Confirm that you have select the following option &#8220;I would like my site to be visible to everyone, including search engines (like Google, Bing, Technorati) and archivers&#8221;.</p>
<h2><a href="http://wparena.com/tools/the-best-wordpress-plugins-for-bloggers-of-the-future/">WordPress Plugins</a>:</h2>
<p>Thanks to the WordPress for modification through thousand of the Plugins available. It doesn’t matter what you want to accomplish on your blog, here is the fuel for excellence that will give you an edge over other blogging platform, these WordPress Plugins are the key for the birth and success of blogs. Every Blogger from beginners to more experienced webmaster can modify blog and can get access through highly sophisticated and powerful publishing tool and by implementing these WordPress Plugins you blog will get more success and power.</p>
<h2><a href="http://wparena.com/freebies/30-essential-wordpress-plugins/">30+ Essential WordPress Plugins</a></h2>
<h2>WordPress ping list  settings:</h2>
<p>On installation WordPress pings only have one ping  site. |You should tell Google to index your site as soon as you write a post, so you have to extent this ping list.Here is my most working ping list of 2011.</p>
<p>Here is the result (just copy and paste this list into Options &gt; <strong>Writing</strong> &gt; <strong>Update Services</strong>):</p>
<p>http://rpc.pingomatic.com</p>
<p>http://rpc.technorati.com/rpc/ping</p>
<p>http://blogsearch.google.com/ping/RPC2</p>
<p>http://ping.weblogs.se/</p>
<p>http://blogmatcher.com/u.php</p>
<p>http://coreblog.org/ping/</p>
<p>http://www.blogpeople.net/servlet/weblogUpdates</p>
<p>http://bulkfeeds.net/rpc</p>
<p>http://trackback.bakeinu.jp/bakeping.php</p>
<p>http://ping.myblog.jp</p>
<p>http://ping.bitacoras.com</p>
<p>http://ping.bloggers.jp/rpc/</p>
<p>http://ping.blogmura.jp/rpc/</p>
<p>http://xmlrpc.blogg.de</p>
<p>http://1470.net/api/ping</p>
<p>http://bblog.com/ping.php</p>
<p>http://blog.goo.ne.jp/XMLRPC</p>
<h2>More Resources on Ping:</h2>
<p><a href="http://www.instant-info-online.com/wordpress-compressed-all-inclusive-ping-list.html">WordPress Compressed All-Inclusive Ping List</a><br />
<a href="http://www.fridaytrafficreport.com/setting-up-your-wordpress-ping-list/">Setting Up Your WordPress Ping List</a><br />
<a href="http://h3x.no/2010/08/05/my-wordpress-ping-list">My WordPress ping list</a><br />
<a href="http://www.shariff.org/7-most-essential-setting-not-to-ignored-for-a-newly-installed-wordpress-blog.html">7 Most Essential Setting not to ignored for a newly installed WordPress Blog</a></p>
<h2><a href="http://wparena.com/tools/best-premium-and-free-wordpress-contact-form-plugins/">WordPress Contact Page:</a></h2>
<p><a href="http://wparena.com/tools/best-premium-and-free-wordpress-contact-form-plugins/"><img class="alignnone size-full wp-image-8476" title="Contact-Form-WordPress-free-plugin_-C-ef_0" src="http://wparena.com/wp-content/uploads/2011/05/Contact-Form-WordPress-free-plugin_-C-ef_0.png" alt="" width="458" height="305" /></a></p>
<p>Contact Form play a very important role to make connection between Website users and owners. Specially if you are running an e-commerce, social networking or multi user website. Even that if you are running a personal blog, you need a contact form for advertisers to contact you for their advertisement.</p>
<p><span style="font-size: 20px; font-weight: bold;"><a href="http://www.arvixe.com/2501.html" target="_blank"><strong>Arvixe Web Hosting</strong></a></span></p>
<p><a href="http://www.arvixe.com/2501.html" target="_blank">Arvixe</a> is simply the best OpenCart hosting solution available. They are providing customized script hosting since 2003. They serve thousands of customers worldwide with their lightning fast optimized servers, high performance fiberoptic networking, extremely high reliability and 24/7/365 friendly expert support.</p>
<ul>
<li>1-click Auto-installer for OpenCart</li>
<li>24/7/365 Live Chat, Phone and Email Support</li>
<li>99.9% uptime guarantee</li>
</ul>
<p><strong><a href="http://membership.thinkvitamin.com/?aid=214&amp;utm_source=aff">LEARN WEB DESIGN &amp; DEVELOPMENT</a></strong> High quality video training to keep you on the cutting edge.<br />
<strong><a rel="nofollow" href="http://www.ostraining.com/idevaffiliate/idevaffiliate.php?id=232_3_3_2" target="_blank">Open Source Training</a></strong> teaches people how to use Joomla, Drupal and WordPress.</p>
<p>&nbsp;</p>


<p>Related posts:<ol><li><a href='http://wparena.com/how-to/how-to-setting-up-limit-logon-attempts-for-wordpress-blog/' rel='bookmark' title='How to Setting up Limit Logon Attempts for WordPress Blog'>How to Setting up Limit Logon Attempts for WordPress Blog</a></li>
<li><a href='http://wparena.com/how-to/how-to-hide-show-widgets-on-certain-wordpress-pages-posts-categories/' rel='bookmark' title='How to Hide or Show Widgets on Certain WordPress Pages, Posts and Categories'>How to Hide or Show Widgets on Certain WordPress Pages, Posts and Categories</a></li>
<li><a href='http://wparena.com/how-to/how-to-move-a-wordpress-site-from-one-server-to-another/' rel='bookmark' title='How to Move a WordPress Site from one Server to another'>How to Move a WordPress Site from one Server to another</a></li>
<li><a href='http://wparena.com/how-to/how-to-integrate-facebook-with-wordpress-automatically/' rel='bookmark' title='How To Integrate Facebook With WordPress Automatically'>How To Integrate Facebook With WordPress Automatically</a></li>
<li><a href='http://wparena.com/tools/wordpress-error-notification-in-your-e-mail-box/' rel='bookmark' title='WordPress Error Notification in your E-mail Box'>WordPress Error Notification in your E-mail Box</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wparena.com/how-to/must-wordpress-setting-for-new-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

