<?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; Hacks</title>
	<atom:link href="http://wparena.com/tag/hacks/feed/" rel="self" type="application/rss+xml" />
	<link>http://wparena.com</link>
	<description>A Blog for WordPress Developers, Designers and Bloggers</description>
	<lastBuildDate>Mon, 14 May 2012 19:02:57 +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 Secure WordPress configuration file</title>
		<link>http://wparena.com/how-to/how-to-secure-wordpress-configuration-file/</link>
		<comments>http://wparena.com/how-to/how-to-secure-wordpress-configuration-file/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 21:25:56 +0000</pubDate>
		<dc:creator>Nur</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[secure]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress hack]]></category>

		<guid isPermaLink="false">http://wparena.com/?p=9979</guid>
		<description><![CDATA[Web site running on WordPress has many benefits over other Content Management Systems, and the most important is wp-config.php file that contains very sensitive information about your WordPress installation, including your database detail, table prefix and Secret Keys. So this file should be secure from hackers because they can find the valuable information stored in the wp-config.php file.If someone get access [...]
Related posts:<ol>
<li><a href='http://wparena.com/how-to/how-to-protect-the-wp-config-php-file-wordpress-powered-websites/' rel='bookmark' title='How to Protect the wp-config.php File &#8211; WordPress Powered WebSites'>How to Protect the wp-config.php File &#8211; WordPress Powered WebSites</a></li>
<li><a href='http://wparena.com/how-to/how-to-secure-wordpress-site-from-hackers-through-plugins/' rel='bookmark' title='How to secure WordPress site from hackers through Plugins'>How to secure WordPress site from hackers through Plugins</a></li>
<li><a href='http://wparena.com/how-to/how-wordpress-decides-which-file-to-use-for-rendering-the-view/' rel='bookmark' title='How WordPress Decides Which File to Use for Rendering the View'>How WordPress Decides Which File to Use for Rendering the View</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-handle-warning-wordpress-encrypts-user-cookies-in-multisite/' rel='bookmark' title='How to Handle: Warning! WordPress encrypts user cookies in Multisite'>How to Handle: Warning! WordPress encrypts user cookies in Multisite</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Web site running on WordPress has many benefits over other Content Management Systems, and the most important is wp-config.php file that contains very sensitive information about your WordPress installation, including your database detail, table prefix and Secret Keys.</p>
<p>So this file should be secure from hackers because they can find the valuable information stored in the wp-config.php file.If someone get access this file, he can get website database username and password, he could log in and undo everything that you’ve built! Therefore, take whatever steps you can to secure that file so that no one can access it.To do so, follow these steps:</p>
<h2><a href="http://wparena.com/how-to/how-to-secure-wordpress-configuration-file/attachment/secure-wordpress/" rel="attachment wp-att-10138"><img class="size-full wp-image-10138 aligncenter" title="secure-wordpress" src="http://wparena.com/www/wparena/media/wp-content/uploads/2011/07/secure-wordpress.png" alt="" width="300" height="300" /></a></h2>
<h2><strong>How to protect your WordPress wp-config.php file:</strong></h2>
<h3>Protect it the .htaccess Way</h3>
<p>Josiah Cole wrote a nice htaccess tutorial on <a href="http://www.josiahcole.com/2007/07/11/almost-perfect-htaccess-file-for-wordpress-blogs/">modifying your .htaccess to protect the wp-config</a>.</p>
<p>Here&#8217;s the code from  <a href="http://wparena.com/Diggwp" target="_blank">Digging Into WordPress</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>
<pre># protect wpconfig.php
&lt;files wp-config.php&gt;
order allow,deny
deny from all
&lt;/files&gt;</pre>
<p>After updating your  wp-config.php, Change file permission (chmod) on wp-config.php to 640.</p>
<h2>Move the WP-Config file to a secret folder</h2>
<p>If you move the wp-config file to an unpredictable location and change the code, it would create a problem every time you upgrade WordPress. So there is a better solution, create a separate PHP file in a non-WWW location and add the location of WP-Config file in it. On the following link you can find detail about How to create PHP file and add secure location it: <a href="http://www.devlounge.net/code/protect-your-wordpress-wp-config-so-you-dont-get-hacked">Protect WordPress wp-config</a>.</p>
<p>If you found this post helpful or have any questions, please leave your comment below.</p>
<p>Related posts:<ol>
<li><a href='http://wparena.com/how-to/how-to-protect-the-wp-config-php-file-wordpress-powered-websites/' rel='bookmark' title='How to Protect the wp-config.php File &#8211; WordPress Powered WebSites'>How to Protect the wp-config.php File &#8211; WordPress Powered WebSites</a></li>
<li><a href='http://wparena.com/how-to/how-to-secure-wordpress-site-from-hackers-through-plugins/' rel='bookmark' title='How to secure WordPress site from hackers through Plugins'>How to secure WordPress site from hackers through Plugins</a></li>
<li><a href='http://wparena.com/how-to/how-wordpress-decides-which-file-to-use-for-rendering-the-view/' rel='bookmark' title='How WordPress Decides Which File to Use for Rendering the View'>How WordPress Decides Which File to Use for Rendering the View</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-handle-warning-wordpress-encrypts-user-cookies-in-multisite/' rel='bookmark' title='How to Handle: Warning! WordPress encrypts user cookies in Multisite'>How to Handle: Warning! WordPress encrypts user cookies in Multisite</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wparena.com/how-to/how-to-secure-wordpress-configuration-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Submit &amp; Optimize WordPress Blog Post for SERPs</title>
		<link>http://wparena.com/how-to/how-to-submit-optimize-wordpress-blog-post-for-serps/</link>
		<comments>http://wparena.com/how-to/how-to-submit-optimize-wordpress-blog-post-for-serps/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 13:33:11 +0000</pubDate>
		<dc:creator>Nur</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>

		<guid isPermaLink="false">http://wparena.com/?p=6948</guid>
		<description><![CDATA[Almost every day when I visit new blogs on the internet I spot duplicated content. Anyone can build a free blog on Blogger or on WordPress.com. But do you know how to optimize your blog so it ranks well in the Search Engine Results Page (SERPs)? Today going to tell you fundamental tips, which must [...]
Related posts:<ol>
<li><a href='http://wparena.com/how-to/how-to-add-trackback-uris-in-wordpress-blog-post/' rel='bookmark' title='How to Add TrackBack URIs in WordPress blog post'>How to Add TrackBack URIs in WordPress blog post</a></li>
<li><a href='http://wparena.com/how-to/make-blog-post-from-mobiles-with-wordpress-mobile-apps/' rel='bookmark' title='Make Blog Post From Mobiles With WordPress Mobile Apps'>Make Blog Post From Mobiles With WordPress Mobile Apps</a></li>
<li><a href='http://wparena.com/how-to/how-to-customize-wordpress-post-order/' rel='bookmark' title='How to Customize WordPress Post Order?'>How to Customize WordPress Post Order?</a></li>
<li><a href='http://wparena.com/how-to/how-to-check-broken-link-in-wordpress-blog/' rel='bookmark' title='How to Check Broken Link in WordPress Blog'>How to Check Broken Link in WordPress Blog</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>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Almost every day when I visit new blogs on the internet I spot duplicated content. Anyone can build a free blog on Blogger or on WordPress.com.  But do you know how to optimize  your blog so it ranks well in the <strong>Search Engine Results Page (SERPs)</strong>?</p>
<p>Today going to tell you fundamental tips, which must help you to get you blog ranked well in the SERPs, because these are the first step to getting your site recognized by the search engines!</p>
<h2>1. Optimize WordPress Blog Post for the SERPs</h2>
<p style="text-align: center;"><img class="size-full wp-image-6956 aligncenter" title="search-engine-optimisation" src="http://wparena.com/wp-content/uploads/2011/03/search-engine-optimisation.gif" alt="" width="300" height="340" /></p>
<p><strong><span style="color: #0000ff;">1.</span> </strong>Write Title of the post accurately that describes the content of the post and this Title must not contain more than 64 characters.<br />
<span style="color: #0000ff;"><strong>2.</strong></span> Build your content strategy around keywords that are relevant to your business that you would like to get ranked for. For example, if your interest is WordPress Theme, WordPress Plugin, it is  essential that you utilize that keyword in your title,  in  the description, as well should be unique, interesting, authoritative, and RELEVANT.</p>
<p><span style="color: #0000ff;"><strong>3.</strong></span> Try to get Backlinks with high Page Rank sites that have some relevance to your business to link to your blog.<br />
<span style="color: #0000ff;"><strong>4.</strong></span> Be sure that <strong>404 errors</strong> on pages redirect to your homepage.</p>
<p>(Create a file with this line at the top, and make your 404?s go to that file, it’ll redirect to the home page. )</p>
<p><strong><span style="color: #0000ff;">&lt;meta http-equiv=”Refresh” content=”4; URL=www.domain.com”&gt;)</span></strong></p>
<p><span style="color: #0000ff;"><strong>5.</strong></span> Complete your meta descriptions. and Address your 301/302 redirects</p>
<p><span style="color: #0000ff;"><strong>6.</strong></span> Ensure than your site’s canonical errors are addressed so that you don’t have split indexing by the search engines.</p>
<h3>A search engines considers these points before indexing your blog post:</h3>
<ul>
<li>The Keyword terms are to be relevant to the blog  post.</li>
<li>Search engin consider the authority of the blog content.</li>
<li>The post must contact the revelant information with the blog or site</li>
<li>The existence of blog or post for a while.</li>
<li>Blog or site doesn&#8217;t have a bunch of broken links.</li>
<li>Blog or website doesn&#8217;t contain a mega list of keywords.</li>
</ul>
<h2>2. Submitting Your Blog post or Site to The SERPs</h2>
<p>There are free and paid ways you can submit your site to 100s of search engines with the click of a button.</p>
<h2><a href="https://www.e-junkie.com/ecom/gb.php?ii=654309&amp;c=ib&amp;aff=107974&amp;cl=75309">Seo Link  Fast indexer Tool</a></h2>
<p>You <strong>must</strong> have a linking  strategy to take all of your backlinks you create that link to your  articles, blog posts, forum and profile urls etc and get those indexed  and have multiple incomming links as fast as possible to get them &#8216;rank  juiced&#8217; up.</p>
<p>You must also take all of your  RSS feeds (blogs, web 2.0 sites, articles etc) and add them to the mix  as well but this will give us possible 100&#8242;s of links to work with!! and  the time to do this manually can literally take days of effort BUT NO  MORE!!!! Introducing the</p>
<h2>It&#8217;s a simple 1-2-3 step Process:</h2>
<p><strong>Step 1 &#8211; Load Your URL&#8217;s</strong></p>
<p><a href="https://www.e-junkie.com/ecom/gb.php?ii=654309&amp;c=ib&amp;aff=107974&amp;cl=75309" target="_blank"><img class="alignnone size-full wp-image-6951" title="LoadYourURLs" src="http://wparena.com/wp-content/uploads/2011/03/LoadYourURLs.jpg" alt="" width="400" height="370" /></a></p>
<p><strong>Step 2 &#8211; Ping Your URL&#8217;s</strong></p>
<p><a href="https://www.e-junkie.com/ecom/gb.php?ii=654309&amp;c=ib&amp;aff=107974&amp;cl=75309" target="_blank"><img class="alignnone size-full wp-image-6952" title="PingYourURL's" src="http://wparena.com/wp-content/uploads/2011/03/PingYourURLs.jpg" alt="" width="400" height="304" /></a></p>
<p><strong>Step 3 &#8211; Meta Index Your URL&#8217;s to 31,000 Sites</strong></p>
<p><a href="https://www.e-junkie.com/ecom/gb.php?ii=654309&amp;c=ib&amp;aff=107974&amp;cl=75309" target="_blank"><img class="alignnone size-full wp-image-6953" title="MetaIndexYourURL" src="http://wparena.com/wp-content/uploads/2011/03/MetaIndexYourURL.jpg" alt="" width="410" height="414" /></a></p>
<p>With the &#8216;SEO Link Fast Indexer Tool&#8217; you can:</p>
<ul>
<li> Import URLs direct from file or the clip board.</li>
<li> Setup spinnable keywords / anchor text for pinging URLs.</li>
<li> Fast Meta Indexing of your links to over 31,000+ sites.</li>
<li> Add new Ping and Meta sites with ease.</li>
<li> Full multi threading for lightening fast performance.</li>
<li> Proxy server support to hide your IP addesss.</li>
</ul>
<p>And the best of all. This is all done via a &#8216;click&#8217; of a button!! 1 click and your all done.</p>
<h3><span><span style="font-family: Verdana,Arial,Helvetica,sans-serif; color: #ff0000;">Get <a href="https://www.e-junkie.com/ecom/gb.php?ii=654309&amp;c=ib&amp;aff=107974&amp;cl=75309" target="_blank"><span style="text-decoration: underline;">INSTANT ACCESS</span></a> To<br />
</span></span></h3>
<p><span><span style="font-family: Verdana,Arial,Helvetica,sans-serif; color: #ff0000;"> The SEO Fast Indexer Tool Now!</span></span></p>
<h2>1. <a href="http://www.pingoat.com/" target="_blank">What in the world is Pingoat! ?</a></h2>
<p>Pingoat is a service that pings or notifies a number of services that  	keep track of weblogs and publish them. By pinging, you let the services know that your blog 	has been updated and hence, they crawl and index your site, publishing your blog contents,  	thus increasing your blog&#8217;s popularity.</p>
<h2>2. <a href="http://www.submitexpress.com/free-submission.html" target="_blank">Submit Express: TheFree Way</a></h2>
<p>Here you simply input your sites URL and it will submit to over 40+ search engines. It doesn’t get any easier than that!  Submit Express  offers a variety of link building services and they are worth checking  out!</p>
<h2>3. <a href="http://fluffylinkulator.com/" target="_blank">The <strong>FluffyLinkulator</strong></a></h2>
<p>Take advantage of the the Free FluffyLinkUlator, which has details about the submission pages for the search engines (google &amp; yahoo!) and for DMOZ.org (a respected directory).</p>
<h2>4. <a href="http://www.submitedge.com/1484.html" target="_blank">SubmitEdge</a></h2>
<p>SubmitEdge offers a variety of link building services and they are worth checking out! You can submit your site to 200+ search engines for $29 with no work on your part. If your budget permits, this is a GREAT idea, its gets those spiders crawling your site!</p>
<p><a href="http://www.submitedge.com/1484.html" target="_blank">SubmitEdge</a> started out as a site  that allowed users to maximize their return on investment by using the  latest in directory submission services. We were one of the first few  sites on the internet to offer:</p>
<ul>
<li>Guaranteed ten day indexing of websites</li>
<li>Manual directory submission</li>
<li>Social bookmarking services</li>
<li>Search engine optimisation</li>
</ul>
<h2>Best WordPress SEO Plugins For Optimization:</h2>
<p><img class="alignnone size-full wp-image-6954" title="wordpress-plugin" src="http://wparena.com/wp-content/uploads/2011/03/wordpress-plugin.jpg" alt="" width="550" height="215" /></p>
<p>The WordPress plugin  community values SEO and has developed a number of plugins to help. Here  are the best SEO plugins to help you choose the right tags, tell  search robots what to work on, optimize your post titles and more. Do no use all these plugin, only install the one which fulfill your blog requirement.</p>
<h2>1. <a href="http://semperfiwebdesign.com/portfolio/wordpress/wordpress-plugins/all-in-one-seo-pack/" target="_blank">All in One SEO Pack</a></h2>
<p>One of the most popular plugins ever for WordPress, this plugin does a  bit of everything for you from helping choose the best post title and  keywords, to helping you avoid duplicate content and more.</p>
<h2>2. <a href="http://cvs.aesinformatica.com/download/automatic-seo-links" target="_blank">Automatic SEO Links</a></h2>
<p>Automatic <a href="http://wparena.com/SEOSmartLinks" style=""  rel="nofollow" onmouseover="self.status='http://wparena.com/SEOSmartLinks';return true;" onmouseout="self.status=''">SEO Links</a> allows you to choose a word or phrase for  automatic linking, both internal and external, set anchor text, choose  if it should be “nofollow” or not, and more.  One of the best features  of this plugin is that it will only do this for the first occurrence of a  word in a post so you don’t have to worry about spamming your post with  numerous links to the same thing.</p>
<h2>3. <a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/" target="_blank">Google XML Sitemaps</a></h2>
<p>An essential tool in any blogger’s armory of SEO tools. While the name only mentions “Google,” this plugin creates an XML-sitemap that can be read by Ask, MSN and Yahoo also.</p>
<h2>4. <a href="http://urbangiraffe.com/plugins/headspace2/" target="_blank">HeadSpace2</a></h2>
<p>This plugin allows you to install all sorts of meta-data, add  specific JavaScript and CSS to pages, suggests tags for your posts and a  whole lot more.</p>
<h2>5. <a href="http://yoast.com/wordpress/meta-robots-wordpress-plugin/" target="_blank">Meta Robots WordPress plugin</a></h2>
<p>An easy solution for adding robot metadata to any page you choose on  your blog.  You can use it to make your front page links into  “nofollows,” prevent indexing of search pages, disable author and  date-based archives, prevent indexing of your login page and numerous  other features.</p>
<h2>6. <a href="http://wordpress.org/extend/plugins/nofollow-case-by-case/" target="_blank">Nofollow Case by Case</a></h2>
<p>This plugin allows you to strip the “nofollow” command from your  comments, and then you can apply it to only the comments you don’t wish  to support.</p>
<h2>7. <a href="http://techblissonline.com/platinum-seo-pack/" target="_blank">Platinum SEO Plugin</a></h2>
<p>The Platinum SEO Plugin offers you such features as automatic 301  redirects for permalink changes, auto-generation of META tags, post slug  optimization, help in avoiding duplicate content and a host of other  features.</p>
<h2>8. <a href="http://urbangiraffe.com/plugins/redirection/" target="_blank">Redirection</a></h2>
<p>For any number of reasons you sometimes need to move a page from one  spot on your blog to another, but then you risk losing that page’s  status in search results.  Redirection helps you with your 301  redirects, captures a log of 404s so you can work on correcting them,  sets up an RSS feed for errors and more.</p>
<h2>9. <a href="http://www.francesco-castaldo.com/plugins-and-widgets/seo-blogroll/" target="_blank">SEO Blogroll</a></h2>
<p>Do you worry that the people you link to in your blogroll are feeding  off of your PageRank?  With SEO Blogroll you can make separate sections  for various groupings of links, with an unlimited number in each, and  all of them will receive the “nofollow” attribute.</p>
<h2>10. <a href="http://pressedwords.com/solving-wordpress-seo-paged-comments-problem/" target="_blank">SEO for Paged Comments</a></h2>
<p>With the introduction of paged comments in WordPress 2.7, there was a  potential problem with search engines thinking you had duplicate  content as the post would appear on each page.  This plugin aims to take  care of this issue for you until the folks at WordPress change things  up.</p>
<h2>11. <a href="http://mark-kirby.co.uk/2009/seo-friendly-and-html-valid-subheadings-a-wordpress-plugin/" target="_blank">SEO friendly and HTML valid subheadings</a></h2>
<p>Some <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> for WordPress will confuse your sub-header tags based on  the page they are to be displayed on, but this plugin will automatically  reset them to make them more SEO friendly by moving them down one spot  in the hierarchical tree.  In other words, h2 becomes h3, h3 becomes h4  and so on.</p>
<h2>12. <a href="http://www.prelovac.com/vladimir/wordpress-plugins/seo-friendly-images" target="_blank">SEO Friendly Images</a></h2>
<p>Images can be a great source of traffic as people search for images  of various subjects, and this plugin helps you with making sure that you  have “alt” and “title” tags on all of your images so that the search  engines can properly index them.</p>
<h2>13. <a href="http://omninoggin.com/wordpress-plugins/seo-no-duplicate-wordpress-plugin/" target="_blank">SEO No Duplicate WordPress Plugin</a></h2>
<p>If you must have duplicate content on your site for whatever reason,  SEO No Duplicate will allow you to state which version of the post  search engines should index while ignoring the others.</p>
<h2>14. <a href="http://www.maxblogpress.com/plugins/spl/" target="_blank">SEO Post Link</a></h2>
<p>The post slug is the blog title you see in a browser’s URL bar, and  if it’s too long, search engines won’t take a liking to it.  SEO Post  Link comes with an already populated list of words to cut from a title  when it turns into a URL to make your post addresses that much  friendlier.  You can set it so that it’s limited to a certain number of  characters, cut short words, cut unnecessary words and more.</p>
<h2>15. <a href="http://www.prelovac.com/vladimir/wordpress-plugins/seo-smart-links" target="_blank">SEO Smart Links</a></h2>
<p>Interlinking your blog can be the key to getting more people to read  more of your posts, but it is time consuming and tedious to do it by  hand.  SEO Smart Links does this for you automatically when you tell it  what words to link to what URLs, and it also allows you to set  “nofollow” and “open in window” comands for the links.</p>
<h2>16. <a href="http://blog.fleischer.hu/wordpress/seo-tag-cloud/" target="_blank">SEO Tag Cloud Widget</a></h2>
<p>Love ‘em or hate ‘em, a lot of people use tag clouds on their blogs.   Since their inception they have been fairly unreadable by search  engines, but with this plugin they will be converted to an SEO-friendly  <a href="http://wparena.com/LandingPages" style=""  rel="nofollow" onmouseover="self.status='http://wparena.com/LandingPages';return true;" onmouseout="self.status=''">HTML</a> markup that can be indexed.</p>
<h2>17. <a href="http://www.netconcepts.com/seo-title-tag-plugin/" target="_blank">SEO Title Tag</a></h2>
<p>Your tags are an important part of your site for making sure that  search engines know where to place your posts, and SEO Title Tag focuses  exclusively on this.  Unlike some other plugins, and WordPress itself,  this extension will allow you to add tags to your pages, your main page  and even any URL anywhere on your site.</p>
<h2>18. <a href="http://wordpress.org/extend/plugins/simple-tags/" target="_blank">Simple Tags</a></h2>
<p>An extremely popular plugin that focuses on helping you choose the  best tags for your posts by offering suggestions, auto-completion of  tags as you type, an AJAX admin interface, mass tag editing and a whole  lot more.</p>
<h2>19. <a href="http://www.dagondesign.com/articles/sitemap-generator-plugin-for-wordpress/" target="_blank">Sitemap Generator</a></h2>
<p>This is a more customizable sitemap generator than most with options  to support multi-level categories and pages, category/page exclusion,  permalink support, choices on what to display, options to show number of  comments and more.</p>
<h2>20. <a href="http://www.tgfi.net/tgfi-seo-plugin/" target="_blank">TGFI.net SEO WordPress Plugin</a></h2>
<p>This particular plugin will do most of the usual SEO work of  optimizing titles and keywords, but it adds a unique twist as it is  mainly directed at people who use WordPress as a CMS.</p>
<p><a title="45+ Top SEO WordPress Plguins – WordPress SEO" rel="bookmark" href="http://blog.karachicorner.com/2010/03/45-top-seo-wordpress-plguins/" target="_blank">45+ Top SEO WordPress Plguins – WordPress SEO</a></p>
<p><a href="http://wparena.com/freebies/30-essential-wordpress-plugins/" target="_blank">30+ Essential WordPress Plugins</a></p>
<h2>Recommended eBooks:</h2>
<h2><a href="https://www.e-junkie.com/ecom/gb.php?cl=13721&amp;c=ib&amp;aff=107974" target="_blank">WordPress eBook: Success with WordPress</a></h2>
<p><a href="https://www.e-junkie.com/ecom/gb.php?cl=13721&amp;c=ib&amp;aff=107974" target="_blank"><img class="alignnone size-full wp-image-6950" title="wordpress_ebook" src="http://wparena.com/wp-content/uploads/2011/03/wordpress_ebook.jpg" alt="" width="258" height="290" /></a></p>
<p>Success with WordPress is a popular WordPress eBook that covers  everything from blogging with WordPress, WordPress as a Content  Management System (CMS), SEO techniques, and of course how to monetize your WordPress blog with AdSense and affiliate marketing!</p>
<p><a href="https://www.e-junkie.com/ecom/gb.php?cl=13721&amp;c=ib&amp;aff=107974" target="_blank">Get eBook Success with WordPress</a></p>
<p>Related posts:<ol>
<li><a href='http://wparena.com/how-to/how-to-add-trackback-uris-in-wordpress-blog-post/' rel='bookmark' title='How to Add TrackBack URIs in WordPress blog post'>How to Add TrackBack URIs in WordPress blog post</a></li>
<li><a href='http://wparena.com/how-to/make-blog-post-from-mobiles-with-wordpress-mobile-apps/' rel='bookmark' title='Make Blog Post From Mobiles With WordPress Mobile Apps'>Make Blog Post From Mobiles With WordPress Mobile Apps</a></li>
<li><a href='http://wparena.com/how-to/how-to-customize-wordpress-post-order/' rel='bookmark' title='How to Customize WordPress Post Order?'>How to Customize WordPress Post Order?</a></li>
<li><a href='http://wparena.com/how-to/how-to-check-broken-link-in-wordpress-blog/' rel='bookmark' title='How to Check Broken Link in WordPress Blog'>How to Check Broken Link in WordPress Blog</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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wparena.com/how-to/how-to-submit-optimize-wordpress-blog-post-for-serps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Best WordPress latest News Sites</title>
		<link>http://wparena.com/inspiration/best-wordpress-latest-news-sites/</link>
		<comments>http://wparena.com/inspiration/best-wordpress-latest-news-sites/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 12:35:56 +0000</pubDate>
		<dc:creator>Nur</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Tipps]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress News]]></category>

		<guid isPermaLink="false">http://wparena.com/?p=2962</guid>
		<description><![CDATA[If you want to know anything regarding WordPress, today I am compiling a list of the most popular WordPress-focused sites for latest news and information. They provide latest reports or new events that happened at WordPress to keep the visitor up to date with WordPress Technology. 1. WPTavern.com The WordPress Tavern is a web site focused on [...]
Related posts:<ol>
<li><a href='http://wparena.com/showcase/key-west-news-traveler-magazine-wordpress-theme/' rel='bookmark' title='Key West News: Traveler Magazine WordPress Theme'>Key West News: Traveler Magazine WordPress Theme</a></li>
<li><a href='http://wparena.com/how-to/use-wordpress-to-create-amazing-sites/' rel='bookmark' title='Use WordPress  to Create  Amazing Sites'>Use WordPress  to Create  Amazing Sites</a></li>
<li><a href='http://wparena.com/how-to/how-to-create-a-vertical-scrolling-news-ticker-on-wordpress-with-jquery-carousel/' rel='bookmark' title='HOW TO: Create A Vertical Scrolling News Ticker on WordPress With jQuery Carousel'>HOW TO: Create A Vertical Scrolling News Ticker on WordPress With jQuery Carousel</a></li>
<li><a href='http://wparena.com/how-to/how-to-managing-your-wordpress-multi-sites/' rel='bookmark' title='How to Managing Your WordPress Multi Sites'>How to Managing Your WordPress Multi Sites</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>
</ol>]]></description>
			<content:encoded><![CDATA[<p>If you want to know anything regarding WordPress, today I am compiling a list of the most popular WordPress-focused sites for latest news and information. They provide latest reports or new events  that happened at WordPress to keep the visitor up to date with WordPress Technology.<br />
<span id="more-2962"></span></p>
<h2>1. <a href="http://www.wptavern.com/" target="_blank">WPTavern.com</a></h2>
<p><img class="alignnone size-full wp-image-2965" title="WPTavern" src="http://wparena.com/wp-content/uploads/2010/04/WPTavern.jpg" alt="" width="600" height="130" /></p>
<p>The WordPress Tavern is a web site focused on BuddyPress, bbPress, WordPress.com, and all Automattic project. TThere you will find very active message board where members discuss the latest news and developments in the WordPress Community. WPTavern.com is also the home of the WordPress Weekly Podcast hosted by Jeff Chandler.</p>
<h2>2. <a href="http://wpvibe.com/" target="_blank">WPVibe.com</a></h2>
<p><img class="alignnone size-full wp-image-2966" title="WPVibe" src="http://wparena.com/wp-content/uploads/2010/04/WPVibe.jpg" alt="" width="600" height="208" /></p>
<p>WordPress Vibe is Launched in 2009. The site focuses on two aspects of WordPress: the software and the people who are helping and working with WordPress. You can find interviews, plugin reviews, theme reviews, tutorials, and code hacks.</p>
<h2>3. <a href="http://weblogtoolscollection.com/" target="_blank">WeblogToolsCollection.com</a></h2>
<p><img class="alignnone size-full wp-image-2964" title="weblogtools-collection" src="http://wparena.com/wp-content/uploads/2010/04/weblogtools-collection.jpg" alt="" width="600" height="131" /></p>
<p>This site weekly release blog post on popular new plugin and <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>. Weblog Tools Collection (WBTC) is a web site dedicated to blogging, but generally focuses on WordPress-related topics. WBTC is also conduct a annual WordPress Plugin Competition.</p>
<h2>4. <a href="http://wpengineer.com/" target="_blank">WPEngineer.com</a></h2>
<p><img class="alignnone size-full wp-image-2967" title="WPEngineer" src="http://wparena.com/wp-content/uploads/2010/04/WPEngineer.jpg" alt="" width="600" height="179" /></p>
<p>WPEngineer provides tips and tricks, news, and how to improve WordPress design and its functionality. Well written and more in-depth tutorials diving into the Core of WordPress and its functionality.</p>
<h2>5. <a href="http://wordpress.alltop.com/" target="_blank">WordPress Alltop</a></h2>
<p><img class="alignnone size-full wp-image-2968" title="WordPress-alltop" src="http://wparena.com/wp-content/uploads/2010/04/WordPress-alltop.jpg" alt="" width="600" height="143" /></p>
<p>Alltop is basically an RSS aggregator for latest news. The WordPress Alltop compile the features news<br />
and information from the top WordPress-related web sites. You can find important WordPress<br />
Twitter accounts that are worth following for news and information.</p>
<h2>6. <a href="http://planet.wordpress.org/" target="_blank">WordPress Planet</a></h2>
<p><img class="alignnone size-full wp-image-2969" title="WordPress-Planet" src="http://wparena.com/wp-content/uploads/2010/04/WordPress-Planet.jpg" alt="" width="600" height="143" /></p>
<p>WordPress Planet is a blog about WordPress articles.  This site is a active place for community members. You can see same news feed on the Dashboard of every default installation of WordPress.</p>
<h2>7. <a href="http://planetwordpress.planetozh.com/" target="_blank">Planet WordPress</a></h2>
<p><img class="alignnone size-full wp-image-2970" title="Planet-WordPress" src="http://wparena.com/wp-content/uploads/2010/04/Planet-WordPress.jpg" alt="" width="600" height="179" /></p>
<p>Planet WordPress is an RSS aggregator that keeps track of bloggers who contribute to WordPress.</p>
<p>If you know any good website about WordPress News, <strong>share it in comments and Follows us on </strong><a href="http://twitter.com/wparena" target="_blank"><strong>Twitter</strong></a><strong>.</strong></p>
<p>Related posts:<ol>
<li><a href='http://wparena.com/showcase/key-west-news-traveler-magazine-wordpress-theme/' rel='bookmark' title='Key West News: Traveler Magazine WordPress Theme'>Key West News: Traveler Magazine WordPress Theme</a></li>
<li><a href='http://wparena.com/how-to/use-wordpress-to-create-amazing-sites/' rel='bookmark' title='Use WordPress  to Create  Amazing Sites'>Use WordPress  to Create  Amazing Sites</a></li>
<li><a href='http://wparena.com/how-to/how-to-create-a-vertical-scrolling-news-ticker-on-wordpress-with-jquery-carousel/' rel='bookmark' title='HOW TO: Create A Vertical Scrolling News Ticker on WordPress With jQuery Carousel'>HOW TO: Create A Vertical Scrolling News Ticker on WordPress With jQuery Carousel</a></li>
<li><a href='http://wparena.com/how-to/how-to-managing-your-wordpress-multi-sites/' rel='bookmark' title='How to Managing Your WordPress Multi Sites'>How to Managing Your WordPress Multi Sites</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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wparena.com/inspiration/best-wordpress-latest-news-sites/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Useful Hacks, Tutorials and Plugins for BuddyPress</title>
		<link>http://wparena.com/how-to/useful-hacks-tutorials-and-plugins-for-buddypress/</link>
		<comments>http://wparena.com/how-to/useful-hacks-tutorials-and-plugins-for-buddypress/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 13:34:25 +0000</pubDate>
		<dc:creator>Nur</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[BuddyPress]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress MU]]></category>

		<guid isPermaLink="false">http://wparena.com/?p=2528</guid>
		<description><![CDATA[BuddyPress is a collection of WordPress MU plugins designed for social networking, it helps to extended profiles, private messaging, friends lists, groups, a messaging system and an activity stream similar to the status update facilities on sites such as Twitter and Facebook. BuddyPress can not be use in single-server version of WordPress. Nowadays lots of developers experimenting [...]
Related posts:<ol>
<li><a href='http://wparena.com/freebies/free-download-plugins-and-themes-from-wordpress-multi-site-user-wpmu/' rel='bookmark' title='Free Download Plugins and Themes From WordPress Multi Site User (WPMU)'>Free Download Plugins and Themes From WordPress Multi Site User (WPMU)</a></li>
<li><a href='http://wparena.com/inspiration/helpful-tips-hacks-and-tutorials-about-wordpress/' rel='bookmark' title='Helpful Tips, Hacks and Tutorials about WordPress'>Helpful Tips, Hacks and Tutorials about WordPress</a></li>
<li><a href='http://wparena.com/how-to/making-your-own-social-blog-network-by-using-wordpress-mu/' rel='bookmark' title='Making your own social blog network By Using WordPress MU'>Making your own social blog network By Using WordPress MU</a></li>
<li><a href='http://wparena.com/showcase/best-buddypress-themes-for-social-networking/' rel='bookmark' title='Best BuddyPress Themes for Social Networking'>Best BuddyPress Themes for Social Networking</a></li>
<li><a href='http://wparena.com/how-to/how-to-manage-plugins-in-wordpress-multisite-network/' rel='bookmark' title='How to manage plugins in WordPress MultiSite Network'>How to manage plugins in WordPress MultiSite Network</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>BuddyPress is a collection of WordPress MU plugins designed for social networking, it helps to extended profiles, private messaging, friends lists, groups, a messaging system and an activity stream similar to the status update facilities on sites such as Twitter and Facebook. BuddyPress can not be use in single-server version of WordPress.</p>
<p><span id="more-2528"></span>Nowadays lots of developers experimenting and writing  about BuddyPress. Today I am compiling a latest list of  excellent Pluings (included in BuddyPress pack), hacks and Tutorials.</p>
<h1>Hacks and Tutorials:</h1>
<p><img class="alignnone size-full wp-image-2529" title="BuddyPress-Hacks-and-Tutori" src="http://wparena.com/wp-content/uploads/2010/03/BuddyPress-Hacks-and-Tutori.jpg" alt="BuddyPress-Hacks-and-Tutori" width="620" height="267" /></p>
<h2>1. <a href="http://www.pimpmywordpress.com/wordpress-tutorials/how-customise-buddypress-url" target="_blank">How to Customize Your</a><a href="http://www.pimpmywordpress.com/wordpress-tutorials/how-customise-buddypress-url">BuddyPress URL</a></h2>
<p>These are simple instructions on how to customize the slugs for BuddyPress, that will boost SEO and improve your site usability.</p>
<h2>2. <a href="http://www.wpin.me/adding-sign-in-with-twitter-to-a-buddypress-site/" target="_blank">Adding Sign in With Twitter to a Buddypress Site</a></h2>
<p><a href="http://www.wpin.me/adding-sign-in-with-twitter-to-a-buddypress-site/"> </a></p>
<p>This is well explained tutorial on configuring BuddyPress to allow users to sign in using their Twitter usernames and passwords with the help of the Twit Connect plugin.</p>
<h2>3. <a href="http://deanjrobinson.com/article/enabling-twitter-avatars-within-buddypress/" target="_blank">Enabling Twitter Avatars Within BuddyPress</a></h2>
<p><a href="http://deanjrobinson.com/article/enabling-twitter-avatars-within-buddypress/"> </a></p>
<p>By using the Twit Connect plugin help you to add a new function which enables Twitter avatars on regular WordPress blogs.</p>
<h2>4. <a href="http://blog.etiviti.com/2010/02/buddypress-hack-remove-new-member-registration-from-activity-stream/">BuddyPres</a><a href="http://blog.etiviti.com/2010/02/buddypress-hack-remove-new-member-registration-from-activity-stream/" target="_blank">Hack: Remove New Member Registration From Activity Stream</a></h2>
<h2>5. <a href="http://blog.etiviti.com/2010/02/buddypress-hack-disable-activity-stream-comments-favorites-on-certain- types/" target="_blank">BuddyPress Hack: Disable Activity Stream Comments/Favorites For Certain Types</a></h2>
<h2>6. <a href="http://premium.wpmudev.org/the-buddypress-manual/what-are-parent-and-child-themes/" target="_blank">What Are Parent and Child Theme?</a></h2>
<p><a href="http://premium.wpmudev.org/the-buddypress-manual/what-are-parent-and-child-themes/"> </a></p>
<h2>7. <a href="http://sparun.in/a-simple-buddypress-guide/" target="_blank">Simple BuddyPress Guide</a></h2>
<h1>BuddyPress plugins:</h1>
<p><img class="alignnone size-full wp-image-2530" title="BuddyPress-Plugins" src="http://wparena.com/wp-content/uploads/2010/03/BuddyPress-Plugins.jpg" alt="BuddyPress-Plugins" width="620" height="238" /></p>
<p>There are nine plugins in the base BuddyPress suite. Each one can be used to add a social feature to your Social Networking site. By default, all BuddyPress components are enabled. You can selectively disable any of the components by using the BuddyPress Component Setup page.</p>
<h2>Extended Profiles:</h2>
<p>This allows you to create extra profile fields, which can be filled in by the members.</p>
<h2>Private Messaging:</h2>
<p>This allows members to contact each other directly. There are private messaging plugins for WordPress and also for BuddyPress. Rather than confusing your users with multiple places to send/receive PMs, I recommend testing each plugin and using the one that you feel best suits your site.</p>
<h2>Friends:</h2>
<p>This allows members to maintain friend lists, as they would on sites such as Facebook or MySpace.</p>
<h2>Groups:</h2>
<p>This allows members to create groups where they can post images, links, and blog posts. For example, Wicca practitioners could create a group to share spells, and Slayers from Los Angeles could have a group where they would share tips and news.</p>
<h2>The Wire:</h2>
<p>This plugin works like walls on other social networking sites. You can add a wire to a page or component, and users will be able to post messages to that page.</p>
<h2>Activity Streams:</h2>
<p>This plugin tracks member activity across the site. A member&#8217;s activity stream will show new posts they have made, changes to their profile, and changes to their friends list. Members will also be able to keep up to date with their friends&#8217; activities via their stream.</p>
<h2>Blog Tracking:</h2>
<p>This feature aggregates all of the blogs, blog posts, and comments created by a specific member, making it easier for people to keep up with the blogging activities of their friends.</p>
<h2>Forums:</h2>
<p>This component allows groups to create and manage their own forums, using the existing bbPress plugin.</p>
<h2>Status Updates</h2>
<p>Allow users to post status updates.</p>
<p>For Download visit <a href="http://buddypress.org/developers/" target="_blank">The BuddyPress Community</a> | <a href="http://buddypress.org/download/" target="_blank">Visit plugin site</a></p>
<p>Related posts:<ol>
<li><a href='http://wparena.com/freebies/free-download-plugins-and-themes-from-wordpress-multi-site-user-wpmu/' rel='bookmark' title='Free Download Plugins and Themes From WordPress Multi Site User (WPMU)'>Free Download Plugins and Themes From WordPress Multi Site User (WPMU)</a></li>
<li><a href='http://wparena.com/inspiration/helpful-tips-hacks-and-tutorials-about-wordpress/' rel='bookmark' title='Helpful Tips, Hacks and Tutorials about WordPress'>Helpful Tips, Hacks and Tutorials about WordPress</a></li>
<li><a href='http://wparena.com/how-to/making-your-own-social-blog-network-by-using-wordpress-mu/' rel='bookmark' title='Making your own social blog network By Using WordPress MU'>Making your own social blog network By Using WordPress MU</a></li>
<li><a href='http://wparena.com/showcase/best-buddypress-themes-for-social-networking/' rel='bookmark' title='Best BuddyPress Themes for Social Networking'>Best BuddyPress Themes for Social Networking</a></li>
<li><a href='http://wparena.com/how-to/how-to-manage-plugins-in-wordpress-multisite-network/' rel='bookmark' title='How to manage plugins in WordPress MultiSite Network'>How to manage plugins in WordPress MultiSite Network</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wparena.com/how-to/useful-hacks-tutorials-and-plugins-for-buddypress/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

