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

<channel>
	<title>| Blogger Tips And Tricks|Latest Tips For Bloggers</title>
	<atom:link href="https://www.bloggertipandtrick.net/tutorials/seo/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Blogger Tips And Tricks&#124;Latest Tips For Bloggers</description>
	<lastBuildDate>Mon, 28 Jul 2025 14:29:44 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>How to Load Google Fonts Asynchronously Without Render-Blocking CSS</title>
		<link>https://www.bloggertipandtrick.net/async-google-fonts-no-render-blocking/</link>
					<comments>https://www.bloggertipandtrick.net/async-google-fonts-no-render-blocking/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 22 Jul 2025 14:44:37 +0000</pubDate>
				<category><![CDATA[fonts]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[seo]]></category>
		<guid isPermaLink="false">https://www.bloggertipandtrick.net/?p=6672</guid>

					<description><![CDATA[<p>Loading Google Fonts asynchronously is one of the best ways to speed up your website and eliminate the render-blocking CSS issue. In the past, developers often used the Web Font Loader JavaScript library for this purpose. However, modern browsers now support a faster and more efficient method that doesn't require extra JavaScript. The latest approach [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/async-google-fonts-no-render-blocking/">How to Load Google Fonts Asynchronously Without Render-Blocking CSS</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img fetchpriority="high" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Load-Google-Fonts-Asynchronously-Without-Render-Blocking-CSS.jpg" alt="How to Load Google Fonts Asynchronously Without Render-Blocking CSS" width="1200" height="630" class="singular-featured-image alignnone size-full wp-image-7296" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Load-Google-Fonts-Asynchronously-Without-Render-Blocking-CSS.jpg 1200w, https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Load-Google-Fonts-Asynchronously-Without-Render-Blocking-CSS-768x403.jpg 768w" sizes="(max-width: 1200px) 100vw, 1200px" /></p>
<p>Loading Google Fonts asynchronously is one of the best ways to speed up your website and eliminate the render-blocking CSS issue. In the past, developers often used the <strong>Web Font Loader</strong> JavaScript library for this purpose. However, modern browsers now support a faster and more efficient method that doesn't require extra JavaScript.</p>
<p>The latest approach uses the <strong>preconnect</strong> and <strong>preload</strong> tags combined with a smart <strong>onload</strong> handler and a <strong>noscript</strong> fallback. This ensures the font stylesheet is fetched early without delaying your page's render, improving both user experience and performance scores in tools like Google PageSpeed Insights and Lighthouse.</p>
<p>Add the following code just before the <strong>&lt;/head&gt;</strong> tag of your website:</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.googleapis.com&quot;&gt;
&lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.gstatic.com&quot; crossorigin&gt;
&lt;link rel=&quot;preload&quot; as=&quot;style&quot; href=&quot;<span style="color:#0cb30c;font-weight:bold;">YOUR_GOOGLE_FONTS_URL</span>&quot; onload=&quot;this.onload=null;this.rel='stylesheet'&quot;&gt;
&lt;noscript&gt;
  &lt;link rel=&quot;stylesheet&quot; href=&quot;<span style="color:#0cb30c;font-weight:bold;">YOUR_GOOGLE_FONTS_URL</span>&quot;&gt;
&lt;/noscript&gt;</pre>
<p>Replace "<span style="color: #0cb30c; font-weight: bold;">YOUR_GOOGLE_FONTS_URL</span>" with your actual Google Fonts URL. For example:</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.googleapis.com&quot;&gt;
&lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.gstatic.com&quot; crossorigin&gt;
&lt;link rel=&quot;preload&quot; as=&quot;style&quot; href=&quot;<span style="color:#ff00ff;font-weight:bold;">https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&amp;display=swap</span>&quot; onload=&quot;this.onload=null;this.rel='stylesheet'&quot;&gt;
&lt;noscript&gt;
  &lt;link rel=&quot;stylesheet&quot; href=&quot;<span style="color:#ff00ff;font-weight:bold;">https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&amp;display=swap</span>&quot;&gt;
&lt;/noscript&gt;</pre>
<p><strong>Here's how the code works:</strong></p>
<ul>
<li><strong>rel="preconnect"</strong> sets up early connections to Google's font servers for faster loading.</li>
<li><strong>rel="preload"</strong> fetches the stylesheet without applying it immediately, avoiding render-blocking.</li>
<li>The <strong>onload</strong> event updates the rel to <strong>stylesheet</strong> after loading.</li>
<li><strong>&lt;noscript&gt;</strong> ensures font loading still works for users with JavaScript disabled.</li>
</ul>
<p>This method loads Google Fonts efficiently, avoids layout shifts, and prevents invisible text issues by using <strong>display=swap</strong>.</p>
<p><strong>How to generate your Google Fonts URL:</strong></p>
<p>Go to <a href="https://fonts.google.com" target="_blank" rel="nofollow noopener">fonts.google.com</a>, select your desired font families and weights, and copy the generated embed link.</p>
<p><strong>Tip:</strong> Use fewer font families and font weights to reduce page size and loading time.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/async-google-fonts-no-render-blocking/">How to Load Google Fonts Asynchronously Without Render-Blocking CSS</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/async-google-fonts-no-render-blocking/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Submit Blogger Sitemap to Google Search Console</title>
		<link>https://www.bloggertipandtrick.net/submit-blogger-sitemap-google-search-console/</link>
					<comments>https://www.bloggertipandtrick.net/submit-blogger-sitemap-google-search-console/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 15 Jul 2025 03:36:00 +0000</pubDate>
				<category><![CDATA[google]]></category>
		<category><![CDATA[seo]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/03/how-to-submit-blogger-sitemap-to-google.html</guid>

					<description><![CDATA[<p>This quick tutorial explains how to submit your Blogger blog’s sitemap to Google Search Console. Every Blogger blog has a sitemap file automatically created by Blogger. You can access it by adding /sitemap.xml to the end of your blog URL. For example: https://YOURBLOGNAME.blogspot.com/sitemap.xml Follow the steps below to submit your Blogger sitemap to Google Search [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/submit-blogger-sitemap-google-search-console/">Submit Blogger Sitemap to Google Search Console</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/Submit-Blogger-Sitemap-to-Google-Search-Console.jpg" alt="Submit Blogger Sitemap to Google Search Console" width="1536" height="806" class="singular-featured-image alignnone size-full wp-image-7267" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/Submit-Blogger-Sitemap-to-Google-Search-Console.jpg 1536w, https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/Submit-Blogger-Sitemap-to-Google-Search-Console-768x403.jpg 768w" sizes="(max-width: 1536px) 100vw, 1536px" /></p>
<p>This quick tutorial explains how to submit your Blogger blog’s sitemap to <strong>Google Search Console</strong>. Every Blogger blog has a sitemap file automatically created by Blogger. You can access it by adding <strong>/sitemap.xml</strong> to the end of your blog URL.</p>
<p>For example: <strong><u>https://YOURBLOGNAME.blogspot.com<span style="color:#0cb30c;">/sitemap.xml</span></u></strong></p>
<p>Follow the steps below to submit your Blogger sitemap to Google Search Console:</p>
<p>1. Go to <a href="https://search.google.com/search-console" target="_blank">Google Search Console</a> and sign in with your Google account.</p>
<p>2. Select your blog from the property list (top-left dropdown).</p>
<p><strong>Note:</strong> If your blog isn't added yet, click "<strong>Add Property</strong>"  and enter your full blog URL (e.g., https://yourblogname.blogspot.com), then follow the <strong>verification steps</strong>.</p>
<p>3. In the left sidebar, click on "<strong>Indexing</strong>" → "<strong>Sitemaps</strong>".</p>
<p><img decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/Sitemaps-Google-Search-Console.png" alt="Sitemaps Google Search Console" width="307" height="487" class="alignnone size-full wp-image-7270" /></p>
<p>4. Under "<strong>Add a new sitemap</strong>", enter your full sitemap URL like this:</p>
<pre>https://YOURBLOGNAME.blogspot.com/sitemap.xml</pre>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/Add-Sitemap-URL-to-Google-Search-Console.png" alt="Add Sitemap URL to Google Search Console" width="724" height="280" class="alignnone size-full wp-image-7268" /></p>
<p>5. Then click the <strong>Submit</strong> button.</p>
<p>Your Blogger sitemap has now been submitted to Google. After processing, you'll be able to view indexing status, discovered URLs, and any crawling errors in the Search Console dashboard.</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/Submitted-Blogger-Sitemaps.png" alt="Submitted Blogger Sitemaps" width="718" height="257" class="alignnone size-full wp-image-7269" /></p>
<p><strong>Note:</strong> If you're using a <strong>custom domain</strong> (like https://www.mycustomdomain.com), your sitemap URL would be:</p>
<pre>https://www.mycustomdomain.com/sitemap.xml</pre>
<p>The post <a href="https://www.bloggertipandtrick.net/submit-blogger-sitemap-google-search-console/">Submit Blogger Sitemap to Google Search Console</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/submit-blogger-sitemap-google-search-console/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>How to Hide a Web Page from Search Engines</title>
		<link>https://www.bloggertipandtrick.net/hide-webpage-from-search-engines/</link>
					<comments>https://www.bloggertipandtrick.net/hide-webpage-from-search-engines/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Wed, 02 Jul 2025 03:32:09 +0000</pubDate>
				<category><![CDATA[meta tags]]></category>
		<category><![CDATA[seo]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=6229</guid>

					<description><![CDATA[<p>If you want to prevent a specific web page from appearing in search engine results, add the following meta tag inside the &#60;head&#62; section of that webpage, ideally just after the opening &#60;head&#62; tag: &#60;meta name='robots' content='noindex,nofollow'/&#62; How to Use it in Blogger? If you're using Blogger, go to Theme → Edit HTML of your [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/hide-webpage-from-search-engines/">How to Hide a Web Page from Search Engines</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Hide-a-Web-Page-from-Search-Engines.jpg" alt="How to Hide a Web Page from Search Engines" width="1536" height="806" class="singular-featured-image alignnone size-full wp-image-7206" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Hide-a-Web-Page-from-Search-Engines.jpg 1536w, https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Hide-a-Web-Page-from-Search-Engines-768x403.jpg 768w" sizes="auto, (max-width: 1536px) 100vw, 1536px" /></p>
<p>If you want to prevent a specific web page from appearing in <strong>search engine results</strong>, add the following meta tag <strong>inside the &lt;head&gt;</strong> section of that webpage, ideally <strong>just after</strong> the opening &lt;head&gt; tag:</p>
<pre style="border: 1px solid black; overflow: auto; font-size: 110%;">&lt;meta name='robots' content='noindex,nofollow'/&gt;</pre>
<h2>How to Use it in Blogger?</h2>
<p>If you're using Blogger, go to <strong>Theme</strong> → <strong>Edit HTML</strong> of your blog and insert the above code inside the <strong>&lt;head&gt;</strong> section.</p>
<p><strong>Note:</strong> If you add this meta tag directly into your Blogger template, it will hide your entire blog from search engines.</p>
<h3>How to Hide Only a Specific Blogger Page or Post?</h3>
<p>If you only want to hide a <strong>specific Blogger page or post</strong> from search engine results(for example, the "Advertise" page), use the conditional tag below to apply the meta tag only to that page:</p>
<pre style="border: 1px solid black; overflow: auto; font-size: 110%;">&lt;b:if cond='data:blog.url == &quot;<span style="color: #ff0000;">https://YOURBLOG.blogspot.com/p/advertise.html</span>&quot;'&gt; 
&lt;meta name='robots' content='noindex,nofollow'/&gt;
&lt;/b:if&gt;</pre>
<p>Remember to replace "<span style="color: #ff0000;">https://YOURBLOG.blogspot.com/p/advertise.html</span>" with your actual post or page URL.</p>
<p><strong>Important:</strong></p>
<p>If you're using a full URL like <strong>https://YOURBLOG.blogspot.com/p/advertise.html</strong>, make sure <strong>HTTPS Redirect</strong> is enabled. Otherwise, the meta tag won't load for visitors using the non-HTTPS (http://) version of the page.</p>
<p><strong>To enable HTTPS Redirect in Blogger:</strong></p>
<ol>
<li>Go to your <strong>Blogger Dashboard</strong></li>
<li>Click <strong>Settings</strong></li>
<li>Scroll down to the <strong>HTTPS</strong> section</li>
<li>Set <strong>"HTTPS Redirect"</strong> to <strong>ON</strong></li>
</ol>
<p>This ensures all visitors are automatically redirected to the secure HTTPS version of your blog, so your conditional tags work correctly.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/hide-webpage-from-search-engines/">How to Hide a Web Page from Search Engines</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/hide-webpage-from-search-engines/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Redirect a Blogger Post to Another URL</title>
		<link>https://www.bloggertipandtrick.net/redirect-blogger-post-to-another-url/</link>
					<comments>https://www.bloggertipandtrick.net/redirect-blogger-post-to-another-url/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Wed, 18 Jun 2025 02:32:00 +0000</pubDate>
				<category><![CDATA[html]]></category>
		<category><![CDATA[meta tags]]></category>
		<category><![CDATA[seo]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/12/how-to-redirect-a-blogger-post-to-another-url.html</guid>

					<description><![CDATA[<p>Do you wish to redirect a specific Blogger post to another page or an external URL? Whether you're retiring a post, upgrading your structure, or simply improving navigation, there's a simple and effective way that works perfectly on Blogger. 1. Go to "Edit HTML" page of your Blogger blog. 2. Scroll down to where you [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/redirect-blogger-post-to-another-url/">How To Redirect a Blogger Post to Another URL</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2009/12/How-To-Redirect-a-Blogger-Post-to-Another-URL.jpg" alt="How To Redirect a Blogger Post to Another URL" width="1536" height="806" class="singular-featured-image alignnone size-full wp-image-7175" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2009/12/How-To-Redirect-a-Blogger-Post-to-Another-URL.jpg 1536w, https://www.bloggertipandtrick.net/wp-content/uploads/2009/12/How-To-Redirect-a-Blogger-Post-to-Another-URL-768x403.jpg 768w" sizes="auto, (max-width: 1536px) 100vw, 1536px" /></p>
<p>Do you wish to redirect a specific Blogger post to another page or an external URL? Whether you're retiring a post, upgrading your structure, or simply improving navigation, there's a simple and effective way that works perfectly on Blogger.</p>
<p>1. Go to "Edit HTML" page of your Blogger blog.</p>
<p>2. Scroll down to where you see <span style="font-weight: bold; color: #ff0000;">&lt;head&gt;</span> tag .</p>
<p>3. Copy below code and paste it <span style="color: #3333ff;">just after</span> the <span style="color: #ff0000;">&lt;head&gt;</span> tag.</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;b:if cond='data:blog.url == "<span style="font-weight: bold; color: #cc33cc;">YOUR-BLOG-POST-URL</span>"'&gt;
&lt;meta http-equiv="refresh" content="<span style="font-weight: bold; color: #ff0000;">5</span>; url=<span style="font-weight: bold; color: #009900;">REDIRECT-URL</span>" /&gt;
&lt;/b:if&gt;</pre>
<p>4. Replace:</p>
<ul>
<li><span style="font-weight: bold; color: #cc33cc;">YOUR-BLOG-POST-URL</span> → with the full link of the Blogger post to redirect from.</li>
<li><span style="font-weight: bold; color: #009900;">REDIRECT-URL</span> → with the target URL.</li>
</ul>
<p>Look at the example below.</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;b:if cond='data:blog.url == "<span style="font-weight: bold; color: #cc33cc;">https://www.bloggertipandtrick.net/p/contact-me.html</span>"'&gt;
&lt;meta http-equiv="refresh" content="<span style="font-weight: bold; color: #ff0000;">5</span>; url=<span style="font-weight: bold; color: #009900;">https://www.bloggertipandtrick.net</span>" /&gt;
&lt;/b:if&gt;</pre>
<p>If I add above code to my template, when someone go to my contact us page he will be redirected to my home page after 5 seconds. To redirect without waiting, <span style="color: #3333ff;">replace</span> <span style="font-weight: bold; color: #ff0000;">5</span> with <span style="font-weight: bold; color: #ff0000;">0</span>.</p>
<p>5. After making changes to the code, click "Save" in the theme editor. That’s it. Your post now will be redirected to the new URL provided.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/redirect-blogger-post-to-another-url/">How To Redirect a Blogger Post to Another URL</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/redirect-blogger-post-to-another-url/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>How to Optimize WordPress Permalinks for SEO</title>
		<link>https://www.bloggertipandtrick.net/optimize-wordpress-permalinks-seo/</link>
					<comments>https://www.bloggertipandtrick.net/optimize-wordpress-permalinks-seo/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Sat, 15 Feb 2025 07:18:00 +0000</pubDate>
				<category><![CDATA[seo]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/09/how-to-change-wordpress-permalink-structure-for-better-seo.html</guid>

					<description><![CDATA[<p>Improving your WordPress permalink structure is essential for better SEO and user experience. In this guide, you'll learn how to customize your permalink structure to create clean, keyword-rich URLs that improve search rankings and make your site more accessible. By default, WordPress uses URLs containing a question mark and numbers for your permalinks, such as: [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/optimize-wordpress-permalinks-seo/">How to Optimize WordPress Permalinks for SEO</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Improving your WordPress permalink structure is essential for better SEO and user experience. In this guide, you'll learn how to customize your permalink structure to create clean, keyword-rich URLs that improve search rankings and make your site more accessible.</p>
<p>By default, WordPress uses URLs containing a question mark and numbers for your permalinks, such as:</p>
<pre>http://yoursite.com?p=123</pre>
<p>In order to increase the keyword density of your site for better SEO, you must change that setting to a custom permalink structure.</p>
<p>1. In your WordPress admin area, click “<strong>Settings</strong>” and then click “<strong>Permalinks</strong>”.</p>
<p>2. Select the “<strong>Custom Structure</strong>” value for the "<strong>Permalink Structure</strong>" setting, and in the box next to it, enter this:</p>
<pre>/%postname%/</pre>
<p>This will create URLs for your permalinks that would look like this:</p>
<pre>http://yoursite.com/title-of-your-post/</pre>
<p>3. Click on “<strong>Save Changes</strong>” button to save the above setting.</p>
<p>That's it! Your WordPress site will now use SEO-friendly URLs, helping improve search engine rankings and user experience.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/optimize-wordpress-permalinks-seo/">How to Optimize WordPress Permalinks for SEO</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/optimize-wordpress-permalinks-seo/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Five Questions To Ask an SEO Company Before Hiring</title>
		<link>https://www.bloggertipandtrick.net/five-questions-to-ask-an-seo-company-before-hiring/</link>
					<comments>https://www.bloggertipandtrick.net/five-questions-to-ask-an-seo-company-before-hiring/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 19 Feb 2019 14:46:41 +0000</pubDate>
				<category><![CDATA[seo]]></category>
		<guid isPermaLink="false">https://www.bloggertipandtrick.net/?p=6861</guid>

					<description><![CDATA[<p>Many businesses that deal with digital properties need search engine optimization (SEO). The primary goal of SEO is to improve a website's searchability and visibility. It helps a site improve its rankings on social engine results. SEO involves identifying phrases or keywords that your target audience uses when searching on the web, among other things. [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/five-questions-to-ask-an-seo-company-before-hiring/">Five Questions To Ask an SEO Company Before Hiring</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Many businesses that deal with digital properties need search engine optimization (SEO). The primary goal of SEO is to improve a website's searchability and visibility. It helps a site improve its rankings on social engine results. SEO involves identifying phrases or keywords that your target audience uses when searching on the web, among other things. It can help in promoting a brand since an optimized web site is likely to earn more traffic.</p>
<p>If you are planning on improving your website performance, then search engine optimization could be one of the things you are considering. Most probably you have not done this yourself, and therefore you're considering hiring an SEO company, which could be one of the best marketing decisions you can make for your business. <a href="https://www.highervisibility.com/search-engine-optimization/" target="_blank" rel="noopener">An SEO company will develop strategies</a> that can find your business on top of the first page on Google. The good news about ranking on top of google searches is that you're getting free traffic to your site, which could lead to impressive profit margins.</p>
<p>If you want to hire an SEO company for the first time, or considering to change your current company, here are some questions that will help you pick the right company.</p>
<p>How long to get on top of Google rankings?</p>
<p>This is one question that will help you know the genuine companies. If a company promises to help you reach the top immediately, or in one month, you can tell that they don't know anything about <a href="https://www.bloggertipandtrick.net/5-top-seo-factors-to-monitor-in-2019/" target="_blank" rel="noopener">SEO</a>. A genuine company does not overpromise to win clients. Although it might be possible for already developed websites, no one should give a definitive answer without doing some research on the missing links on your site. A genuine SEO company should research first before giving an estimate of the time.</p>
<p>What is their backlink strategy?</p>
<p>Backlinks form the foundation of Google's search algorithm. Without quality backlinks to your website, your Google rankings will remain at the bottom. You should go with a company that is willing to share the backlink strategy so that you can verify their quality. All backlinks need to be legitimate so that your site can have authority over competitors.</p>
<p>Will they factor in on-site optimization?</p>
<p>On-site optimization is all about improving your visitors' experience. You need to be sure that visitors will not come and leave shortly after. You want them to spend some time on your website and enjoy a good experience. Google analytics can be very important for analyzing users' experience on your site since you can tell the most and least visited websites on your site. The results from google analytics should be used to adjust the poorly performing pages. Your SEO company should offer solutions that address the overall performance of your website. All pages should be optimized for the best on-site user experience.</p>
<p>What local SEO strategy is used?</p>
<p>If your main target audience is in your local market, your website should be optimized to suit the needs of the local clients. An established SEO company should be familiar with strategies that can boost the performance of your website on the local market. They should find out whether your site is optimized for the local market through title tags and business information such as name, address and phone number.</p>
<p>Will they use a keyword search?</p>
<p>The choice of a keyword will have a significant impact on the performance of your website. A good SEO company should be able to come up with the most popular keywords for your site. Some keywords should go to the homepage and others to the web pages for maximum optimizations of your site. You should inquire the method your SEO company is using to arrive at the most popular keyword. Some tools can be used to find the most relevant keyword for your site.</p>
<p><a href="https://www.forbes.com/sites/forbesagencycouncil/2018/12/14/how-seo-has-evolved-and-whats-next/" target="_blank" rel="noopener">Good SEO is like a puzzle</a>. You will need a company that can help you piece together various strategies to come up with one elaborate working strategy. With a well-optimized website, your rank on Google will improve significantly. A good SEO company should help you understand how their optimization method works since it is not a complex matter to know.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/five-questions-to-ask-an-seo-company-before-hiring/">Five Questions To Ask an SEO Company Before Hiring</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/five-questions-to-ask-an-seo-company-before-hiring/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>5 Top SEO Factors to Monitor in 2019</title>
		<link>https://www.bloggertipandtrick.net/5-top-seo-factors-to-monitor-in-2019/</link>
					<comments>https://www.bloggertipandtrick.net/5-top-seo-factors-to-monitor-in-2019/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Wed, 09 Jan 2019 05:39:03 +0000</pubDate>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[seo]]></category>
		<guid isPermaLink="false">https://www.bloggertipandtrick.net/?p=6856</guid>

					<description><![CDATA[<p>While it is true that there are hundreds of ranking signals used by Google, some are more important as others. In fact, there are a handful that are must-haves if you are looking to optimize your SEO content in the New Year. Mobile Friendliness and Optimization. Given the fact that Google uses mobile-first indexing, the [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/5-top-seo-factors-to-monitor-in-2019/">5 Top SEO Factors to Monitor in 2019</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>While it is true that there are hundreds of ranking signals used by Google, some are more important as others. In fact, there are a handful that are must-haves if you are looking to optimize your SEO content in the New Year.</p>
<p><strong>Mobile Friendliness and Optimization.</strong></p>
<p>Given the fact that Google uses mobile-first indexing, the number one item on the SEO monitoring list should definitely be making certain that your business mobile sites are optimized. Mobile-first indexing means that Google draws its results from mobile-optimized sites first, rather than sites geared to desktop computers. Mobile-friendless matters, especially since people use mobile devices more than desktops to access the web. If your site isn’t mobilized, you are at serious risk for falling behind in the rankings and losing out to your competitors.</p>
<p>Even if you are a <a href="https://databox.com/a-beginners-guide-to-mobile-website-optimization" target="_blank">beginner looking to learn about mobile friendliness</a> and optimization, there are a few things to get you started.  First, you should be considering whether or not you have a responsive site that automatically resizes to fit the device in use. You should also look at whether or not the fonts you are using induce easy readability on a small screen. Cute and clever is nice, but if the font fails to deliver, you might be better off with something more traditional. It should be easy to tap menus and move through your site with ease, so test your accessibility and navigability, and always ensure that your essential content isn’t hidden or blocked by advertisements.</p>
<p><strong>Content</strong>.</p>
<p>The second most important item on the SEO monitoring list is content. Because content is the very reason <a href="http://socialrocketer.com/" target="_blank">Instagram followers</a> or Facebook friends visit your business site, you need to be sure you’re posting relevant, well-written, and keyword optimized content that focuses not just on separate keywords but the matching of the query. Make your content as comprehensive and diverse as you can while being as keyword conscious as you are able.</p>
<p>Google appreciates uniqueness, so be certain that content you are posting does not have duplication issues. Your ratings will improve if you are careful to avoid internal and external duplication. Using Copyscape is one way to check that out before your ratings get dinged for it. In some industries, it’s not always easy to publish unique content every time you post. Product descriptions, for example, have a tendency to be constricted, so making those explanations or details as diverse as possible may take some time and effort. One way to resolve this issue is to utilize user-generated content as part of your postings to ensure fresh, original content when possible.</p>
<p><strong>Search intent and relevance.</strong></p>
<p>Google works diligently to provide users with the most relevant search results for every query. Understanding user intent helps Google figure out the meaning behind a certain search query in order to provide the best results, including information such as the users’ search patterns, history, location, and time. For your brand’s purpose, it’s important to understand that the more relevant your page is to a certain query, the higher position, or ranking, it will get in the search engine results page.</p>
<p>The best way to understand what intent lies beyond your keywords, you might want to <a href="https://www.180fusion.com/" target="_blank">consult a digital marketing expert</a> or have your marketing team experiment with various searches. After typing them in the search box, look at the first results page. If you see that some of your pages don’t match the designed search intent, it may be possible that these are not the right pages to be optimized for the keywords chosen. Find a corresponding page, add more relevant content to them, or create new ones.</p>
<p><strong>Click-through Rate</strong>.</p>
<p>A click-through rate is the ratio of users who click on a specific link compared to the number of total users who view a page, email, or advertisement. The Click-through Rate helps to measure the success of an online advertising campaign for your brand’s website, and can also be used to determine the effectiveness of an email campaign. Your site’s click-through rate is a relevant signal for Google. Click-through rates have a high correlation with rankings, so it’s important to understand what your consumers tend to lick on in the search engine results page to reach your site. Using an analytic reporting system like Google Search Consoles can help you devote attention to pages that rank high but have a low Click-through rate.</p>
<p><strong>Authority within your website</strong>.</p>
<p>Both page and link authority within your website matters. Page Authority is a score developed by Moz that predicts how well a specific page will rank on the search engine results page.  PageRank is one of the strongest authority signals for Google. Every single page of your website should not be more than three clicks away from your homepage. If a page is not performing well, you can always add links, remembering that no matter how many links you have, they need to be of good quality. Be sure to carry out regular backlink audits to maintain the quality.</p>
<p>What are some other SEO factors you plan to monitor in 2019? Feel free to comment below.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/5-top-seo-factors-to-monitor-in-2019/">5 Top SEO Factors to Monitor in 2019</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/5-top-seo-factors-to-monitor-in-2019/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>The Vital Role of Rank Tracking in SEO</title>
		<link>https://www.bloggertipandtrick.net/the-vital-role-of-rank-tracking-in-seo/</link>
					<comments>https://www.bloggertipandtrick.net/the-vital-role-of-rank-tracking-in-seo/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Thu, 16 Aug 2018 09:13:34 +0000</pubDate>
				<category><![CDATA[seo]]></category>
		<guid isPermaLink="false">https://www.bloggertipandtrick.net/?p=6833</guid>

					<description><![CDATA[<p>Search engine optimization is a must-have for every website owner. It helps you to have an incredible impact on a business’ bottom-line. Various techniques are utilized to achieve the results. One of them is rank tracking. What does it mean and why is it important? Well, here are answers: Rank tracking is designed to reveal [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/the-vital-role-of-rank-tracking-in-seo/">The Vital Role of Rank Tracking in SEO</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Search engine optimization is a must-have for every website owner. It helps you to have an incredible impact on a business’ bottom-line. Various techniques are utilized to achieve the results. One of them is rank tracking. What does it mean and why is it important? Well, here are answers:</p>
<p>Rank tracking is designed to reveal details of whether your numerous SEO efforts are worthwhile. Specifically, you will know what works best and what can be done to make progress. The experienced professionals such as <a href="https://serpbook.com" target="_blank" rel="noopener">serpbook.com</a> use up-to-date tools and skills to obtain a summary of the findings.</p>
<p><strong>Rank Tracking Is Correlated To Good Decisions in SEO</strong></p>
<p>Achieving high ranks in SEO is a dynamic process that necessitates that you make varied changes regularly. It is inclusive of switching to HTTPs, creating mobile-responsive site, and coming up with new content or descriptions for a product. Determining the relationship between the changes and the rank allows you to decide on what to focus on and how you can solve the negative issues in time.</p>
<p>Remarkably, you will always be a step ahead if you embrace rank tracking because it is easy to spot the algorithm updates and SERP changes. It means that you can react instantly by adapting your approach to suit the newly availed data. The small changes that seem to only affect a niche or small business persons do not go undetected.</p>
<p><strong>You Can Easily Beat the Competitors with the Rank Tracking </strong></p>
<p>Studying the changes in traffic and sales in your site offers you a chance to beat your competitors. Your potential customers are attracted to specific things from a site in a given time. However, this information is not always at your disposal and as such, it can be daunting to make changes before getting major losses. Rank tracking comes in handy at this point, helping you to develop the tactics necessary to covert the traffic to sales. The competitor’s strategies can be evaluated and utilized in this process.</p>
<p><strong>Best Practices in Rank Tracking </strong></p>
<p>Once you have understood that rank tracking is an inevitable part of SEO, the next step is to determine the best practices in the area. Here are some of them:</p>
<ul>
<li>Always record the disclosed ranking details.</li>
</ul>
<p>The practice makes it possible to compare and contrast data on a regular basis before making critical decisions in business. For instance, being aware of the high-traffic keywords and finding out how they perform in the long-run will provide information on what your target clients are looking for in the market.</p>
<ul>
<li>Choose and use the tools carefully</li>
</ul>
<p>There is an array of rank tracking tools provided online to help you. However, some of them are designed in such a way that your activities are disclosed to your competitors. Finding the right tools and using discreetly is hence important. Get help from the experts whenever necessary.</p>
<ul>
<li>Don’t be obsessed with the rank tracking</li>
</ul>
<p>Whereas rank tracking is vital, don’t be too obsessed with it to the extent that you forget to do other equally important things such as creating the right content for your audience.</p>
<p>All in all, seeking for help from SEO experts and using the right tools in rank tracking will yield positive results for your site.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/the-vital-role-of-rank-tracking-in-seo/">The Vital Role of Rank Tracking in SEO</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/the-vital-role-of-rank-tracking-in-seo/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Become Blogger Blogroll Nofollow</title>
		<link>https://www.bloggertipandtrick.net/become-blogger-blogroll-nofollow/</link>
					<comments>https://www.bloggertipandtrick.net/become-blogger-blogroll-nofollow/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Mon, 02 Apr 2018 05:15:00 +0000</pubDate>
				<category><![CDATA[html]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[widget]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/12/how-to-become-blogger-blogroll-nofollow.html</guid>

					<description><![CDATA[<p>This is useful if you consider about your site's SEO. Nofollow links do not pass Page Rank. So, using the nofollow attribute on your link means that link won't pass PageRank to another page. If you like to add "nofollow" attribute to the blogroll widget of your blogger blog, simply follow the steps given below: [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/become-blogger-blogroll-nofollow/">How To Become Blogger Blogroll Nofollow</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>This is useful if you consider about your site's SEO. Nofollow links do not pass Page Rank. So, using the nofollow attribute on your link means that link won't pass PageRank to another page. If you like to add "nofollow" attribute to the blogroll widget of your blogger blog, simply follow the steps given below:</p>
<p>1.Go to the "Edit HTML" page of your blog.</p>
<p>2.Scroll down to till you see your <span style="color: #ff0000;">Blogroll widget code</span> (Note : You may also can find it by searching <span style="font-weight: bold; color: #009900;">&lt;b:widget id='BlogList</span> ) :</p>
<p>Your Blogroll widget code will look like this:</p>
<pre style="border: 1px solid black; overflow: auto; height: 300px;"><span style="font-weight: bold; color: #009900;">&lt;b:widget id='BlogList</span>1' locked='false' title='Blogroll' type='BlogList' version='1' visible='true'&gt;
&lt;b:includable id='main'&gt;
&lt;!-- only display title if it's non-empty --&gt;
&lt;b:if cond='data:title != &amp;quot;&amp;quot;'&gt;
  &lt;div id='blog-list-title'&gt;
    &lt;h2 class='title'&gt;&lt;data:title/&gt;&lt;/h2&gt;
  &lt;/div&gt;
&lt;/b:if&gt;

&lt;div class='widget-content'&gt;
  &lt;div class='blog-list-container' expr:id='data:widget.instanceId + &amp;quot;_container&amp;quot;'&gt;
    &lt;ul expr:id='data:widget.instanceId + &amp;quot;_blogs&amp;quot;'&gt;
      &lt;b:loop values='data:items' var='item'&gt;
        &lt;li expr:style='data:item.displayStyle'&gt;
          &lt;div class='blog-icon'&gt;
            &lt;b:if cond='data:showIcon == &amp;quot;true&amp;quot;'&gt;
              &lt;input expr:value='data:item.blogIconUrl' type='hidden'/&gt;
            &lt;/b:if&gt;
          &lt;/div&gt;
          &lt;div class='blog-content'&gt;
            &lt;div class='blog-title'&gt;
              &lt;a expr:href='data:item.blogUrl' <span style="font-weight: bold; color: #3333ff; font-size: 130%;">target='_blank'</span>&gt;
                &lt;data:item.blogTitle/&gt;&lt;/a&gt;
            &lt;/div&gt;
            &lt;div class='item-content'&gt;
              &lt;b:if cond='data:showItemThumbnail == &amp;quot;true&amp;quot;'&gt;
                &lt;b:if cond='data:item.itemThumbnail'&gt;
                  &lt;div class='item-thumbnail'&gt;
                    &lt;a expr:href='data:item.blogUrl' <span style="font-weight: bold; color: #3333ff; font-size: 130%;">target='_blank'</span>&gt;
                      &lt;img alt='' border='0' expr:height='data:item.itemThumbnail.height' expr:src='data:item.itemThumbnail.url' expr:width='data:item.itemThumbnail.width'/&gt;
                    &lt;/a&gt;
                  &lt;/div&gt;
                &lt;/b:if&gt;
              &lt;/b:if&gt;
              &lt;b:if cond='data:showItemTitle == &amp;quot;true&amp;quot;'&gt;
                &lt;span class='item-title'&gt;
                  &lt;b:if cond='data:item.itemUrl != &amp;quot;&amp;quot;'&gt;
                    &lt;a expr:href='data:item.itemUrl' <span style="font-weight: bold; color: #3333ff; font-size: 130%;">target='_blank'</span>&gt;
                      &lt;data:item.itemTitle/&gt;&lt;/a&gt;
                  &lt;b:else/&gt;
                    &lt;data:item.itemTitle/&gt;
                  &lt;/b:if&gt;
                &lt;/span&gt;
              &lt;/b:if&gt;
              &lt;b:if cond='data:showItemSnippet == &amp;quot;true&amp;quot;'&gt;
                &lt;b:if cond='data:showItemTitle == &amp;quot;true&amp;quot;'&gt;
                  -
                &lt;/b:if&gt;
                &lt;span class='item-snippet'&gt;
                  &lt;data:item.itemSnippet/&gt;
                &lt;/span&gt;
              &lt;/b:if&gt;
              &lt;b:if cond='data:showTimePeriodSinceLastUpdate == &amp;quot;true&amp;quot;'&gt;
                &lt;div class='item-time'&gt;
                  &lt;data:item.timePeriodSinceLastUpdate/&gt;
                &lt;/div&gt;
              &lt;/b:if&gt;
            &lt;/div&gt;
          &lt;/div&gt;
          &lt;div style='clear: both;'/&gt;
        &lt;/li&gt;
      &lt;/b:loop&gt;
    &lt;/ul&gt;

    &lt;b:if cond='data:numItemsToShow != 0'&gt;
      &lt;b:if cond='data:totalItems &amp;gt; data:numItemsToShow'&gt;
        &lt;div class='show-option'&gt;
          &lt;span expr:id='data:widget.instanceId + &amp;quot;_show-n&amp;quot;' style='display: none;'&gt;
            &lt;a href='javascript:void(0)' onclick='return false;'&gt;&lt;data:showNText/&gt;&lt;/a&gt;
          &lt;/span&gt;
          &lt;span expr:id='data:widget.instanceId + &amp;quot;_show-all&amp;quot;' style='margin-left: 5px;'&gt;
            &lt;a href='javascript:void(0)' onclick='return false;'&gt;&lt;data:showAllText/&gt;&lt;/a&gt;
          &lt;/span&gt;
        &lt;/div&gt;
      &lt;/b:if&gt;
    &lt;/b:if&gt;

    &lt;b:include name='quickedit'/&gt;
  &lt;/div&gt;
&lt;/div&gt;
&lt;/b:includable&gt;
&lt;/b:widget&gt;</pre>
<p>3.Now add <span style="font-weight: bold; color: #ff0000; font-size: 130%;">rel='nofollow'</span> to your blogroll widget code <span style="color: #cc33cc;">as the example below</span>:</p>
<pre style="border: 1px solid black; overflow: auto; height: 300px;">&lt;b:widget id='BlogList1' locked='false' title='Blogroll' type='BlogList' version='1' visible='true'&gt;
&lt;b:includable id='main'&gt;
&lt;!-- only display title if it's non-empty --&gt;
&lt;b:if cond='data:title != &amp;quot;&amp;quot;'&gt;
 &lt;div id='blog-list-title'&gt;
   &lt;h2 class='title'&gt;&lt;data:title/&gt;&lt;/h2&gt;
 &lt;/div&gt;
&lt;/b:if&gt;

&lt;div class='widget-content'&gt;
 &lt;div class='blog-list-container' expr:id='data:widget.instanceId + &amp;quot;_container&amp;quot;'&gt;
   &lt;ul expr:id='data:widget.instanceId + &amp;quot;_blogs&amp;quot;'&gt;
     &lt;b:loop values='data:items' var='item'&gt;
       &lt;li expr:style='data:item.displayStyle'&gt;
         &lt;div class='blog-icon'&gt;
           &lt;b:if cond='data:showIcon == &amp;quot;true&amp;quot;'&gt;
             &lt;input expr:value='data:item.blogIconUrl' type='hidden'/&gt;
           &lt;/b:if&gt;
         &lt;/div&gt;
         &lt;div class='blog-content'&gt;
           &lt;div class='blog-title'&gt;
             &lt;a expr:href='data:item.blogUrl' <span style="font-weight: bold; color: #ff0000; font-size: 130%;">rel='nofollow'</span> <span style="font-weight: bold; color: #3333ff; font-size: 130%;">target='_blank'</span>&gt;
               &lt;data:item.blogTitle/&gt;&lt;/a&gt;
           &lt;/div&gt;
           &lt;div class='item-content'&gt;
             &lt;b:if cond='data:showItemThumbnail == &amp;quot;true&amp;quot;'&gt;
               &lt;b:if cond='data:item.itemThumbnail'&gt;
                 &lt;div class='item-thumbnail'&gt;
                   &lt;a expr:href='data:item.blogUrl' <span style="font-weight: bold; color: #ff0000; font-size: 130%;">rel='nofollow'</span> <span style="font-weight: bold; color: #3333ff; font-size: 130%;">target='_blank'</span>&gt;
                     &lt;img alt='' border='0' expr:height='data:item.itemThumbnail.height' expr:src='data:item.itemThumbnail.url' expr:width='data:item.itemThumbnail.width'/&gt;
                   &lt;/a&gt;
                 &lt;/div&gt;
               &lt;/b:if&gt;
             &lt;/b:if&gt;
             &lt;b:if cond='data:showItemTitle == &amp;quot;true&amp;quot;'&gt;
               &lt;span class='item-title'&gt;
                 &lt;b:if cond='data:item.itemUrl != &amp;quot;&amp;quot;'&gt;
                   &lt;a expr:href='data:item.itemUrl' <span style="color: #ff0000; font-weight: bold; font-size: 130%;">rel='nofollow'</span> <span style="font-weight: bold; color: #3333ff; font-size: 130%;">target='_blank'</span>&gt;
                     &lt;data:item.itemTitle/&gt;&lt;/a&gt;
                 &lt;b:else/&gt;
                   &lt;data:item.itemTitle/&gt;
                 &lt;/b:if&gt;
               &lt;/span&gt;
             &lt;/b:if&gt;
             &lt;b:if cond='data:showItemSnippet == &amp;quot;true&amp;quot;'&gt;
               &lt;b:if cond='data:showItemTitle == &amp;quot;true&amp;quot;'&gt;
                 -
               &lt;/b:if&gt;
               &lt;span class='item-snippet'&gt;
                 &lt;data:item.itemSnippet/&gt;
               &lt;/span&gt;
             &lt;/b:if&gt;
             &lt;b:if cond='data:showTimePeriodSinceLastUpdate == &amp;quot;true&amp;quot;'&gt;
               &lt;div class='item-time'&gt;
                 &lt;data:item.timePeriodSinceLastUpdate/&gt;
               &lt;/div&gt;
             &lt;/b:if&gt;
           &lt;/div&gt;
         &lt;/div&gt;
         &lt;div style='clear: both;'/&gt;
       &lt;/li&gt;
     &lt;/b:loop&gt;
   &lt;/ul&gt;

   &lt;b:if cond='data:numItemsToShow != 0'&gt;
     &lt;b:if cond='data:totalItems &amp;gt; data:numItemsToShow'&gt;
       &lt;div class='show-option'&gt;
         &lt;span expr:id='data:widget.instanceId + &amp;quot;_show-n&amp;quot;' style='display: none;'&gt;
           &lt;a href='javascript:void(0)' onclick='return false;'&gt;&lt;data:showNText/&gt;&lt;/a&gt;
         &lt;/span&gt;
         &lt;span expr:id='data:widget.instanceId + &amp;quot;_show-all&amp;quot;' style='margin-left: 5px;'&gt;
           &lt;a href='javascript:void(0)' onclick='return false;'&gt;&lt;data:showAllText/&gt;&lt;/a&gt;
         &lt;/span&gt;
       &lt;/div&gt;
     &lt;/b:if&gt;
   &lt;/b:if&gt;

   &lt;b:include name='quickedit'/&gt;
 &lt;/div&gt;
&lt;/div&gt;
&lt;/b:includable&gt;
&lt;/b:widget&gt;</pre>
<p>4.Now save your template and you are done.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/become-blogger-blogroll-nofollow/">How To Become Blogger Blogroll Nofollow</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/become-blogger-blogroll-nofollow/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Activate DoFollow Commentator Profiles in Blogger</title>
		<link>https://www.bloggertipandtrick.net/dofollow-commentator-profiles-in-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/dofollow-commentator-profiles-in-blogger/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Mon, 29 May 2017 04:01:00 +0000</pubDate>
				<category><![CDATA[comments]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[seo]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/04/how-to-comment-box-is-made-do-follow-for-google-spiders.html</guid>

					<description><![CDATA[<p>When someone leave a comment on your blogger blog, his/her profile name will be displayed as a nofollow link to their profile. This link can be a Blogger profile URL, a GooglePlus profile URL or a website URL of the comment author. Commentator profile URLs in blogger are made NOFOLLOW by default. This is done [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/dofollow-commentator-profiles-in-blogger/">Activate DoFollow Commentator Profiles in Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>When someone leave a comment on your blogger blog, his/her profile name will be displayed as a nofollow link to their profile. This link can be a Blogger profile URL, a GooglePlus profile URL or a website URL of the comment author. Commentator profile URLs in blogger are made NOFOLLOW by default. This is done as a measure to reduce spam. But do you want your visitors to allow leave comments with their dofollow profile links? Then follow the steps given below.</p>
<p>Go to "Edit HTML" of your blog.</p>
<p>Find this line:</p>
<pre style="border:1px solid black;overflow:auto;">&lt;a expr:href='data:comment.authorUrl' rel='nofollow'&gt;&lt;data:comment.author/&gt;&lt;/a&gt;</pre>
<p>Replace it with this:</p>
<pre style="border:1px solid black;overflow:auto;">&lt;a expr:href='data:comment.authorUrl'&gt;&lt;data:comment.author/&gt;&lt;/a&gt;</pre>
<p>Now save your template.</p>
<p>Note: This change will be applied to both old and future comments.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/dofollow-commentator-profiles-in-blogger/">Activate DoFollow Commentator Profiles in Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/dofollow-commentator-profiles-in-blogger/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
	</channel>
</rss>
