<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>ScorpionGod Lair</title>
	<atom:link href="https://www.scorpiongodlair.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.scorpiongodlair.com/</link>
	<description>Think Beyond The Standard Strategy</description>
	<lastBuildDate>Thu, 26 Sep 2019 06:02:58 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
<site xmlns="com-wordpress:feed-additions:1">33921966</site>	<item>
		<title>How To Get Genesis Post Featured Image (and) All Other Attached Images URLs</title>
		<link>https://www.scorpiongodlair.com/how-to-get-genesis-post-featured-image-all-other-images-urls/</link>
					<comments>https://www.scorpiongodlair.com/how-to-get-genesis-post-featured-image-all-other-images-urls/#respond</comments>
		
		<dc:creator><![CDATA[Shyam Chathuranga]]></dc:creator>
		<pubDate>Thu, 26 Sep 2019 05:59:01 +0000</pubDate>
				<category><![CDATA[General]]></category>
		<guid isPermaLink="false">http://www.scorpiongodlair.com/?p=1396</guid>

					<description><![CDATA[<p>When I was working on a quick Schema.org Microdata project, I wanted to get Genesis Featured Image for each post as well as all other images attached in the post body. This code snippet will get just the Featured Image URL without any HTML tags in Genesis sites, $featuredimage = genesis_get_image( array( 'format' =&#62; 'url', [&#8230;]</p>
<p>The post <a href="https://www.scorpiongodlair.com/how-to-get-genesis-post-featured-image-all-other-images-urls/">How To Get Genesis Post Featured Image (and) All Other Attached Images URLs</a> appeared first on <a href="https://www.scorpiongodlair.com">ScorpionGod Lair</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>When I was working on a quick Schema.org Microdata project, I wanted to get Genesis Featured Image for each post as well as all other images attached in the post body.</p>
<p>This code snippet will get just the Featured Image URL without any HTML tags in Genesis sites,</p>
<p><code>$featuredimage = genesis_get_image( array(<br>
				'format'  =&gt; 'url',<br>
				'size'    =&gt; 'full',<br>
			) );</code></p><code>
</code><p><code>echo $featuredimage;</code></p>
<p>Then following code will get all other images attached in the post to an Array. Then I got 2 Array Keys to output just the Image URL again,</p>
<p><code>$images = get_children( array (<br>
		'post_parent' =&gt; $post-&gt;ID,<br>
		'post_type' =&gt; 'attachment',<br>
		'post_mime_type' =&gt; 'image',<br>
		'exclude' =&gt; get_post_thumbnail_id()<br>
	));</code></p><code>
<p>	if (current($images)) {<br>
		$key1 = key($images);<br>
	}</p>
<p>	if (next($images)) {<br>
		$key2 = key($images);<br>
	}</p>
</code><p><code>echo $images[$key1]-&gt;guid;<br>
echo $images[$key2]-&gt;guid;</code></p>


<p></p>
<p>The post <a href="https://www.scorpiongodlair.com/how-to-get-genesis-post-featured-image-all-other-images-urls/">How To Get Genesis Post Featured Image (and) All Other Attached Images URLs</a> appeared first on <a href="https://www.scorpiongodlair.com">ScorpionGod Lair</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.scorpiongodlair.com/how-to-get-genesis-post-featured-image-all-other-images-urls/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1396</post-id>	</item>
		<item>
		<title>How To Get Tag ID by Tag Name, (and) Tag ID Directly On Tag Pages</title>
		<link>https://www.scorpiongodlair.com/how-to-get-tag-id/</link>
					<comments>https://www.scorpiongodlair.com/how-to-get-tag-id/#respond</comments>
		
		<dc:creator><![CDATA[Shyam Chathuranga]]></dc:creator>
		<pubDate>Wed, 25 Sep 2019 06:52:50 +0000</pubDate>
				<category><![CDATA[General]]></category>
		<guid isPermaLink="false">http://www.scorpiongodlair.com/?p=1391</guid>

					<description><![CDATA[<p>If you want to get Tag ID, when you already have the Tag Name, following code snippet can be used. $tag = get_term_by ( 'name', single_tag_title( '', false ), 'post_tag' ); $tag_id = $tag-&#62;term_id; If you don&#8217;t have the Tag Name already, this code can be used. $tag_id = get_queried_object()-&#62;term_id; I have tested both codes [&#8230;]</p>
<p>The post <a href="https://www.scorpiongodlair.com/how-to-get-tag-id/">How To Get Tag ID by Tag Name, (and) Tag ID Directly On Tag Pages</a> appeared first on <a href="https://www.scorpiongodlair.com">ScorpionGod Lair</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>If you want to get Tag ID, when you already have the Tag Name, following code snippet can be used.</p>
<p><code>$tag = get_term_by ( 'name', single_tag_title( '', false ), 'post_tag' );<br />
$tag_id = $tag-&gt;term_id;</code></p>
<p>If you don&#8217;t have the Tag Name already, this code can be used.</p>
<p><code>$tag_id = get_queried_object()-&gt;term_id;</code></p>
<p>I have tested both codes on Tag Archive pages.</p>
<p>The post <a href="https://www.scorpiongodlair.com/how-to-get-tag-id/">How To Get Tag ID by Tag Name, (and) Tag ID Directly On Tag Pages</a> appeared first on <a href="https://www.scorpiongodlair.com">ScorpionGod Lair</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.scorpiongodlair.com/how-to-get-tag-id/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1391</post-id>	</item>
		<item>
		<title>Build Trust With Your Prospects By Business Email</title>
		<link>https://www.scorpiongodlair.com/business-email-and-trust/</link>
					<comments>https://www.scorpiongodlair.com/business-email-and-trust/#respond</comments>
		
		<dc:creator><![CDATA[Shyam Chathuranga]]></dc:creator>
		<pubDate>Sat, 01 Feb 2014 11:43:06 +0000</pubDate>
				<category><![CDATA[Strategies]]></category>
		<category><![CDATA[Business Email]]></category>
		<category><![CDATA[Domain Email]]></category>
		<guid isPermaLink="false">http://www.scorpiongodlair.com/?p=972</guid>

					<description><![CDATA[<p>&#8220;Learning to trust is one of life&#8217;s most difficult tasks.&#8221; However, lot of things in this world rely upon Trust. It could be a trust with your life partner. A relationship first starts with the small trust occur in the heart of men and women. But, you know what relationships aren&#8217;t the only one which [&#8230;]</p>
<p>The post <a href="https://www.scorpiongodlair.com/business-email-and-trust/">Build Trust With Your Prospects By Business Email</a> appeared first on <a href="https://www.scorpiongodlair.com">ScorpionGod Lair</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="http://www.scorpiongodlair.com/wp-content/uploads/2014/02/Trust-With-Business-Email.jpg"><img fetchpriority="high" decoding="async" src="http://www.scorpiongodlair.com/wp-content/uploads/2014/02/Trust-With-Business-Email.jpg" alt="Trust building method by business email" width="700" height="350" class="aligncenter size-full wp-image-995" srcset="https://www.scorpiongodlair.com/wp-content/uploads/2014/02/Trust-With-Business-Email.jpg 700w, https://www.scorpiongodlair.com/wp-content/uploads/2014/02/Trust-With-Business-Email-300x150.jpg 300w" sizes="(max-width: 700px) 100vw, 700px" /></a>&#8220;Learning to trust is one of life&#8217;s most difficult tasks.&#8221;</p>
<p>However, lot of things in this world rely upon Trust. It could be a trust with your life partner. A relationship first starts with the small trust occur in the heart of men and women.</p>
<p>But, you know what relationships aren&#8217;t the only one which consume Trust.</p>
<p>Yeah, it could be your prospect who decide whether or not to buy your stuffs according to the trust they have on you. Remember the quote which I used to give the go for this post.</p>
<p>Did you ever think about what level of trust your target audience have on you, on your business and on your products?</p>
<p><span id="more-972"></span>It always a good practice to find the answer.</p>
<p>One of the greatest ways to connect with our prospects is direct email. It&#8217;s the great deal for <a href="http://www.scorpiongodlair.com/seo-advicer-wordpress-plugin/" title="SEO Advicer, Real SEO Guidance WordPress Plugin">catching them while converting them.</a></p>
<h2>Importance of Trust With Prospects</h2>
<p>When you walk in the streets, there are so many strangers too. Do you talk with everyone of them or only with a few? I&#8217;m sure! you don&#8217;t have any bolt nuts in your head to talk with everyone.</p>
<p>Okay. Now you&#8217;re keep going forward, you see someone taking that bad smoke and really looks weird! <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>Would you talk with that person or simply go away? You might go away, because you don&#8217;t have any trust on him. You feel like he&#8217;ll become a trouble for you. Sometimes you are in a fear of such people.</p>
<p>This same situation could occur with you and your potential customer. How?</p>
<p>If your business website looks weird, it can be a sign of losing trust. And when your business email looks pretty spammy, it&#8217;s a great way to say &#8220;Do not TRUST me&#8221; for your potential customer.</p>
<p>Remember, <a href="http://www.scorpiongodlair.com/online-business-benefits/" title="10 Reasons Why You Should Start an Online Business">your online business</a> relies on your customers. They rely on the trust they have upon you. If you harm that trust between you and your customer or let&#8217;s say potential customer, it&#8217;ll lead to no sales in the future.</p>
<p>I have seen many people sell web designing services. Oh! I almost forgot that it&#8217;s one of the hottest industries right on this planet now. So you should start this business, if you have the guts.</p>
<p>Now back to the story &#8230;</p>
<p>Those web designers use their business website to <a href="http://www.scorpiongodlair.com/social-media-seo-helpers/" title="Successful Blog Never Rely on Social Media and SEO">promote their business</a> and they know what they are doing with a good old experience. But they lack of something, So they <strong>lose their business</strong>.</p>
<p>That something is their own business website, it looks so simple and hardly convert its visitors.</p>
<p>You might be a person like in the above story who knows the work, but lacks the look of your own website. Think for a moment, if your prospects are hoping to get *<em>your</em>* web designing services, then you need to satisfy them with your website first.</p>
<p><strong>Awesome experience</strong> and a <strong>higher visitor satisfaction</strong> always adds few lines to the trust they have upon you!</p>
<p>That&#8217;s why making a strong trust with your prospects is a must for every business, no matter whether it is online or offline. Start concentrating on it.</p>
<p>In the next few minutes, I&#8217;m going to explain you how to use your business email as a way of building a <em>strong trust</em>.</p>
<h2>Business Email For Building Trust</h2>
<p>Marketing of the products and services directly with a prospective customer is commonly known as <strong>Email Marketing</strong>.</p>
<p>Email is so powerful when done correctly. It can build your trust and kill your trust. So use wisely!</p>
<p>Don&#8217;t look like a newbie, be a professional voice in your industry right in your business email.</p>
<p>Are you using a free email account for managing business emails? If you&#8217;re using Gmail, Yahoo, Hotmail and all other email accounts provided by email service providers for free, that means you&#8217;re not a professional and often looks like a spammer.</p>
<p>Because, anyone can create free email account to send such business emails at anytime. That shows the sign of &#8220;<em>Do not TRUST me</em>&#8221; for your prospects. People are tired of getting scammed and they need to find more about you and your business before making that decision of purchasing.</p>
<p>There are many people who have websites, but doesn&#8217;t know anything much about web designing &amp; developing. While surfing here and there you find one such website. Then you use their contact page to get in touch with the potential customer showing what&#8217;s lacking and why they should fill it.</p>
<p>This kind of email can be a great deal for a <em>sure fire</em> sale. But you make a mistake of using your free email account as your email. So, the potential customer can be misunderstand your message as a spam.</p>
<p>Finally you lose few minutes from your time, from your potential customer&#8217;s time and a potential sale.</p>
<p>Isn&#8217;t that feel really bad &#8230;?</p>
<p>You also might be using a free email account with your business name or your name.<br />
eg. Your business name is &#8220;Extra Traffic&#8221; and you&#8217;re using &#8220;extratraffic[at]gmail.com&#8221; for all your business email campaigns.</p>
<p>Sometimes, the reason is that you don&#8217;t know how to use email address from your domain name as the business email. Other reason is you don&#8217;t know that you&#8217;re not building trust with your prospects.</p>
<p>If it is 1st reason, I&#8217;m going to solve it just like how I already solved the 2nd reason.</p>
<h2>How to Create a Domain Business Email With cPanel</h2>
<p>I guess you do have a Shared hosting account from a popular hosting partner which supports cPanel access. My go to hosting partner is <a href="http://www.scorpiongodlair.com/hostgator" title="HostGator 1st Month Free Coupon">HostGator</a> which supports cPanel and lot more features.</p>
<p>If you are using a hosting service without the ability of cPanel, then right now I recommend you to switch your hosting partner <strong>strongly</strong>.</p>
<p>Because cPanel makes your job easier with the backend tasks of your WordPress website. Also you could <a title="How to Install WordPress, #3 Super Fast &amp; Easy Methods" href="http://www.scorpiongodlair.com/how-to-install-wordpress/">install WordPress less than 5minutes using cPanel.</a></p>
<p>Here I&#8217;m going to show you how to create a business email with your cPanel. Here we go!</p>
<p>I&#8217;m using HostGator cPanel in this tutorial. Even this is HostGator cPanel, you can follow this tutorial for <em>all</em> other cPanel supported hosting partners to create your domain business email account.</p>
<p><strong>❶</strong> First, go to the cPanel of your website. Simplest method is to use &#8220;http://www.yourdomain.com/cpanel&#8221; or &#8220;http://www.yourdomain.com:2083&#8221;.</p>
<p><img decoding="async" class="aligncenter size-full wp-image-974" alt="Business Email Creation With cPanel" src="http://www.scorpiongodlair.com/wp-content/uploads/2014/01/Business-Email-Creation-With-cPanel.jpg" width="496" height="240" srcset="https://www.scorpiongodlair.com/wp-content/uploads/2014/01/Business-Email-Creation-With-cPanel.jpg 496w, https://www.scorpiongodlair.com/wp-content/uploads/2014/01/Business-Email-Creation-With-cPanel-300x145.jpg 300w" sizes="(max-width: 496px) 100vw, 496px" /></p>
<p><strong>❷</strong> Scroll down to the &#8220;Mail&#8221; section and go to Email Accounts. Now you can create your Domain business email account using the form displayed in this page.</p>
<p>If you have couple of domains, you can select which domain you&#8217;re creating your business email. Our business email is shyam [at] scorpiongodlair.com</p>
<p>Enter your name or business name in the 1st input and fill others your way.<br />
<a href="http://www.scorpiongodlair.com/wp-content/uploads/2014/02/Domain-Email-Account-Creation.jpg"><img decoding="async" class="aligncenter size-full wp-image-988" alt="Domain Business Email Account Creation With cPanel" src="http://www.scorpiongodlair.com/wp-content/uploads/2014/02/Domain-Email-Account-Creation.jpg" width="596" height="294" srcset="https://www.scorpiongodlair.com/wp-content/uploads/2014/02/Domain-Email-Account-Creation.jpg 596w, https://www.scorpiongodlair.com/wp-content/uploads/2014/02/Domain-Email-Account-Creation-300x147.jpg 300w" sizes="(max-width: 596px) 100vw, 596px" /></a><br />
<strong>❸</strong> Once you&#8217;re done, click on the &#8220;Create Account&#8221;. As soon as you click, your domain business email will be created. But you can&#8217;t use it the way you do with Gmail, Yahoo etc.</p>
<p>Yeah! You can check each and every email comes to this business email account by logging.</p>
<p>Isn&#8217;t that make you a boring rabbit? <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>In this case, I&#8217;m going to make you a real scorpion by forwarding each &amp; every email which comes to your newly created business email to your simple to use Gmail, Yahoo or Hotmail accounts. So you can check your business emails quickly and respond.</p>
<p><div id="attachment_992" style="width: 604px" class="wp-caption aligncenter"><a href="http://www.scorpiongodlair.com/wp-content/uploads/2014/02/cPanel-Email-Forwarder-Creation.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-992" class="size-full wp-image-992" alt="Forward your domain business emails to Gmail or other email account" src="http://www.scorpiongodlair.com/wp-content/uploads/2014/02/cPanel-Email-Forwarder-Creation.jpg" width="594" height="307" srcset="https://www.scorpiongodlair.com/wp-content/uploads/2014/02/cPanel-Email-Forwarder-Creation.jpg 594w, https://www.scorpiongodlair.com/wp-content/uploads/2014/02/cPanel-Email-Forwarder-Creation-300x155.jpg 300w" sizes="auto, (max-width: 594px) 100vw, 594px" /></a><p id="caption-attachment-992" class="wp-caption-text">You can find this Mail Forwarding page in the &#8220;Mails&#8221; section of the cPanel. See the above screenshot again for a recall.</p></div></p>
<p style="text-align: center;">
<p>BUT, One question stays the same!!</p>
<p>Even you can read all the emails which comes to your business email, you cannot reply those with *your* domain business email. If you want to reply them, then <strong>you have 2 options</strong>,</p>
<ol>
<li>Reply using the free Gmail account.</li>
<li>Reply using your business email account. &#8211; HOW &#8230;? See below</li>
</ol>
<h2>How to Use Your Business Email With Gmail</h2>
<p>As I explained you clearly the disadvantage of using free email account to connect with your prospects, I&#8217;m sure you want to follow this tutorial. So you could email your prospects using your business email right <em>within</em> your Gmail account.</p>
<p><img loading="lazy" decoding="async" class="alignleft size-full wp-image-976" alt="How to use domain business email with Gmail tutorial image" src="http://www.scorpiongodlair.com/wp-content/uploads/2014/01/Busisness-Email-With-Gmail.jpg" width="401" height="813" /> <strong>❶</strong> Since you&#8217;re going to setup a connection in between Gmail Server &amp; your website. You need to go to Settings page of Gmail first. Note the top right corner of Gmail just below your profile picture. Click on that Gear icon and go to Settings page.</p>
<p><strong>❷</strong> Now go to the Accounts section of the Gmail Settings, there you can see an option to add your newly created domain business email to Gmail. See the screenshots left for a quick glance. Click on that link, so the setup begins.</p>
<p><strong>❸</strong> You can write any name, no matter it&#8217;s your name or your business name. Type your domain business email for the email field and go to next step.</p>
<p><strong>❹</strong> In the this step, choose the 2nd option and fill the details. I&#8217;m using HostGator and the details I used in the screenshot worked fine for me every time. But if those details don&#8217;t work for you, try changing &#8220;yourdomain.com&#8221; to &#8220;mail.yourdomain.com&#8221;.</p>
<p>You can use the cPanel login details for the login details requested here. Once you confirm everything is right, Click on the Add Account. If everything is right Gmail will show you a success confirmation message happily!</p>
<p>Now send a test email with any subject to your domain business email with your Gmail account. Within few minutes you must see the forwarded email. Now open up another email that you received from another person and go to reply. You must see the option to choose which email account to use. (Down arrow in the From field.)</p>
<p>End of the line &#8230;</p>
<p>What&#8217;s your opinion about domain business emails? Can they really affect your credibility and trust? I&#8217;m sure you&#8217;ve got something to say, So I don&#8217;t stop you. &#8211; Say it below!</p>
<p>The post <a href="https://www.scorpiongodlair.com/business-email-and-trust/">Build Trust With Your Prospects By Business Email</a> appeared first on <a href="https://www.scorpiongodlair.com">ScorpionGod Lair</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.scorpiongodlair.com/business-email-and-trust/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">972</post-id>	</item>
		<item>
		<title>How to Install WordPress, #3 Super Fast &#038; Easy Methods</title>
		<link>https://www.scorpiongodlair.com/how-to-install-wordpress/</link>
					<comments>https://www.scorpiongodlair.com/how-to-install-wordpress/#respond</comments>
		
		<dc:creator><![CDATA[Shyam Chathuranga]]></dc:creator>
		<pubDate>Thu, 16 Jan 2014 08:29:39 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[How to install WordPress manually]]></category>
		<category><![CDATA[WordPress Installation]]></category>
		<guid isPermaLink="false">http://www.scorpiongodlair.com/?p=948</guid>

					<description><![CDATA[<p>WordPress is the &#8220;So far, So Good&#8221; blogging platform available for the serious Internet Marketers. Yeah, I&#8217;m saying it again and again. Yes, there are many other alternatives to WordPress, but many people tends to use WordPress. Moreover, many internet marketers who used to play with other blogging platforms later changed their decision. And they [&#8230;]</p>
<p>The post <a href="https://www.scorpiongodlair.com/how-to-install-wordpress/">How to Install WordPress, #3 Super Fast &#038; Easy Methods</a> appeared first on <a href="https://www.scorpiongodlair.com">ScorpionGod Lair</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>WordPress is the &#8220;So far, So Good&#8221; blogging platform available for the serious Internet Marketers. Yeah, I&#8217;m saying it again and again. Yes, there are many other alternatives to WordPress, but many people tends to use WordPress. Moreover, many internet marketers who used to play with other <a href="http://www.scorpiongodlair.com/blogger-vs-wordpress/" title="Blogger vs WordPress, The Fair Comparison">blogging platforms</a> later changed their decision.</p>
<p>And they <em>moved</em> their business from those platforms to the great WordPress platform.</p>
<p>Another half, struggles to find a way to <a href="http://www.scorpiongodlair.com/internet-marketing-misconceptions/" title="8 Common Internet Marketing Misconceptions">establish their online business</a> using WordPress. But they still don&#8217;t know how to install WordPress. Sometimes these people worry so much of being lost in the tech world. People who have used WordPress know how it feels</p>
<p><span id="more-948"></span>And people who haven&#8217;t, <strong>don&#8217;t know</strong> how it feels.</p>
<p>That fear of dealing with things they called &#8220;so techie&#8221; leads them to no business at all, even they have <a href="http://www.scorpiongodlair.com/online-business-benefits/" title="10 Reasons Why You Should Start an Online Business">great plans to start, launch and marketing</a>. So if you have been one of them in the past, I&#8217;d like to fish you from that group of people in the next few minutes.</p>
<p>Get ready for the <strong>fastest WordPress installation!</strong></p>
<h2>How to Install WordPress Manually</h2>
<p>When I was on <a href="http://www.scorpiongodlair.com/biggest-mistakes-scorpiongod-lair/" title="What Brought the End of ScorpionGod Lair on Blogspot Platform">Blogspot platform in my early blogging career</a>, I thought moving my blog from Blogspot platform to WordPress self-hosted version is so complicated.</p>
<p>But, It wasn&#8217;t what I thought!</p>
<p>First reason you don&#8217;t not want to deal with WordPress may be, this <strong>mind complication</strong>. You think it is complicated even it <em>isn&#8217;t</em> and even you <em>never</em> tried it. Now you&#8217;ll see how simple it is to install your WordPress website in less than what they called famous 5-minute installation.</p>
<p>Yep! If you&#8217;re ready with the goods, you can complete this in under 3 minutes. Save that extra 2 minute for a quick <strong>relaxation</strong>. <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<h3>Install WordPress Using Server cPanel</h3>
<p>This is the fastest manual method of installing WordPress for me. I know it is same for you too. Okay let&#8217;s start the race. Tick the clock!</p>
<h4>Things you need:</h4>
<p><strong>❶ cPanel login details</strong><br />
Once you purchased a hosting service like <a href="http://www.scorpiongodlair.com/hostgator" title="HostGator Web Hosting Free">HostGator</a> which gives you the great chance of using cPanel, you&#8217;ll receive the cPanel login details in a matter of seconds. This email contains all the important details that you should know as the owner of the hosting account.</p>
<p>Also, they supply you the default URL for the cPanel access. However, you can use these simple methods. For a moment suppose your website URL is &#8220;www.example.com&#8221;</p>
<p>➠ Add the word &#8220;cPanel&#8221; after your website URL. www.example.com/cpanel (Note the forward slash)<br />
➠ Add the cPanel Port after your website URL. www.example.com:2083 (Note the colon)</p>
<p>If you are using another hosting provider other than HostGator, then above 2 methods will slightly different. Interesting fact is all the hosts which I&#8217;ve worked with my clients are supporting above methods.</p>
<p><strong>❷ Correctly setup domain name</strong><br />
Yeah, I mean correctly setup nameservers of the domain. There are chances which you bought the hosting at one place and the domain at another place. One company may provide all the trades, but they might not be the best.</p>
<p>So, if you are in this situation don&#8217;t worry. Nameserver setup is just a 30 second job. Yeah, It&#8217;s that simple. In my case, I purchase all my <a href="http://www.scorpiongodlair.com/namecheap" title="Namecheap #Best Domain Registrar">domains through Namecheap </a>and <a href="http://www.scorpiongodlair.com/hostgator" title="HostGator 1st Month Free">hosting through Hostgator</a>. So I also had to forward my domain nameservers from Namecheap to my hosting account nameservers.</p>
<p>I said, you get all the important details of your hosting account in the 1st email they sent you. So open it and check for the Nameservers. In most times, they mention 2 Nameservers for your Shared hosting account. Now copy those 2 Nameservers. Make sure you do remove &#8220;http://&#8221; once you pasted in the notepad.</p>
<p>Okay, it&#8217;s time to login your domain account. Now go to your domain settings and find the Domain Nameservers page and paste the 2 Nameservers that you pasted into the notepad in this page. Depending on your Domain registrar, you need to find the accurate page. </p>
<p>If it is Namecheap you&#8217;ve got, here&#8217;s a quick screenshot from my Namecheap account.</p>
<p><div id="attachment_953" style="width: 710px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-953" src="http://www.scorpiongodlair.com/wp-content/uploads/2014/01/Namecheap-Domain-Nameserver-Setup.jpg" alt="Image of Namecheap Domain Nameserver Setup Page" width="700" height="393" class="size-full wp-image-953" srcset="https://www.scorpiongodlair.com/wp-content/uploads/2014/01/Namecheap-Domain-Nameserver-Setup.jpg 700w, https://www.scorpiongodlair.com/wp-content/uploads/2014/01/Namecheap-Domain-Nameserver-Setup-300x168.jpg 300w" sizes="auto, (max-width: 700px) 100vw, 700px" /><p id="caption-attachment-953" class="wp-caption-text">Go to the arrowed page and you&#8217;ll be here.</p></div></p>
<h4>Ready, Steady, Go!!!</h4>
<p>I guess you&#8217;ve found everything and ready to go for the 3 minute WordPress installation. Follow the exact steps below and make sure to post a comment if you&#8217;ve any questions. From here, I think you already transferred the domain nameservers correctly and your domain is linked to your hosting account.</p>
<p><span style="font-size: 20px;">❶</span> First of all, you need to login your website cPanel. So type your domain name or URL in the browser address bar. Then depending on your hosting provider add the access port or word cpanel. In my case, I can use this one to access the cpanel. &#8211; http://www.example.com:2083</p>
<p>Now login to your cPanel by using the login details provided in the 1st email after purchase. Things may look like below screenshot.<br />
<img loading="lazy" decoding="async" src="http://www.scorpiongodlair.com/wp-content/uploads/2014/01/Hostgator-cPanel-Dashboard.png" alt="Hostgator cPanel Overview" width="700" height="417" class="aligncenter size-full wp-image-954" srcset="https://www.scorpiongodlair.com/wp-content/uploads/2014/01/Hostgator-cPanel-Dashboard.png 700w, https://www.scorpiongodlair.com/wp-content/uploads/2014/01/Hostgator-cPanel-Dashboard-300x178.png 300w" sizes="auto, (max-width: 700px) 100vw, 700px" /></p>
<p><img loading="lazy" decoding="async" src="http://www.scorpiongodlair.com/wp-content/uploads/2014/01/cPanel-MySQL-Database-Creation-Tutorial.jpg" alt="cPanel Database Creation Steps" width="344" height="819" class="alignright size-full wp-image-955" srcset="https://www.scorpiongodlair.com/wp-content/uploads/2014/01/cPanel-MySQL-Database-Creation-Tutorial.jpg 344w, https://www.scorpiongodlair.com/wp-content/uploads/2014/01/cPanel-MySQL-Database-Creation-Tutorial-126x300.jpg 126w" sizes="auto, (max-width: 344px) 100vw, 344px" /><span style="font-size: 20px;">❷</span> In order to install WordPress, it requires a <strong>working MySQL Database</strong> where it stores everything from posts to images in your website. </p>
<p>This second step is to create that MySQL database by using the MySQL Database Wizard in the cPanel.</p>
<p>As you can see in the screenshot right, follow the simple 4 steps to create your MySQL Database. If you&#8217;re still in the cPanel dashboard, then scroll down for the section called &#8220;Databases&#8221;. </p>
<p>Click on the Database Wizard to start the step by step wizard for database creation.</p>
<p>Step <span style="font-size:20px;">➀</span> &#8211; Give a name for the Database such as &#8216;wpdb&#8217;<br />
Step <span style="font-size:20px;">➁</span> &#8211; Create an user account to deal with the DB such as &#8216;dbuser&#8217; with a strong password.<br />
Step <span style="font-size:20px;">➂</span> &#8211; Assign all the privileges for above user to play with the DB. *VERY* IMPORTANT.</p>
<p>You need the details of this MySQL Database in the process of WordPress installation. Therefore, don&#8217;t forget to <em>save</em> these details in a notepad at least until you finish installation. DB Name, DB User &#038; DB User Password are the details you want to save.</p>
<p>Many hosting providers like HostGator do host the Databases in your own server. But others do store it in another server. At this situation, you need to include the Database Hostname for that details you saved above.</p>
<p><span style="font-size: 20px;">❸</span> Once you completed the Database creation process, you need to upload the WordPress files to your server. It&#8217;s this step which save you those minutes. Did you <a href="https://wordpress.org/latest.zip">download the latest version</a> of WordPress? If not, you can download it on the wordpress.org</p>
<p><img loading="lazy" decoding="async" src="http://www.scorpiongodlair.com/wp-content/uploads/2014/01/cPanel-File-Manager.png" alt="Image of cPanel File Manager" width="408" height="313" class="alignleft size-full wp-image-959" srcset="https://www.scorpiongodlair.com/wp-content/uploads/2014/01/cPanel-File-Manager.png 408w, https://www.scorpiongodlair.com/wp-content/uploads/2014/01/cPanel-File-Manager-300x230.png 300w" sizes="auto, (max-width: 408px) 100vw, 408px" /><br />
You should have the zip file of WordPress by now. You don&#8217;t need to unzip it because the cPanel can unzip or extract it after upload. In order to upload the WordPress Zip file, you need to go to &#8220;File Manager&#8221; in the cPanel under the section of &#8220;Files&#8221; section.</p>
<p>Choose what I selected in the screenshot and click Go. Then you&#8217;ll see the File Manager. If you haven&#8217;t uploaded anything, you will see only the default directory called &#8220;cgi-bin&#8221;. Click on the Upload button in the top navigation bar and select the WordPress zip file to upload.</p>
<p>Once the upload is completed. Go back to the File Manager and click on the Reload icon in the small navigation bar. You&#8217;ll see the WordPress Zip file there. Right click on it, then click on Extract. Done? you&#8217;ll see the extracted files of WordPress.</p>
<p>Now you can remove the WordPress zip file since it is no longer required for your site.</p>
<p>Final step in the File Manager is to rename the <code>wp-config-sample.php</code> to <code>wp-config.php</code> after adding the accurate Database details which you saved in the 2nd step. Oh! I forgot to mention, you can right click on this file and Click on Code Edit to edit it in the browser.</p>
<p><img loading="lazy" decoding="async" src="http://www.scorpiongodlair.com/wp-content/uploads/2014/01/File-Manager-WP-Config-Edit.png" alt="Image is about editing the wp-config.php file using cPanel File Manager" width="567" height="328" class="aligncenter size-full wp-image-960" srcset="https://www.scorpiongodlair.com/wp-content/uploads/2014/01/File-Manager-WP-Config-Edit.png 567w, https://www.scorpiongodlair.com/wp-content/uploads/2014/01/File-Manager-WP-Config-Edit-300x173.png 300w" sizes="auto, (max-width: 567px) 100vw, 567px" /></p>
<p>Make sure to change the DB Hostname from &#8220;localhost&#8221; to your one, if your host store the Databases on another server.</p>
<p><img loading="lazy" decoding="async" src="http://www.scorpiongodlair.com/wp-content/uploads/2014/01/How-to-install-wordpress-manually.jpg" alt="How to install WordPress manually with cPanel" width="700" height="801" class="aligncenter size-full wp-image-961" srcset="https://www.scorpiongodlair.com/wp-content/uploads/2014/01/How-to-install-wordpress-manually.jpg 700w, https://www.scorpiongodlair.com/wp-content/uploads/2014/01/How-to-install-wordpress-manually-262x300.jpg 262w" sizes="auto, (max-width: 700px) 100vw, 700px" /></p>
<p><span style="font-size: 20px;">❹</span> After everything above, it&#8217;s the fun time with user-friendly installation. Now you can go to your website by typing the URL in the address bar. If that doesn&#8217;t bring you to the above page and mention &#8220;<strong>Error establishing database connection</strong>&#8221;</p>
<p>Then your Database details may be wrong or it could be your hostname is wrong. Also it could be a mistake done by you in the process of Database creation in the step 2.</p>
<p>If everything okay and it still doesn&#8217;t show you above page after trying with www.yourdomain.com<br />
Then this one will do the trick. &#8211; http://www.yourdomain.com/wp-admin/install.php</p>
<p>Now fill the details as you wish and you can login to your WordPress website in the next minute. This is how you need to install WordPress using cPanel method. So what you think? Is this the <em>fastest</em> manual installation method ever?</p>
<h3>Install WordPress Using FTP</h3>
<p>If your hosting provider doesn&#8217;t support for cPanel, File Manager or Zip file extraction. Probably, you cannot go with the fastest manual method. But this one can help you to install WordPress again manually.</p>
<p>When you use FTP Installation method, you are going to spend more time than you would spend with cPanel method. The process is still same with the Database Creation.</p>
<p>But the difference is you need to use FTP client such as FileZilla to do FTP installation. You can <a href="https://filezilla-project.org/download.php" title="Download FileZilla FTP Client here">download the FileZilla here</a> and it&#8217;s free!</p>
<p><img loading="lazy" decoding="async" src="http://www.scorpiongodlair.com/wp-content/uploads/2014/01/wordpress-ftp-installation-method.png" alt="WordPress FTP FileZilla Installation Guide" width="700" height="559" class="aligncenter size-full wp-image-962" srcset="https://www.scorpiongodlair.com/wp-content/uploads/2014/01/wordpress-ftp-installation-method.png 700w, https://www.scorpiongodlair.com/wp-content/uploads/2014/01/wordpress-ftp-installation-method-300x239.png 300w" sizes="auto, (max-width: 700px) 100vw, 700px" /></p>
<p>In the above screenshot, notice the area covered with the Red lines. You need to enter the FTP login details for your Hosting account in this area. If you&#8217;re using HostGator, then you can use the same login details which you used for cPanel access.</p>
<p>But, some hosts doesn&#8217;t provide this feature. If this is the case, you need to find the FTP login details from the after purchase email or by logging to your hosting account. When you do have the stuffs, just enter as shown in the screenshot and click Quick Connect.</p>
<p>Then you can see the files in *your* computer in the left side and the files in your *server* in the right side. Before you upload, unzip the WordPress zip file and go to that unzipped WordPress folder from FileZilla. Now select all the files of this folder by clicking the &#8220;Ctrl + A&#8221;.</p>
<p>Right click and select &#8220;Upload&#8221;. Once the files has been uploaded successfully, you need to edit the <code>wp-config-sample.php</code> file as I explained in the cPanel method. This time right click on the file and click on Edit.</p>
<p>Once done follow the same steps mentioned in the Step 4 of cPanel WordPress Installation method.</p>
<h2>How to Install WordPress Automatically</h2>
<p>Personally, I don&#8217;t recommend anything that happens automatically. But you may want to free your head from the headaches if above processes looks too difficult to achieve. So here is the easiest method that installs WordPress with couple of clicks.</p>
<p>When used this method, you don&#8217;t have to upload, create databases or deal with FTP clients. Automatic installation can be completed by filling few fields, but you have to aware how to fill these.</p>
<p><img loading="lazy" decoding="async" src="http://www.scorpiongodlair.com/wp-content/uploads/2014/01/wordpress-installation-fantastico-de-luxe.png" alt="WordPress Installation with Fantastico De Luxe cPanel Software" width="490" height="240" class="aligncenter size-full wp-image-964" srcset="https://www.scorpiongodlair.com/wp-content/uploads/2014/01/wordpress-installation-fantastico-de-luxe.png 490w, https://www.scorpiongodlair.com/wp-content/uploads/2014/01/wordpress-installation-fantastico-de-luxe-300x146.png 300w" sizes="auto, (max-width: 490px) 100vw, 490px" /></p>
<p>You are going to use the cPanel software called Fantastico De Luxe for this automatic installation of WordPress. Find the Fantastico De Luxe software at the place shown in the screenshot and click on it.</p>
<p>Now choose the WordPress under &#8220;Blogs&#8221; in the left sidebar and click on &#8220;New Installation&#8221;. This will proceed the installation form where you type the Usernames, Password, Emails and the Domain name. Once you completed this form, there&#8217;s nothing to do much. </p>
<p>The next step is to proceed the installation and you&#8217;ll be given the Login details which you typed earlier with the Login URL. Simply login and start your journey to become the next internet marketer.</p>
<p>You can&#8217;t be a successful internet marketer by having just only a WordPress site, you have to learn what works and what not. So, what&#8217;s your favorite method of installing WordPress? Is there a specific reason for choosing that method? If so, I&#8217;d like to hear it from your words!</p>
<p>HINT: Comments are opened for you! Sharing buttons are waiting for you!</p>
<p>The post <a href="https://www.scorpiongodlair.com/how-to-install-wordpress/">How to Install WordPress, #3 Super Fast &#038; Easy Methods</a> appeared first on <a href="https://www.scorpiongodlair.com">ScorpionGod Lair</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.scorpiongodlair.com/how-to-install-wordpress/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">948</post-id>	</item>
		<item>
		<title>Asynchronous Genesis Social Share Counter WordPress Plugin</title>
		<link>https://www.scorpiongodlair.com/genesis-optimized-social-share-wp-plugin/</link>
					<comments>https://www.scorpiongodlair.com/genesis-optimized-social-share-wp-plugin/#comments</comments>
		
		<dc:creator><![CDATA[Shyam Chathuranga]]></dc:creator>
		<pubDate>Sun, 12 Jan 2014 12:51:38 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Social Share Counters]]></category>
		<category><![CDATA[WordPress Plugin]]></category>
		<guid isPermaLink="false">http://www.scorpiongodlair.com/?p=929</guid>

					<description><![CDATA[<p>Search Engine Optimization is something which I truly admire in my online marketing life. Not because it helps to achieve higher search engine rankings, but because correct SEO helps search engines to make this world a better place by providing the needed things at the right time in right order. Just after the launching of [&#8230;]</p>
<p>The post <a href="https://www.scorpiongodlair.com/genesis-optimized-social-share-wp-plugin/">Asynchronous Genesis Social Share Counter WordPress Plugin</a> appeared first on <a href="https://www.scorpiongodlair.com">ScorpionGod Lair</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-938" alt="Genesis Social Share Counter Plugin Features &amp; Benefits" src="http://www.scorpiongodlair.com/wp-content/uploads/2014/01/Genesis-Optimized-Social-Share-Featured.png" width="700" height="227" srcset="https://www.scorpiongodlair.com/wp-content/uploads/2014/01/Genesis-Optimized-Social-Share-Featured.png 700w, https://www.scorpiongodlair.com/wp-content/uploads/2014/01/Genesis-Optimized-Social-Share-Featured-300x97.png 300w" sizes="auto, (max-width: 700px) 100vw, 700px" />Search Engine Optimization is something which I truly admire in my <a title="Internet Marketing, Most Profitable Marketing Ever!" href="http://www.scorpiongodlair.com/internet-marketing-subs/">online marketing life</a>. Not because it helps to achieve higher search engine rankings, but because correct SEO helps search engines to make this world a better place by providing the needed things at the right time in right order.</p>
<p>Just after the launching of <a title="SEO Advicer, Real SEO Guidance WordPress Plugin" href="http://www.scorpiongodlair.com/seo-advicer-wordpress-plugin/">my 1st loving WordPress plugin called SEO Advicer</a> by spending 2 whole days to develop and launch, I&#8217;ve got another idea for a perfect plugin.</p>
<p>This time also I thought to keep SEO in the first priority for this new plugin or let&#8217;s say my 2nd loving WordPress plugin!</p>
<p><span id="more-929"></span>If you had sometime to read the launching post of <a title="SEO Advicer, Real SEO Guider" href="http://wordpress.org/plugins/seo-advicer/">SEO Advicer plugin</a>, then you already know what pain which I had with the thing called WP SVN.</p>
<p>Fortunately, after the 1st commit of my 1st plugin, I realized much more about SVN.</p>
<p>This leads to a smoother committing of the 2nd WordPress plugin to the world. The plugin is having some connection with the whooping word &#8211; <a title="Checkout Genesis Framework Today!" href="http://www.scorpiongodlair.com/genesis">Genesis Framework</a>!</p>
<h2>Gift For Genesis Lovers: Best Social Share Counter</h2>
<p>Yea! A gift from ScorpionGod Lair to the lovers of Genesis Framework. If you never heard of Genesis, it&#8217;s the #1 WordPress theme framework created in the SEO &amp; Simplicity in the mind by the group of hard working people called StudioPress.</p>
<p>Just like Genesis, my 2nd plugin also kept SEO in the first priority when developing and even the benefits of this new plugin also directly related to your website&#8217;s SEO strength. By now, you may want to know the name of it &#8230;</p>
<p>It&#8217;s the <a title="Asynchronous Social Share Counters for Genesis Users" href="http://wordpress.org/plugins/genesis-optimized-social-share/">Genesis Optimized Social Share</a>.</p>
<p>At the second you finished reading the name, you realized few things about this. See whether you&#8217;re right or wrong. But now let&#8217;s make it short and sweet, so that I don&#8217;t have to bother with writing that long name every time I want to mention it.</p>
<p>Let&#8217;s say GOSS. Agree &#8230;?</p>
<p>GOSS is specially created for the <em>Genesis</em> users, because I&#8217;m also a Genesis user. Simply, GOSS can minimize the impact which is generated by your average social share counter plugin. The impact is the influence created onto your <strong>website speed</strong> and <strong>loading time</strong>.</p>
<p>How?</p>
<p>Yea, you should ask that, if you didn&#8217;t. Almost each and every social share counter plugin loads many JS files for thousands of social media sites, sometimes you don&#8217;t use all of them and that could <em>be</em> a problem.</p>
<p>But that is not the catch with <a title="GOSS Plugin for Genesis Users" href="http://wordpress.org/plugins/genesis-optimized-social-share/">GOSS WordPress plugin</a>. when the average social share counter plugins load the JS files Synchronously, GOSS loads the selected JS file Asynchronously. That&#8217;s the catch.</p>
<p>Sometimes, you might be thinking what the hell is <strong>Synchronous</strong> &amp; <strong>Asynchronous</strong>. Let me take 60 seconds to explain you the alien words.</p>
<p>When you load your social share counters using the <em>Synchronous</em> way, each social counter will be loaded in the initial page load by making the user waiting time high. In other words, this method adds more seconds to your Page Loading time.</p>
<p>Do you know that all the internet users don&#8217;t need to share something until they read it. Perhaps, you realize the fact: <strong>Loading social share counters in the initial load is NOT necessary!<br />
</strong><br />
If there&#8217;s no any usage of these counters for the user, until they consume your content. Why showing them at the same time your page loads. Even it kicks off your website speed?</p>
<p><em>Asynchronous</em> method do the inverse of the above procedure, means it will not load the counters in the initial load of the page. Instead of that counters will be loaded once the page is loaded completely. This cut off the seconds added by the average social share counter plugins.</p>
<p>Simply, your website Loading Time will be <strong>much lower</strong> than what you could see with an average plugin. Want to check this new GOSS plugin on your Genesis site? You can <a title="Latest Version GOSS" href="http://wordpress.org/plugins/genesis-optimized-social-share/">download the latest version of the Genesis Optimized Social Share plugin</a> on its own room of the WordPress plugins repository.</p>
<h2>May be you want more &#8230;</h2>
<p><div id="attachment_941" style="width: 563px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-941" src="http://www.scorpiongodlair.com/wp-content/uploads/2014/01/screenshot-1.png" alt="Live demo of the Genesis optimized social share plugin" width="553" height="242" class="size-full wp-image-941" srcset="https://www.scorpiongodlair.com/wp-content/uploads/2014/01/screenshot-1.png 553w, https://www.scorpiongodlair.com/wp-content/uploads/2014/01/screenshot-1-300x131.png 300w" sizes="auto, (max-width: 553px) 100vw, 553px" /><p id="caption-attachment-941" class="wp-caption-text">Live Demo of GOPSS Plugin</p></div>Yeah, seems like you want more about GOSS plugin. What about the awesome <em>features</em> of it?</p>
<ul>
<li>Increases your Website Speed while kicking off unnecessary delay. Since GOSS is loading each and every JS file Asynchronously, website speed will be much faster.</li>
<li>As I said earlier, <a title="Successful Blog Never Rely on Social Media and SEO" href="http://www.scorpiongodlair.com/social-media-seo-helpers/">SEO was in my mind</a> when I develop this plugin. So GOSS plugin doesn&#8217;t create any separate CSS &amp; JS Files. Moreover, CSS styles and JS codes are fully minified and outputted on the same page itself.</li>
<li>Best is always enough for a perfect play. GOSS doesn&#8217;t use all those thousand Social Media counters. Instead, GOSS uses only 4 Counters by default in its initial version. Best 4 includes Google+, Facebook, Twitter, Pinterest.</li>
<li>There is nothing to configure in the initial version of the GOSS plugin. Just install it and forget it. Settings page and more features will be launched soon!!</li>
<li>All 4 social counters will be displayed after the post content as soon as you activates the GOSS plugin.</li>
<li>Vertical counters are available for all 4 social media sites and aligned beautifully.</li>
<li>GOSS plugin will appear only on Post Pages. Therefore, social counter JS files and plugin CSS styles will NOT be loaded on WordPress pages.</li>
</ul>
<h2>I’d like, If you could …</h2>
<p><strong>Genesis Optimized Social Share</strong> is my 2nd WordPress plugin. With the release of this 2nd plugin, I&#8217;ve got a huge passion to create more useful WordPress plugins. So this won&#8217;t be the last plugin I launch.</p>
<p>But I&#8217;d like to ask you few things,</p>
<p style="padding-left: 30px;">1. GOSS is designed to work with any Genesis website. If you&#8217;re a Genesis user or going to be a one of them, please download my plugin and use. After that you could write a review for GOSS. Your reviews will influence on me to build more features.</p>
<p style="padding-left: 30px;">2. I know you have a blog, So what&#8217;s wrong with writing a post about GOSS. Your readers may interested in GOSS.</p>
<p style="padding-left: 30px;">3. Finally, If you&#8217;re serious enough to read this release post, You should have guts to share it. <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f600.png" alt="😀" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>If you have any questions related to Genesis Optimized Social Share WordPress plugin, please write a comment below or open a support ticket on repository page of the GOSS.</p>
<p>The post <a href="https://www.scorpiongodlair.com/genesis-optimized-social-share-wp-plugin/">Asynchronous Genesis Social Share Counter WordPress Plugin</a> appeared first on <a href="https://www.scorpiongodlair.com">ScorpionGod Lair</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.scorpiongodlair.com/genesis-optimized-social-share-wp-plugin/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">929</post-id>	</item>
		<item>
		<title>SEO Advicer, Real SEO Guidance WordPress Plugin</title>
		<link>https://www.scorpiongodlair.com/seo-advicer-wordpress-plugin/</link>
					<comments>https://www.scorpiongodlair.com/seo-advicer-wordpress-plugin/#comments</comments>
		
		<dc:creator><![CDATA[Shyam Chathuranga]]></dc:creator>
		<pubDate>Sat, 05 Oct 2013 13:22:17 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[SEO Advicer]]></category>
		<category><![CDATA[WordPress Plugin]]></category>
		<guid isPermaLink="false">http://www.scorpiongodlair.com/?p=573</guid>

					<description><![CDATA[<p>It&#8217;s been a couple of months I started to follow my To-Do list for ScorpionGod Lair and I had a passion to create a WordPress Plugin someday. Yeah! I know that someday might not come for most of the people, but somehow I managed to make that &#8216;someday&#8217; yesterday. I created my first ever WordPress [&#8230;]</p>
<p>The post <a href="https://www.scorpiongodlair.com/seo-advicer-wordpress-plugin/">SEO Advicer, Real SEO Guidance WordPress Plugin</a> appeared first on <a href="https://www.scorpiongodlair.com">ScorpionGod Lair</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>It&#8217;s been a couple of months I started to follow my To-Do list for ScorpionGod Lair and I had a passion to create a WordPress Plugin someday. Yeah! I know that someday might not come for most of the people, but somehow I managed to make that &#8216;someday&#8217; yesterday. I created my<strong> first ever WordPress Plugin&#8230;!</strong></p>
<p>Yes! I made it by spending <em>2 whole days</em> to write, update and launch. I&#8217;m really happy about my 1st Plugin and had a headache experience with <a title="WP SVN Guide" href="http://wordpress.org/plugins/about/svn/">WordPress Repository SVN</a> thing. </p>
<p>There weren&#8217;t any killer tutorial which explained each of the steps clearly, but after some research I managed to solve my SVN issue and the Plugin is now <a title="Your list of SEO Actions to reach higher rankings!" href="http://www.wordpress.org/plugins/seo-advicer/">live at WordPress Plugins Repository for all of you</a>.</p>
<p><span id="more-573"></span></p>
<p><div id="attachment_577" style="width: 670px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-577" src="http://www.scorpiongodlair.com/wp-content/uploads/2013/10/SEO-Advicer-Plugin-Live-Screenshot.jpg" title="SEO Advicer Live Action Screenshot" alt="SEO Advicer Live Action Screenshot" width="660" height="268" class="size-full wp-image-577" srcset="https://www.scorpiongodlair.com/wp-content/uploads/2013/10/SEO-Advicer-Plugin-Live-Screenshot.jpg 660w, https://www.scorpiongodlair.com/wp-content/uploads/2013/10/SEO-Advicer-Plugin-Live-Screenshot-300x121.jpg 300w" sizes="auto, (max-width: 660px) 100vw, 660px" /><p id="caption-attachment-577" class="wp-caption-text">SEO Advicer Live Action Screenshot</p></div></p>
<h2>SEO Advicer, Name of the 1st Plugin</h2>
<p>Actually, SEO Advicer does the task of providing various SEO Actions to the website owner, so he can implement those action points to make his website more powerful in SEO.</p>
<p>SEO Advicer is developed to provide SEO Advices of both types. Means you can receive OnSite SEO actions and OffSite SEO actions. Simply if you have guts to do what is suggested by this plugin time to time, you&#8217;ll make it to the higher in Google Search Engine Results Page (SERPs) positions. It&#8217;s a guarantee only IF you follow what is being displayed to you over the time.</p>
<p>Since both OnSite &amp; OffSite SEO tips are provided by the plugin you could <strong>easily improve your website</strong> such as Performance, Loading Time, Usability, Navigation and many other factors that needs to be improved under OnSite SEO. For the OffSite SEO you&#8217;ll see <strong>Link Building Strategies</strong>, best practices and perfect plans from time to time.</p>
<p>Okay, <a title="SEO Advicer - OnSite &amp; OffSite SEO Advises" href="http://www.wordpress.org/plugins/seo-advicer/">you can download the up-to-date version</a> from the Official WordPress Repository Page.</p>
<h2>What&#8217;s Next&#8230;</h2>
<p>The first version of the SEO Advicer Plugin is released with little amount of SEO Action Points. This Version 1.0 contains,</p>
<ul>
<li>40+ SEO Action Points.</li>
<li>Some fancy styles to display.</li>
</ul>
<p>However, I have planned to update this plugin to deliver more thriving SEO Tips which will be relevant to the Industry best practices and Strategies. This plugin delivers only <strong>WhiteHat SEO Tips</strong> and it&#8217;ll be strictly same in the future too.</p>
<p>If you read each Action Point or SEO Tip displayed in the top center of the WordPress Dashboard, you&#8217;d learn most of the things about SEO. This means by using SEO Advicer Plugin you&#8217;ll gain regular updates about SEO Industry. At that point, it&#8217;s good to be used by even SEO Service Providers too.</p>
<p>As a WordPress Blogger or Internet Marketer you don&#8217;t need to forget what&#8217;s your Goal and what&#8217;s the To-Do list for your website improvement. Therefore this plugin can be a nice reminder for you to work for your Goals. There is a big probability of doing what you see more often that you should do. That&#8217;s why I read my <strong>To-Do List everyday morning</strong> to make me motivate enough to continue for my Goals.</p>
<h2>I&#8217;d like, If you could&#8230;</h2>
<p>Yes, tell me what you&#8217;re feeling about my first WordPress Plugin to deliver SEO Tips. Perhaps, you need to have something nice in my SEO Advicer Plugin, I&#8217;d be glad so much if you could tell me that suggestion too. If I&#8217;m capable of delivering what you want, I&#8217;ll definitely do it in this plugin or by creating another WordPress Plugin.</p>
<p>Finally, I&#8217;d like to invite you to download and check out my first WordPress Plugin now and Review it by spending few seconds of your valuable time. That makes me happy, that makes me motivate and that means you&#8217;ll get more from me in the near future.</p>
<p>Now go here to <a title="SEO Advicer, Download &amp; Review my 1st WP Plugin" href="http://www.wordpress.org/plugins/seo-advicer/">download and review SEO Advicer Plugin</a> on WP Repository.</p>
<p>Once you checked, If you think that your website readers will get something from this plugin why not spread this Free SEO Advicer Plugin in one of your articles&#8230; <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>The post <a href="https://www.scorpiongodlair.com/seo-advicer-wordpress-plugin/">SEO Advicer, Real SEO Guidance WordPress Plugin</a> appeared first on <a href="https://www.scorpiongodlair.com">ScorpionGod Lair</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.scorpiongodlair.com/seo-advicer-wordpress-plugin/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">573</post-id>	</item>
		<item>
		<title>How to Enable Tight WordPress Spam Protection Instantly</title>
		<link>https://www.scorpiongodlair.com/wordpress-spam-protection/</link>
					<comments>https://www.scorpiongodlair.com/wordpress-spam-protection/#respond</comments>
		
		<dc:creator><![CDATA[Shyam Chathuranga]]></dc:creator>
		<pubDate>Tue, 24 Apr 2012 11:52:49 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Spam Filter]]></category>
		<guid isPermaLink="false">http://www.scorpiongodlair.com/?p=287</guid>

					<description><![CDATA[<p>Web Spams &#8230; This is something familiar to anybody who use Internet. Since the early days of Internet, people took various actions to stop &#8211; no, say minimize &#8211; the Web Spam. Internet giants like Google also wants to create a Spam Free web. So you should too, You own a WordPress website, you get [&#8230;]</p>
<p>The post <a href="https://www.scorpiongodlair.com/wordpress-spam-protection/">How to Enable Tight WordPress Spam Protection Instantly</a> appeared first on <a href="https://www.scorpiongodlair.com">ScorpionGod Lair</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" src="http://www.scorpiongodlair.com/wp-content/uploads/2012/04/wordpress-spam-protection-methods.jpg" alt="WordPress Spam Protection Guide" width="620" height="388" class="aligncenter size-full wp-image-917" srcset="https://www.scorpiongodlair.com/wp-content/uploads/2012/04/wordpress-spam-protection-methods.jpg 620w, https://www.scorpiongodlair.com/wp-content/uploads/2012/04/wordpress-spam-protection-methods-300x187.jpg 300w" sizes="auto, (max-width: 620px) 100vw, 620px" /><br />
Web Spams &#8230; This is something familiar to anybody who use Internet.</p>
<p>Since the early days of Internet, people took various actions to stop &#8211; no, say minimize &#8211; the Web Spam. Internet giants like Google also wants to create a Spam Free web. So you should too,</p>
<p>You own a WordPress website, you get Spams to it. Yes, WordPress frequently gets lot of Spam Comments even it has the <em>most powerful WordPress spam protection</em> systems, when compared to other CMS.</p>
<p>That is why I said &#8220;minimize&#8221; instead of &#8220;Stop&#8221; &#8211; You can&#8217;t Stop it, Unless they Stop it!</p>
<p><span id="more-287"></span></p>
<h2>The Spam Story</h2>
<p>You know I started this blog few weeks ago and tomorrow will be the 6th Week of the blog. As you know blog turned to 1month on April 19th. That means 4 weeks and 1 day. In the first 2 weeks I was waiting for comments. Yeah, it&#8217;s just 2 weeks only, So How is it going to get more Comments? Damn!!</p>
<p>I started to get comments at the end of the 2nd week saying &#8220;I found your blog thru Google, Bing or Yahoo&#8221;. First, there were only a few of those kind of spam comments, But at the middle of 3rd week the number of spam comments started to rise. I can happily say, All those comments have been caught in the Spam Box. See the image below.</p>
<p><img loading="lazy" decoding="async" class="aligncenter" title="Akismet Total Summary for ScorpionGodLair.com" alt="Akismet Total Summary for ScorpionGodLair.com" src="http://www.scorpiongodlair.com/wp-content/Postimg/Akistmet%20Total%20Summary%20for%20ScorpionGodLair.com.jpg" width="607" height="139" /></p>
<p>This is my up to date Total Stat in Akismet Plugin which I used to kill the spammers in their neck!. Look total number of Spams I got up to now(24.04.2012) is 383. That&#8217;s so bad. Within the first month I got 383 Spams. </p>
<p>Now I&#8217;m getting around 20 such Spam Comments and all are ended up in the Spam Box thanks to the WordPress spam filtering systems.</p>
<p>Then what is this &#8216;Ham&#8217; means here? Ham is simply non-spam comments. So Ham can be known as good, correct, valuable comment. According to Akismet, They do catch non-spam comments as Spams VERY RARELY.! I mean very rarely. </p>
<p>Then how is this Ham number got 80? Is that your question?</p>
<p>Yeah, This is how it happened. Akismet knows the bad behaviors of spammers and their spamming styles too. I said Spam Comments are started to caught in&nbsp; Spam Box at the end of 2nd week. So I thought those are good comments &#8211; I felt like that!. And published some of them. </p>
<p>Then the &#8216;Ham&#8217; number increased to 80. So the accuracy in the screenshot is also wrong a bit. </p>
<p>If all those Published Spam comments also deleted, then the accuracy must be passed at least 99.99%. See the below image to get an idea how Spammers started their work more seriously!</p>
<p><img loading="lazy" decoding="async" class="aligncenter" title="Akismet Historical Stats for ScorpionGodLair.com" alt="Akismet Historical Stats for ScorpionGodLair.com" src="http://www.scorpiongodlair.com/wp-content/Postimg/Akistmet%20Historical%20Stats%20for%20ScorpionGodLair.com.jpg" width="605" height="149" /></p>
<p>March which is the launching month I got only 17 spams, but in April I got over 360 Spams. I read most of the Spam Comments and got a bunch of ideas how these dead-brains work <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>If any of the WordPress spam protection strategies fail to catch these, you&#8217;ll be able to use your <em>Living Brain</em> to catch these Dead-Brains&#8217; work.</p>
<h2>The Spammers Behavior</h2>
<p>If you are blogging for a while, definitely you have some ideas about this. Below are three comments I get everyday. I think they haven&#8217;t brains to understand this.</p>
<blockquote><p>I’ll immediately clutch your rss feed as I can’t in finding your email subscription link or newsletter service. Do you have any? Kindly permit me recognise in order that I may just subscribe. Thanks.</p></blockquote>
<blockquote><p>You’re in reality a just right webmaster. The web site loading velocity is incredible. It kind of feels that you are doing any distinctive trick. Moreover, The contents are masterpiece. you’ve performed a fantastic task in this matter!</p></blockquote>
<blockquote><p>Hi, i feel that i noticed you visited my site thus i got here to return the desire?.I’m attempting to in finding issues to improve my site!I assume its good enough to use some of your ideas!!</p></blockquote>
<p>I get large number of above type of comments. Some comments are in my mind coz everyday those idiots do spams.<br />
Did you noticed the thing behind their English &#8230;? </p>
<p>Below are some of behaviors of Spammers.</p>
<p><strong>1. They sometimes paste the same comment or write the same thing like robots.</strong></p>
<p>Remember the 3 comments above? Most of the Software based Bulk Spammers use the same content for a large number of comments. If you approve these nuts, you&#8217;re in a danger of duplicate content and spam website.</p>
<p><strong>2. They always link to inner pages.</strong></p>
<p>This isn&#8217;t always a bad behavior, but Spammers tend to do this in an unusual way. Usually very long URLs to their inner pages. </p>
<p><strong>3. They use keywords in the name field.</strong></p>
<p>Recently, I had a beautiful day in reading Spam Comments, See below for the surprised Name of the Spammer!</p>
<blockquote><p>online money, emoney, imarketing, internet money, online jobs</p></blockquote>
<p>Using keywords in the Name Field of a Comment form is really looks like Spam. These spammers use their Primary Keywords in the Name Field to get the anchor text value. They are day dreamers.</p>
<p><strong>4. Their language is on a fence.</strong></p>
<p>Noticed the 3 comments above? They had unusual sentences. Many Spammers aren&#8217;t native English people or the clients of these Spammers aren&#8217;t. That is not a matter.</p>
<p>If you see something really funny like above in a comment, surely it&#8217;s a Spam.</p>
<p><strong>5. Their comments are irrelevant.</strong></p>
<p>Most of the times, their comments are totally out of the content scope. Sometimes they tend to mention that their comments are off-topic. Isn&#8217;t it funny?</p>
<p><strong>6. Sea of Links in comments.</strong></p>
<p>Software based spammers do comment with lots of links to their inner pages in the comment body. These are simply captured in Spam box instantly with these WordPress spam protection methods.</p>
<p><strong>7. Affiliate links in the comments.</strong></p>
<p>This isn&#8217;t always a behavior of the bad guy. Spammers who use their Affiliate links in the URL field, often creates a dump comment body. So aware about these.</p>
<h2>Why They Spam?</h2>
<p>Did you ever had a time to think why these people earn the Sin of Web Spam? Like any other question, this one too has an answer. It&#8217;s better to see why they do it, </p>
<p>So you can come up with a better WordPress spam protection plan.</p>
<h4>Get Backlinks, Cheating in SERPs</h4>
<p>Primary hope of a Spammer is to get the Links which feed the Search Engines mostly. Simply, they don&#8217;t understand what is SEO. &#8211; <em>It&#8217;s a Knowledge Problem</em>.</p>
<h4>Promote Dumbest Sins</h4>
<p>Yeah, I mean the world&#8217;s most nastiest Sins such as P0rn, Dru9s and all other illegal stuff. One of the aims of Google is to create a family-friendly Internet, So SEs don&#8217;t treat these bad stuff. </p>
<p>These sinful people become Spammers to build their establishment as a result. &#8211; <em>It&#8217;s a Mental Problem</em>.</p>
<h4>Beginner Blogger</h4>
<p>These days there are so many beginner bloggers with their new blogs. But not all these people know what they are doing exactly, nor do they have a clear picture about their goals.</p>
<p>Lack of knowledge on their own actions lead to Spams. &#8211; <em>It&#8217;s again a Knowledge Problem</em>.</p>
<h2>WordPress Spam Protection Strategies</h2>
<p>I think you know what I&#8217;m going to talk about. Yeah I&#8217;m going to tell you the killer. <strong>Killer is the Akismet</strong> as you assumed. This is the best Spam-Detecting Plugin in the world.<br />
<img decoding="async" class="aligncenter" title="Akismet Homepage" alt="Akismet Homepage" src="http://www.scorpiongodlair.com/wp-content/Postimg/Akistmet%20HomePage.jpg" width="600" /></p>
<p>Above image is the Homepage of <a title="The Spam Killer - Akismet" href="http://www.akismet.com">Akismet.com</a> There&#8217;s a number which is continuously increasing. That&#8217;s the number of Total Spams. I believe that number should be increase like that. because spammers all around the world do this damn Spamming.</p>
<p>The Akismet is a service offered by <a title="Automattic Company" href="http://www.automattic.com/">Automattic Company</a>. They are the owner of the world most popular <a href="http://www.scorpiongodlair.com/blogger-vs-wordpress/" title="Blogger vs WordPress, The Fair Comparison">blogging platform WordPress</a>. When someone commented on your blog it&#8217;s first send to Akismet server and it does various kind of tests over 100. Then reply to your blog whether it&#8217;s a Spam or a Ham!.</p>
<p>As I said Akismet do over 100 tests to identify Spams. So Spams never gonna be Hams. If it occurs that&#8217;s rarely. These 100 tests include every point of a spammer. They don&#8217;t reveal it, because you know why!. Another good of Akismet is it test Trackbacks and Pingbacks too. </p>
<p>So you don&#8217;t want to offer a link to crappy spammers. If one comment in the spam box, You must check that comment again before hitting Un-Spam, because Akismet put it in Spam Box for a reason not for a funny Joke. I think you understand it on the dot.</p>
<p>The Akismet technology is updating real-time means you don&#8217;t want to make any doubts about Spam in the future too. This plugin is developed to <a href="http://akismet.com/development/">20 other platforms</a> too. But that list does not include most famous beginner blogging platform Blogspot!. </p>
<p>There&#8217;s a Free version of this service for Personal &#038; Non-commercial websites, but buying a paid version is good and a mode of returning the favor.</p>
<p>To use the Akismet free version just signup in Akismet.com and get a free API key and set up it in the Akismet Plugin which is already installed with WordPress. Then you are ready to GO!</p>
<h3>Still want something more?</h3>
<p>Akismet is the world&#8217;s No.1 WordPress Spam Protection system, but you might want to make it more tighter for Spammers without breaking the Akismet system.</p>
<p>The next system to protect your website from Spam Comments is to use <a href="http://www.growmap.com/growmap-anti-spambot-plugin/" title="GASP Plugin">GASP Plugin</a> by CommentLuv developer Andy Baily.</p>
<p>What do you think about these 2 WordPress spam protection strategies? Would you use both Akismet and GASP or just one of them?</p>
<p>The post <a href="https://www.scorpiongodlair.com/wordpress-spam-protection/">How to Enable Tight WordPress Spam Protection Instantly</a> appeared first on <a href="https://www.scorpiongodlair.com">ScorpionGod Lair</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.scorpiongodlair.com/wordpress-spam-protection/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">287</post-id>	</item>
		<item>
		<title>Successful Blog Never Rely on Social Media and SEO</title>
		<link>https://www.scorpiongodlair.com/social-media-seo-helpers/</link>
					<comments>https://www.scorpiongodlair.com/social-media-seo-helpers/#comments</comments>
		
		<dc:creator><![CDATA[Shyam Chathuranga]]></dc:creator>
		<pubDate>Mon, 16 Apr 2012 07:21:48 +0000</pubDate>
				<category><![CDATA[General]]></category>
		<guid isPermaLink="false">http://www.scorpiongodlair.com/?p=264</guid>

					<description><![CDATA[<p>Now old-fashioned ways are old, those methods or strategies can&#8217;t make you success in What you want. So you need to think beyond those old goodies and strategies. Think different and you&#8217;ll have a nice one. There are two things bloggers always like to use, SEO &#8211; Search Engine Optimization and Social Media/Networking/Bookmarking. For now [&#8230;]</p>
<p>The post <a href="https://www.scorpiongodlair.com/social-media-seo-helpers/">Successful Blog Never Rely on Social Media and SEO</a> appeared first on <a href="https://www.scorpiongodlair.com">ScorpionGod Lair</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Now old-fashioned ways are old, those methods or strategies can&#8217;t make you success in What you want. So you need to think beyond those old goodies and strategies.</p>
<p>Think different and you&#8217;ll have a nice one.</p>
<p>There are two things bloggers always like to use, SEO &#8211; Search Engine Optimization and Social Media/Networking/Bookmarking. For now let me keep <a title="On-Page Optimization" href="http://www.techblaster.net/2011/12/on-page-optimization-seo.html">SEO</a> aside. Let&#8217;s talk about <strong>Social Media</strong> a little.</p>
<p>From the very beginning of the <a title="Internet Marketing the Greatest Marketing Around the World" href="http://www.scorpiongodlair.com/internet-marketing-greatest-marketing-around-world/">Internet Marketing</a> Social Media and other things were started.</p>
<p><span id="more-264"></span> Then the Bloggers also started to use those Social Media sites and started to optimize those sources to get them sales and traffic. At that time there weren&#8217;t high competition for those bloggers and Social Media users also bought their products and visited their blogs.</p>
<p>Today, there are so many bloggers to teach the same thing as others. High competition for the same thing. They are using social media to attract visitors anyhow. Now social media users&#8217; mind is changed and they know what&#8217;s going in. So you can&#8217;t trick them using old goodies. More specially you can&#8217;t grab them doing the same thing as others.</p>
<p>That&#8217;s where the word &#8216;UNIQUE&#8217; comes to the game.</p>
<p>You need be different, Think different, see different and all the things need to be different and feel different. There&#8217;s no value to anything if it does not change. So there&#8217;s no point at all if you do the same thing as others.</p>
<p>Success comes by thinking differently. Old goodies can&#8217;t make you succeed. Create your own strategies. Bloggers always very likely to use <strong>Social Media</strong> sites. But do all of them get what they want? Nope. Only a few amount achieve their wants, their goals. Using the social media in the old-fashioned way is a one cause for this.</p>
<h2>How Bloggers use Social Media</h2>
<p>There many people who write something on their blogs. Most of them using Social Media in the same way. Creating a FaceBook fan page and share your posts automatically using some tool is not getting traffic. People don&#8217;t like to deal with robots. You need to be active on them.</p>
<p>Some bloggers write posts and share all of them in their wall, Group walls and friends wall and every where there&#8217;s a wall. But it does not give them high traffic.</p>
<p>Do something different then you can have something better from Social Media sites.</p>
<h2>Blogging style Followed by Failing Bloggers</h2>
<p>When you sing a song, you have your own style. You&#8217;re singing the song using that style. But what if that style sounds bad? Your song is finished. Same point goes on beginner blogging style. Most of the beginner ones start their blogs same as others. But they are following a very bad style. It&#8217;s worse!.</p>
<p>They are like robots made by blogging gurus. They learned blogging from those gurus and going to apply those. But it might not give results for them. Most strategies are now getting old. You can&#8217;t get results today like yesterday that guru got. So change that old one little by little and optimize it for today strategy.</p>
<p>Those bloggers follow this worse method and break their hopes on blogging.</p>
<p>They start their blogs suddenly, after that they are writing some posts by watching what other bloggers are written. Sometimes they are reading one post from a well-known blogger and write the same thing without adding more to it. As I said bloggers love to use Social media sites. So these bloggers also use social media with the hope of getting traffic to their blogs.</p>
<p>But do they get it? No, they only get 10-15 visits from those social media sites. That&#8217;s the bitter truth about beginner blogging life. Then they are raving why I don&#8217;t get good number of visitors? But do they understood what they did? I think most of them don&#8217;t understand it. Because they are powered by the myths. Once they get rid of it they are going to understand it.</p>
<p>Beginner blogging world is a full of myths. They have various kinds of myths. Those are beside the topic of this post. But why they failed? Is it only the myths they believe? Yeah, I think.</p>
<h2>Why they failed?</h2>
<p>Most people got failed in the first attempt of something. Only a few managed to become success. So every failed time is adding experience to your career. But failing by the myths is the worse thing here.</p>
<p>Bloggers going to fail, when they don&#8217;t do their tasks in the right way. Suppose you have an exam, then you don&#8217;t study hard. How can you pass that exam? You didn&#8217;t study your subject matter deeply. So how can you? That&#8217;s why students failed in their exams.</p>
<p>If you&#8217;re into blogging, then you must be familiar with blogging and learn about blogging. You can&#8217;t swim without knowing how to do it. And You can&#8217;t make a successful blog without getting know about the core formula. You need to learn about it, you need to grab as much as knowledge about it. You need to throw your myths out of you. Then you can ride to the Successful blogger from beginner blogger.</p>
<p>Simply you need to know what you&#8217;re going to do. You wake up in the morning and sit in front of your computer. Then you&#8217;re going to write a post. But what are you going to write? That&#8217;s the case. You sat by the practice of everyday route. You didn&#8217;t select what you&#8217;re going to write about. So you need to plan and think about your blog as a very IMPORTANT thing.</p>
<p>When you care about it like that, You&#8217;re going to work hard for it. As I said earlier without knowing the core formula you can&#8217;t build it. Familiar with it then you&#8217;ll meet it.</p>
<h2>Then What&#8217;s the catch</h2>
<p>In order to become a successful blogger you need to care about what you know and what you do. You know every blogger should use SEO and Social Media. But the blogging life is not about them. It&#8217;s about writing. Those two are only helpers to your writing.</p>
<p>Remember you can&#8217;t put every hope on those two &#8211; Social Media, SEO. Then what are the things you need think?. You need to think simply this formula. It&#8217;s the formula for creating a successful blog.</p>
<p><div style="width: 610px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" title="The Blogging Success Formula" alt="The Blogging Success Formula" src="http://www.Scorpiongodlair.com/wp-content/Postimg/Blogging Success Formula.jpg" width="600" height="480" /><p class="wp-caption-text">The Core Formula</p></div></p>
<p>See above image. As I said you this is the formula and I break it a little for easy grabbing. The Formula is</p>
<ol>
<li>Foundation.</li>
<li>Content.</li>
<li>Promotion.</li>
</ol>
<p>You can see how I broke those 3 parts into few parts.</p>
<h2>The Foundation</h2>
<p>I broke this Foundation into 3 pieces. They are <strong>Knowledge</strong>, <strong>Writing Skills</strong> and <strong>Blog Design</strong>. You need to fulfill these 3 requirements before jump to Blogging world. If not you&#8217;ll fail at the start-up.</p>
<p>Knowledge &#8211; When you start your blog, you choose a niche. Choosing the niche to start blogging gets a big attention. Because if you choose something you don&#8217;t know, then you can&#8217;t be with that blog anymore. So you need to be master in your niche. If not you need to learn about your niche and get as much as information about it.</p>
<p>Writing Skills &#8211; Everyone can&#8217;t write fabulous way(me too). So you need to master at a style of writing which people love to read. There are more posts on Content Writing in out there. Just read all of them and get their style of writing. You need to make people interest in your content. If they feel bored, they might find someone&#8217;s content. Try to become <a title="HeadLine Writing Master" href="http://www.dailyblogtips.com/who-else-wants-to-be-a-headline-writing-ninja/">Headline Writing Master</a>. After the blog design Visitor get into headlines of your articles</p>
<p>Blog Design &#8211; Great point to think again and again. Because design of your blog does the first role when visitor come to your blog. So if it&#8217;s not a eye-catching visitor may go away. You need to put every useful thing to it in a manner of neat. use smart graphics for it. Most bloggers don&#8217;t use graphics much.</p>
<p>After you fulfill these 3 requirements then you&#8217;re ready to GO.&nbsp; Next one is Content.</p>
<h2>The Content</h2>
<p>This is the King of your blog. Everyone defines Content as King. So you also. People care about the King very much and King care about the people very much. So this time King is your Content and People are your readers. So what you think? You need to think about reader when writing your content. In order to do that You need to fulfill that Writing Skill which included in Foundation part.</p>
<p>There are so many different kind of Content types. But when look in common corner, It must give some invaluable information to the reader. The content types are:</p>
<p><strong>Killer Posts, Tutorials</strong></p>
<p>These are posts which are very long. That very long comes from writing information rich points not by writing some story or something else. You need to aim for writing one point in different views and different corners. Or you can write more points in that way. Usually this kind of post gets over 1500 words. Anyway aim of these kind of posts is describe every simple point every complex point and offer highly valuable content.</p>
<p><strong>Videos</strong></p>
<p>There various ways people use to get information. one cause of that variation is using videos to grab information. Some people don&#8217;t interest in reading something. So they can use your videos. Create How-To videos, Tutorial Videos, Presentation Videos and upload them to YouTube and other video sites and see the results.</p>
<p><strong>Images</strong></p>
<p>You know and everyone knows Images get more traffic from search engines. If you make some complex points into an attractive Image like the one I made above, You can give very high value for your Images too. Then people can share those easily. They can remember those points easily.</p>
<p><strong>Presentations</strong></p>
<p>You can create presentations to describe something nicely. It&#8217;s like a post write on your blog, but nice way to teach something.&nbsp; Create those and share in sites like SlideShare.</p>
<p><strong>EBooks, Reports</strong></p>
<p>You can write monthly traffic reports or some other very important thing as an EBook or Report. People like to read these too.</p>
<p>Do various things using all these content types, then you&#8217;ll have a great time.</p>
<h2>The Promotion</h2>
<p>This one needs to do in a clean way. I broke this part into 3 parts but actually It consist 3 parts. Because <a title="42 Genuine Legal Link Building Strategies You Must Try" href="http://www.scorpiongodlair.com/42-genuine-legal-link-building-strategies-you-must-try/">Link Building belongs to Off-Site under SEO</a>. Link Building consist of using Social Media and every other link sharing methods. Other than SEO you can do Advertising, but it doesn&#8217;t want If you don&#8217;t want quick boost. Using Free ways means some time spending not Instantly.</p>
<p>Is this post got your attention? If yes You might like to subscribe ScorpionGodLair.com</p>
<p>The post <a href="https://www.scorpiongodlair.com/social-media-seo-helpers/">Successful Blog Never Rely on Social Media and SEO</a> appeared first on <a href="https://www.scorpiongodlair.com">ScorpionGod Lair</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.scorpiongodlair.com/social-media-seo-helpers/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">264</post-id>	</item>
		<item>
		<title>42 Genuine Link Building Strategies You Must Try</title>
		<link>https://www.scorpiongodlair.com/link-building-strategies/</link>
					<comments>https://www.scorpiongodlair.com/link-building-strategies/#comments</comments>
		
		<dc:creator><![CDATA[Shyam Chathuranga]]></dc:creator>
		<pubDate>Sat, 14 Apr 2012 07:36:54 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Backlinks]]></category>
		<category><![CDATA[Link Building]]></category>
		<guid isPermaLink="false">http://www.scorpiongodlair.com/?p=249</guid>

					<description><![CDATA[<p>Really Awesome topic to talk about in every second of a blogger. Because great Link Building Strategies always can boost your rankings more than any other SEO Factor. You want simple and quality link building strategies? Yes, that&#8217;s why you&#8217;re here. Even there are many link building strategies around the web, this list includes only [&#8230;]</p>
<p>The post <a href="https://www.scorpiongodlair.com/link-building-strategies/">42 Genuine Link Building Strategies You Must Try</a> appeared first on <a href="https://www.scorpiongodlair.com">ScorpionGod Lair</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" src="http://www.scorpiongodlair.com/wp-content/uploads/2012/04/Link-Building-Strategies-With-Chess.jpg" alt="Image of Chess Peices to imply Link Building Strategies" width="700" height="342" class="aligncenter size-full wp-image-904" srcset="https://www.scorpiongodlair.com/wp-content/uploads/2012/04/Link-Building-Strategies-With-Chess.jpg 700w, https://www.scorpiongodlair.com/wp-content/uploads/2012/04/Link-Building-Strategies-With-Chess-300x146.jpg 300w" sizes="auto, (max-width: 700px) 100vw, 700px" />Really Awesome topic to talk about in every second of a blogger. Because great Link Building Strategies always can boost your rankings more than any other SEO Factor. You want simple and quality link building strategies? Yes, that&#8217;s why you&#8217;re here.</p>
<p>Even there are many link building strategies around the web, this list includes only <em>WhiteHat</em> or Google loving link building strategies. </p>
<p>You&#8217;ll never get penalized by Google for following these strategies as long as you keep the <a href="http://www.scorpiongodlair.com/link-building-introduction/" title="What You Must Know About Link Building">Rate and Relevancy</a> in a constant point. </p>
<p><span id="more-249"></span>Reason why this list does not contain any BlackHat link building strategies is &#8211; Google doesn&#8217;t love them and you&#8217;ll not get long term results by following bad strategies. Okay, now you&#8217;re proceeding to the 42 Link Building Strategies which delivers you the results you want.</p>
<h2>1. Sharing links with your friends</h2>
<p>You have so many friends. So tell them to add your link on their little blog. They might not blog professionally. But they can give a link. The link value will be not worth much, But remember it&#8217;s worth even a little.</p>
<h2>2. Sharing homepage links with other bloggers in your niche</h2>
<p>See your competition as your friends, because the word &#8216;Relevancy&#8217; is in their hands. Start a true relationship with other bloggers in the same niche you blog. Exchange links with those friend bloggers under Partners or Friends section of their Sidebar.</p>
<p><a href="http://www.scorpiongodlair.com/backlinks-secret-strategy/" title="Secret Backlinks Strategy Revealed to Get More">This will bring you Sitewide Links</a>, but it&#8217;s always good to use <em>NoFollow</em> attribute link in this case as it is said by Google.</p>
<h2>3. Sharing post page links with other bloggers in your niche.</h2>
<p>This one is the best method of link exchanging. Because it don&#8217;t put you in a Risk!. </p>
<p>Google also likes these type of links, as they are relevant. You need to ask your niche bloggers to exchange links on their posts. Simply, you make a Backlink for him with the requested Anchor Text from your blog post and he do the same for you with your <a href="http://www.scorpiongodlair.com/keyword-density/" title="What You Must Know About Keyword Density">Keywords as the anchor text</a>.</p>
<p>This improves your power for that keyword brilliantly &#8230;!</p>
<h2>4. Write Professional content regularly.</h2>
<p>Yeah I mean regularly. It might be hard some times, but your dedication can defeat it.</p>
<p>Don&#8217;t write ordinary posts all the time, instead of ordinary posts you need to write killer posts &#8211; They will eat the competition! </p>
<h2>5. Use PPC and see the results.</h2>
<p>PPC or Pay Per Click can be useful some times, but I don&#8217;t use it for ScorpionGod Lair. If your content rocks, the people arrive from PPC Campaign may share your stuff on their Social Media accounts and probably they will blog about your post.</p>
<h2>6. Write articles for article directories</h2>
<p>You can write some articles to article directories such as EzineArticles, ArticleBase etc. </p>
<p>Usually they all have great rankings and Authority. </p>
<p>So the links from them will manage to flow more SEO juice which are more valuable. Try to write killer professional 30 articles and then submit them to highest ranking article directories. You&#8217;ll feel the increase of Visitors after a month.</p>
<p>Don&#8217;t forget to add few Backlinks to your website.</p>
<h2>7. Submit your feed to Syndication sites</h2>
<p>There are many sites that Syndicate content. Try to participate in them. I mean add your blog to those Syndication lists. You&#8217;ll have some readers also from those sites.</p>
<h2>8. Write Guest Posts</h2>
<p>This is the best link building strategy I recommend. Find some well-established blogs in your niche and write cracking Guest Posts. </p>
<p>Those posts also bring you lot of visitors while giving extremely high quality relevant links. So this is the game. Write 50 Guest posts now and select 50 blogs and distribute them within a week of time frame. </p>
<p>You&#8217;ll have cracking party in your blog. I&#8217;m sure you&#8217;ll have that party &#8211; If you Do!</p>
<h2>9. Email your best content to bloggers in your niche</h2>
<p>Yeah, this is looking little spammy. But spammy is your behavior not your work. </p>
<p>If you managed to write Killer Professional Articles, then you can recommend them to bloggers in your niche. Write a professional email saying only that you believe the blogger likes your article. And put the link to it. No need to say stories in your mail. You&#8217;re dealing with bloggers. So you need to care about their valuable time. </p>
<p>If your article win the mind of that blogger. Then surely they will recommend it to their readers also. That gives you a link.</p>
<h2>10. Submit your blog to DMOZ</h2>
<p>This is the first and most wanted Directory you need to submit your blog. This is the ODP Directory or Open Directory Project runs totally by humans. </p>
<p>All the submissions are manually checked by someone. So this directory offers the most valuable links. Authority of your blog also rises. Google and other Search Engines are using information on <a title="DMOZ" href="http://www.dmoz.org/">DMOZ</a>.</p>
<h2>11. Submit your blog to Technorati</h2>
<p>Then the second Directory you need to submit is <a title="Technorati" href="http://www.technorati.com/">Technorati</a>. Register for an account and claim your blog. This is valuable as much as DMOZ.</p>
<h2>12. Submit your blog to other Quality blog directories both paid and Free</h2>
<p>There are so many other useful blog directories. First, make a list of High Quality Free blog directories and submit to them. </p>
<p>Then if you like try the paid directories. When you submit to blog directories always care about the directory. It might send bot traffic or other spammy thing and will lead your blog to penalized by Search Engines. Google don&#8217;t like low quality bot directories. So try the most popular directories only.</p>
<h2>13. Submit your blog to RSS directories.</h2>
<p>This one also like blog directories but gives more links than those blog directories. So you must try this also. Make sure you review the quality of the RSS Directory before submitting.</p>
<h2>14. Tag your blog in Delicious.</h2>
<p>Share your blog in <a href="http://www.delicious.com/">Delicious</a>. It will give you more exposure and Backlinks for every time you share your stuff.</p>
<p>Don&#8217;t forget to share others&#8217; stuffs too.</p>
<h2>15. Share your content in FaceBook, Twitter.</h2>
<p>These are the big buddies of Social Media and you want to build your exposure on these 2. Because when you build the exposure, it builds you Backlinks.</p>
<h2>16. Get Google +1s for your Posts.</h2>
<p>Google is the giant of the Internet and Google Plus is their Social Media site. Having more +1s means you&#8217;re increasing the value of your website more than what you will get in other Social Media sites such as Facebook and Twitter.</p>
<h2>17. Pin your interesting content in Pinterest</h2>
<p>This is the new Social Media site which captured a higher place in Social Media list in the world. It&#8217;s a cracking rocket for Graphic attachments such as Infographs, Photographs. </p>
<p>Pin your bests in interesting <a href="http://www.pinterest.com">Pinterest</a>.</p>
<h2>18. Share your content in Digg</h2>
<p><a href="http://www.digg.com/">Digg</a> is also another Social Bookmarking site but with higher rankings. Add your best there too.</p>
<h2>19. Tell your friends to vote for your Digg &#038; Delicious links</h2>
<p>Try to bring your link into homepage or featured list in those social bookmarking sites. Then you&#8217;ll have great rankings and much traffic. That traffic also helps you to get more shares on those sites and on other Social Media sites too.</p>
<h2>20. Link to other WP blog posts &#8211; Trackbacks</h2>
<p>You have other bloggers in your niche. Recommend their posts to your readers. Then that blogger will be notified your link to his post and will be appeared in his post under Trackbacks section. You get a link nicely. Do this honestly.</p>
<h2>21. Answer some questions in your niche on Yahoo Answers</h2>
<p>Another cracking place to grab more links and traffic. You can answer relevant questions and add your link to resource box. This will bring traffic to some extend. Try to answer 10 questions every week. </p>
<p>The more you answer with your Resource Links, the more Backlinks you get. Before you can post clickable links you need to be in Level 2.</p>
<h2>22. Post a classified add on Craiglist</h2>
<p>Craiglist is a classified ad service for large number of niches. You should try with <a href="http://www.craiglist.org">Craiglist</a>, One of my customers receive more than 500 visitors per day from running Craiglist campaigns.</p>
<h2>23. Use Google Groups to distribute your content.</h2>
<p>Create a <a href="http://www.groups.google.com/">Google group</a> in there and get some members. Distribute your content. Get links!</p>
<h2>24. Try to create a Wikipedia page for you or for your blog after becoming popular enough.</h2>
<p>Don&#8217;t do this one If you&#8217;re still not a well-established blog. And Wikipedia don&#8217;t let you create pages as you want them. You must offer some value to its readers. So do it only if you have something special.</p>
<h2>25. Use Squidoo Lenses</h2>
<p>This is same as Article Directories, but <a href="http://www.squidoo.com/">Squidoo</a> is a web 2.0 content directory and you need to supply real content</p>
<h2>26. Add Links to your RSS Feed</h2>
<p>Bad guys use automated software to publish blog posts, interesting thing is they can use your RSS Feed to publish your stories to their blog automatically. When you place links to your Post and Blog in the RSS Feed story footer, you get those links when they publish your stuff.</p>
<p>WordPress SEO by Yoast is a plugin that can do this and lot of OnSite SEO tweaks.</p>
<h2>27. Use your blog links in the Signature field of Forums</h2>
<p>Use relevant niche Forums and be active on them. </p>
<p>Start a thread about anything with 2 or 3 concrete facts about the topic. If you have relevant articles in your blog, just link them at the necessary place. </p>
<p>Don&#8217;t go to do this once after you register there. First be active and show you&#8217;re real. Start your Forum journey from <a href="http://www.scorpiongodlair.com/warriorforum" title="Warrior Forum">WarriorForum</a> and make sure to read the tough rules of WF.</p>
<h2>28. Post your blog links in the Personal Profile of sites</h2>
<p>There are so many membership sites. Most of them allows you to add your blog link to profile page. FaceBook, Twitter are two examples, But there are non-Social Bookmarking sites too.</p>
<p>You find them!</p>
<h2>29. Write Reviews in Alexa for related blogs</h2>
<p>Write a clear honest Alexa review for related blogs in your niche. This will add exposure to your blog. Sometimes a link back.</p>
<h2>30. Write Testimonials for new Digital Products</h2>
<p>There are so many products and services released on Internet every day. </p>
<p>Most of the new products have review copies or just buy the product. Write a testimonial about the product and ask the seller to mention your Website Link with your testimonial.</p>
<p>If the product is a goldmine, it&#8217;ll bring you high quality links once it become popular.</p>
<h2>31. Write Professional Useful comments</h2>
<p>You may already have a list of relevant blogs in your niche. So read their posts and write a <a href="http://www.scorpiongodlair.com/commenting-strategy/" title="Enhanced Commenting Method For Better Rewards">Quality &#038; Valuable Comment</a>.</p>
<p>All the big attracting comments get traffic and exposure while giving a relevant link. This one also used by me widely.</p>
<h2>32. Hold Interesting contests</h2>
<p>Think different and unique way, and Hold a cracking contest. It&#8217;ll help you to get large number of links depending on your contest. Try to design one that gives optimum results.</p>
<h2>33. Design Few Web Tools</h2>
<p>You may be blogging about Blogger Tricks and then you can design some web-based applications or funky tools. For example design a tool to check how many links in a page. There are so many tools like that. So think different.</p>
<h2>34. Create some nice looking WP and blogger templates and submit them to template sites.</h2>
<p>This one is a good way only if all the bloggers who are going to use these themes or templates are going to be popular. But unfortunately even half of them not going to be success. Anyway you can get links from the footer credits every time when someone use your themes or templates.</p>
<h2>35. Try designing a Chrome extension or Firefox Addon</h2>
<p>The best face to face fighting browsers in the world are Firfox and Chrome. So create some useful <a title="Firefox Addon Building Guide" href="https://addons.mozilla.org/en-US/developers/builder">Firefox addons</a> and extensions for them. </p>
<p>No matter what it makes easier for the user. Just make a good  one.</p>
<h2>36. Write really long Killer articles(2000 words or above)</h2>
<p>As I said earlier Killer articles win the game mostly. These are going to be viral sometimes.</p>
<h2>37. Write cracking tutorials with every single point included</h2>
<p>This one also linkbait post &#8211; <em>Posts which have the aim of getting trillions of links</em>. Really great tutorials are going to get links easily. Because it is really helpful in any corner.</p>
<h2>38. Write list posts like this.</h2>
<p>Another type of linkbait posts. List posts are normally points or facts about a topic. It may be a list of achieving something or it may be a list of myths and so on.</p>
<h2>39. If you are using your mother language forums. Then write your blog posts summary or half of the post in your mother language and post in those forums.</h2>
<p>Try this method if you love to have country traffic. This method is really effective in normal forums.</p>
<h2>40. Write an Ebook or a report and submit them to Ebook sites and directories.</h2>
<p>There are bunch of Ebook sites. So create a free report or ebook and submit them to those sites with a linkback. You can grab traffic also. <a href="http://www.free-ebooks.net/submissionForm.php">Free-Ebooks</a> is a good one to start.</p>
<h2>41. Create a presentation and submit it to Slideshare</h2>
<p>If you have something to say which is complex and needs much words to explain. Then try creating a presentation. submit it to sites like <a href="http://www.slideshare.net/ ">SlideShare</a>.</p>
<h2>42. Create a Free WordPress Plugin &#038; Submit it to the Repository</h2>
<p>WordPress plugins are getting talked by all the people who use them. So try creating a one and submit it to WP plugins page. I created my 1st WordPress Plugin called <a href="http://wordpress.org/plugins/seo-advicer/" title="SEO Advicer - OnSite &#038; OffSite SEO Advises">SEO Advicer which delivers SEO Actions</a> right in your WordPress Dashboard.</p>
<h2>What&#8217;s Next &#8230;</h2>
<p>Did you forgot we already reached the 42nd Link Building Strategy? There are few things you can do next. Choose a one from the below!</p>
<p>1. Write a comment on what you think about these link building strategies.<br />
2. Write a reply post to these link building strategies in your blog.<br />
3. Click the Google+ button and Twitter Share button by spending 5 seconds.</p>
<p>The post <a href="https://www.scorpiongodlair.com/link-building-strategies/">42 Genuine Link Building Strategies You Must Try</a> appeared first on <a href="https://www.scorpiongodlair.com">ScorpionGod Lair</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.scorpiongodlair.com/link-building-strategies/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">249</post-id>	</item>
		<item>
		<title>What You Must Know About Link Building</title>
		<link>https://www.scorpiongodlair.com/link-building-introduction/</link>
					<comments>https://www.scorpiongodlair.com/link-building-introduction/#respond</comments>
		
		<dc:creator><![CDATA[Shyam Chathuranga]]></dc:creator>
		<pubDate>Tue, 10 Apr 2012 09:45:55 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<guid isPermaLink="false">http://www.scorpiongodlair.com/?p=237</guid>

					<description><![CDATA[<p>Link Building simply called hyperlinking. As a blogger you always like to know about Link Building, if not you ought to. Link Building which belongs to the Search Engine Optimization is a must for all bloggers who&#8217;d like to survive this battle blogging competition. You need to aware about Link Building to a great extent, [&#8230;]</p>
<p>The post <a href="https://www.scorpiongodlair.com/link-building-introduction/">What You Must Know About Link Building</a> appeared first on <a href="https://www.scorpiongodlair.com">ScorpionGod Lair</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img decoding="async" class="aligncenter" title="Link Building Strategies" alt="Link Building Strategies" src="http://www.scorpiongodlair.com/wp-content/Postimg/Link Building Strategies.jpg" /><br />
Link Building simply called hyperlinking. As a blogger you always like to know about Link Building, if not you ought to. Link Building which belongs to the <abbr title="SEO">Search Engine Optimization</abbr> is a must for all bloggers who&#8217;d like to survive this battle blogging competition.</p>
<p>You need to aware about Link Building to a great extent, because you can be doing the wrong way without knowing things correctly. </p>
<p>If you want a sad example for such people, just checkout the number of orders for Fiverr Bulk Backlinking Gigs.</p>
<p>It&#8217;s always a great deal when you do know what you do. That&#8217;s where you take the right decision. So keep reading to the concrete facts of Link Building. </p>
<p><span id="more-237"></span></p>
<h2>What Is Link Building</h2>
<p><a title="Link Building Tips" href="http://www.seobook.com/archives/001792.shtml">Link Building</a> can be known as like this. There are two blogs called A and B, then Blog A links to blog B&#8217;s homepage this is called <strong>Homepage Link Building</strong>. </p>
<p>If the blog B links to blog A&#8217;s Post page it&#8217;s called <strong>Post Page Link Building</strong>. Both types are good to get, but you need Post Page <abbr title="Link Building">LB</abbr> to boost the SEO Strength of a Post or Page.</p>
<p>Backlinks is another word to LB. You can get these Backlinks by WhiteHat Practices and BlackHat Practices which means Good Practices and Bad Practices respectively.</p>
<p>If you do follow Good Practices, you&#8217;ll get the benefits of backlinking for a long time, but if you do Bad Practices, then you will get the benefits for a short time. After that you&#8217;re gone with Bad practices.</p>
<h2>Benefits Of Link Building</h2>
<p>As I said earlier you can achieve many benefits while driving to your Goals. When a blog links to another blog, that means it&#8217;s a vote for that linked blog. If you collect many of them, then you&#8217;re the king. Search engines are using these votes to show relevant blogs in <abbr title="SERPs">Search Engine Results Page</abbr>. </p>
<p>Your riding of up and down is depend on mostly Link Building. </p>
<p>Link Building will help you to</p>
<ol>
<li>Get nice number of REAL readers which can be called Targeted Visitors.</li>
<li>Get traffic from those linked pages.</li>
<li>Rank high in SERPs.</li>
<li>Rank high for a particular Keyword(Word or Phrase searchers are using to find what they want).</li>
<li>Become an Authority in your niche.</li>
<li>Get smart sales.</li>
<li>Get a high Google PR &#8211; PageRank</li>
<li>Receive credibility and trust.</li>
</ol>
<p>There may be more benefits which I missed at this time. You find it and don&#8217;t forget to let me know below in the comments!</p>
<p>When more <a title="The Killer Optimized Commenting Tactic For Your Success" href="http://www.scorpiongodlair.com/the-killer-optimized-commenting-tactic-for-your-success/">relevant links coming to your blog</a> you&#8217;ll definitely start getting Targeted Visitors, that means you&#8217;ll get visitors who actually reads your posts very likely, visitors who actually comment on your posts and visitors who share your content on Social media sites and their blogs. </p>
<p>Do you understand this huge opportunity? They also take part in Link Building to your blog naturally. They are called <strong>Organic Link Building</strong>.</p>
<p>And another reason you can satisfy with those Targeted Visitors is, They might be very likely to buy your product, Service or your recommended things. There&#8217;s sign of getting sales with these visitors. That means <strong>Relevant Link Building</strong> will bring you to the Success.</p>
<p>When you get a Backlink, Search Engine just like Google gives you a +Score. The value of this Score is determined by the Quality of the Backlink you get. It includes factors such as Root PR, Number of Links in the page, Post Page PR, Relevancy of the Website, Post to your website or Post etc.</p>
<p>Remember the fact you learned few days ago on ScorpionGod Lair &#8211; Quality Over Quantity.</p>
<p>You don&#8217;t need 1000s of Backlinks, just 1 Quality Backlink would give you a PR1. Then why do you concentrate on creating 1000s of Backlinks? What&#8217;s the point of it, If you&#8217;re doing it?</p>
<p>There are many legitimate ways to build links. So try those <strong>Legit Link Building</strong> methods. Try to get the highest quality backlinks by putting a lot of effort. </p>
<p>It is better than the low quality 1000s &#8230;</p>
<h2>Common Rules For Link Building</h2>
<p>Everything must be done according to a law, unless you&#8217;re going to fight with the dead. Since search engines started to offer better relevant information for its users, they started to develop their ranking algorithm continuously. Bloggers also used various ways to Rank well in those Search Engines clean or ugly. </p>
<p>Some used to do it always using ugly things. There are two types of SEO according to it, BlackHat SEO &#8211; <em>Rank using bad ways</em> and WhiteHat SEO &#8211; <em>Rank using correct natural way</em>. And Google and other search engines started to fight with BlackHat SEO guys. </p>
<p>Search engines started to punish these guys by penalizing from search engines or some other kind. Do you want to face such a disaster? If not, Follow the legitimate ways and it will return the favor.</p>
<ul>
<li>Don&#8217;t Build It Too Fast &#8211; Google don&#8217;t like instant, fast Backlinks. So don&#8217;t try it. Build all your links as possible as slow. More it&#8217;s building slowly, the more you&#8217;re out of risky. Don&#8217;t let your backlinking pattern go out. You build 10 Backlinks every day then suddenly you buy 500backlinks. Google is watching all these things. So Instant means You&#8217;re dying.</li>
<li>Build Only Relevant Baclinks &#8211; Google likes relevant links directly. If you build all your links only from relevant blogs and other relevant sources, then you don&#8217;t have to worry about your ranks. Relevant Link Building provides more value to your blogs. Always try to build links using PR high blogs. If you don&#8217;t have a clear plan on how to do link building. Then you should learn more about it. Don&#8217;t build links from small blogs. This means dump blogs, crappy blogs, content copy blogs and similar blogs.</li>
</ul>
<p>Now you&#8217;re familiar with Link Building and it&#8217;s benefits. I&#8217;ll tell you <a href="http://www.scorpiongodlair.com/42-genuine-legal-link-building-strategies-you-must-try/" title="42 Genuine Legal Link Building Strategies You Must Try">Strategical ways to do Link Building</a> in a comfortable manner in my tomorrow post. There are hundreds of things to tell you about Link Building Methods. Think deeply then you&#8217;ll also design your own Link Building Strategies like every one else.</p>
<p>The post <a href="https://www.scorpiongodlair.com/link-building-introduction/">What You Must Know About Link Building</a> appeared first on <a href="https://www.scorpiongodlair.com">ScorpionGod Lair</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.scorpiongodlair.com/link-building-introduction/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">237</post-id>	</item>
	</channel>
</rss>
