<?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>SEO &#8211; Angry SEOer</title>
	<atom:link href="https://www.angryseoer.com/category/seo/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.angryseoer.com</link>
	<description>Angry Good SEO Advice</description>
	<lastBuildDate>Mon, 21 Aug 2023 19:22:06 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>

<image>
	<url>https://www.angryseoer.com/wp-content/uploads/2023/03/angry-seoer-favicon-150x150.png</url>
	<title>SEO &#8211; Angry SEOer</title>
	<link>https://www.angryseoer.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Redirect HTTP to HTTPS</title>
		<link>https://www.angryseoer.com/how-to-redirect-http-to-https/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-redirect-http-to-https</link>
					<comments>https://www.angryseoer.com/how-to-redirect-http-to-https/#respond</comments>
		
		<dc:creator><![CDATA[Angry SEOer]]></dc:creator>
		<pubDate>Mon, 21 Aug 2023 19:22:05 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tutorials]]></category>
		<guid isPermaLink="false">https://www.angryseoer.com/?p=1352</guid>

					<description><![CDATA[I&#8217;ve talked in the past the importance of SSL and how to get an SSL certificate for free. This is important for creating a secure connection between your website and those who use it, particularly when someone submits information or with E-commerce transactions. Once you HAVE that SSL certificate and your website has the ability [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>I&#8217;ve talked in the past the importance of SSL and <a href="https://www.angryseoer.com/ssl-certificate-how-to-get-one/" data-type="link" data-id="https://www.angryseoer.com/ssl-certificate-how-to-get-one/" target="_blank" rel="noreferrer noopener"><strong>how to get an SSL certificate for free</strong></a>. This is important for creating a secure connection between your website and those who use it, particularly when someone submits information or with E-commerce transactions. Once you HAVE that SSL certificate and your website has the ability to load the HTTPS iteration of the site, you want to make sure that all traffic goes to that HTTPS instance. Here is how to redirect HTTP to HTTPS once you&#8217;ve gotten your SSL certificate.</p>



<h2 class="wp-block-heading">How to Redirect HTTP to HTTPS</h2>



<p>You can&#8217;t control whether someone goes to the HTTP or HTTPS version of your site in some situations. Old links to your site may still point to the HTTP version. You also will have some people specifically typing in the HTTP version.</p>



<figure class="wp-block-image size-large"><img fetchpriority="high" decoding="async" width="1024" height="576" src="https://www.angryseoer.com/wp-content/uploads/2023/08/How-to-Redirect-HTTP-to-HTTPS-1024x576.png" alt="How to Redirect HTTP to HTTPS" class="wp-image-1353" srcset="https://www.angryseoer.com/wp-content/uploads/2023/08/How-to-Redirect-HTTP-to-HTTPS-1024x576.png 1024w, https://www.angryseoer.com/wp-content/uploads/2023/08/How-to-Redirect-HTTP-to-HTTPS-300x169.png 300w, https://www.angryseoer.com/wp-content/uploads/2023/08/How-to-Redirect-HTTP-to-HTTPS-768x432.png 768w, https://www.angryseoer.com/wp-content/uploads/2023/08/How-to-Redirect-HTTP-to-HTTPS.png 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>The easiest way to force someone to go to the HTTPS version is with a redirect, and the easiest way of how to redirect HTTP to HTTPS is using your site&#8217;s .htaccess file.</p>



<p>This is a file which instructs web browsers on how to open and engage with your website. Adding a simple line of code here will tell the web browser to automatically reload to the HTTPS instance of your site when someone goes to the HTTP.</p>



<p>Whether you use an FTP client locally or go through your host, locate the .htaccess file for your website.</p>



<p>It will be located in the root directory of your website. If you don&#8217;t see it, click the &#8220;Settings&#8221; icon in the top right and make sure the &#8220;Show Hidden Files&#8221; is ticked.</p>



<figure class="wp-block-image size-full"><img decoding="async" width="754" height="501" src="https://www.angryseoer.com/wp-content/uploads/2023/08/show-hidden-files-cpanel.png" alt="" class="wp-image-1354" srcset="https://www.angryseoer.com/wp-content/uploads/2023/08/show-hidden-files-cpanel.png 754w, https://www.angryseoer.com/wp-content/uploads/2023/08/show-hidden-files-cpanel-300x199.png 300w" sizes="(max-width: 754px) 100vw, 754px" /></figure>



<p>You should now see the .htaccess file. Click on this file and select &#8220;Edit&#8221;. </p>



<p>Go to the bottom of this file and paste in the following lines of code:</p>



<p>RewriteEngine On<br>RewriteCond %{SERVER_PORT} 80<br>RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]</p>



<p>Replace &#8220;Example&#8221; with your website&#8217;s address (change the extension if your site is not a .com), and click &#8220;Save Changes&#8221; in the top right.</p>



<p>That&#8217;s all you have to do in how to redirect HTTP to HTTPS. You can test it now by trying to open the HTTP instance of your website. It should redirect you automatically to the secure version and you should see that coveted lock in the browser destination field.</p>



<p>This is important not just for security but for tracking purposes, as well. Now you don&#8217;t have to worry about your reports leaving out traffic to the HTTP version or checking two instances; everything should be funneled to the secure version of the URL.</p>



<p>Again, if you don&#8217;t have an SSL certificate for your website, grab one for free now as I detail in <a href="https://www.angryseoer.com/ssl-certificate-how-to-get-one/" data-type="link" data-id="https://www.angryseoer.com/ssl-certificate-how-to-get-one/" target="_blank" rel="noreferrer noopener"><strong>how to get an SSL certificate for free</strong></a>.</p>



<p>Congrats, all traffic is now being sent to the HTTPS version of your site!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.angryseoer.com/how-to-redirect-http-to-https/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Will AI Replace SEO? &#8211; What Common Sense Tells Us</title>
		<link>https://www.angryseoer.com/will-ai-replace-seo/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=will-ai-replace-seo</link>
					<comments>https://www.angryseoer.com/will-ai-replace-seo/#respond</comments>
		
		<dc:creator><![CDATA[Angry SEOer]]></dc:creator>
		<pubDate>Thu, 29 Jun 2023 15:54:12 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<guid isPermaLink="false">https://www.angryseoer.com/?p=1339</guid>

					<description><![CDATA[Practical AI like ChatGPT has been evolving rapidly particularly in the last few months, bringing AI to the forefront of discussions of what our immediate future will look like in a number of industries. Bringing this home and getting right to the point, Google has begun testing an AI supplemented version of their search engine [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Practical AI like ChatGPT has been evolving rapidly particularly in the last few months, bringing AI to the forefront of discussions of what our immediate future will look like in a number of industries. </p>



<p>Bringing this home and getting right to the point, Google has begun testing an AI supplemented version of their search engine results called SGE (Search Generative Experience). While at the time of my writing this, Google&#8217;s only featuring this for a select few who use Chrome or the Google app, but we can expect this to expand to their conventional SERPs for everyone in time.</p>



<p>This begs the question, how will this effect search engine optimization. Will AI replace SEO?</p>



<h2 class="wp-block-heading">Will AI Replace SEO</h2>



<p>AI will never fully &#8220;replace&#8221; SEO, but it will impact it with increasing significance the more sophisticated it becomes.</p>



<p>Its impact on SEO should be what the conversation should be about.</p>



<p>Let&#8217;s first take a look at what it&#8217;s going to look like, at least early on, using an <a href="https://blog.google/products/search/generative-ai-search/" data-type="URL" data-id="https://blog.google/products/search/generative-ai-search/" target="_blank" rel="noreferrer noopener">example from Google itself</a> about its generative AI search.</p>



<p>Here&#8217;s their first example, with someone&#8217;s informational query being an uber specific and focused question regarding local national parks.</p>



<figure class="wp-block-image size-full"><img decoding="async" width="726" height="538" src="https://www.angryseoer.com/wp-content/uploads/2023/06/example-of-generative-ai.png" alt="example of generative ai" class="wp-image-1341" srcset="https://www.angryseoer.com/wp-content/uploads/2023/06/example-of-generative-ai.png 726w, https://www.angryseoer.com/wp-content/uploads/2023/06/example-of-generative-ai-300x222.png 300w" sizes="(max-width: 726px) 100vw, 726px" /></figure>



<p>Appearing above the traditional organic SERPs listings we see a sizable block of generative AI search results.</p>



<p>Quite cleverly, the AI has plucked the most relevant information from other websites, essentially poaching clicks, website visits and, perhaps most interestingly, ad revenue for Google and the site owner, from the websites themselves.</p>



<p>It&#8217;s also supplanted the informational type blogs which deal in hiking/national parks in this case below. It&#8217;s not just that the AI block is first; it&#8217;s bigger and colorful, easily drawing the eye to it over anything else on the page.</p>



<p>The AI block even offers a space for follow-up questions and suggests a couple relevant questions alongside it.</p>



<p>Google would likely be quick to point out that the block does include a couple links to relevant websites as part of the block.</p>



<h3 class="wp-block-heading">How Will AI Affect SEO</h3>



<p>Google&#8217;s AI is mostly designed for these very specific search queries which I&#8217;ll admit Google itself (or any search engine for that matter) doesn&#8217;t do very well at serving results for to begin with.</p>



<p>The one wildcard throughout all of this is Google&#8217;s reliance on ad revenue. According to this <a href="https://www.oberlo.com/statistics/how-does-google-make-money" target="_blank" data-type="URL" data-id="https://www.oberlo.com/statistics/how-does-google-make-money" rel="noreferrer noopener">insightful article from Oberlo</a>, more than half of Google&#8217;s 2022 income came from ads appearing on their platforms. </p>



<p>By increasingly discouraging people from clicking through to websites, it&#8217;s effectively stealing from its own pocket.</p>



<p><strong>Unless a serious revenue shift develops, Google is still heavily reliant on driving traffic to websites. </strong></p>



<p>At the same time, they want to deliver the best experience over their competitors in the other search engines. This is why the inclusion of websites as part of the AI block will likely continue to be a focus.</p>



<p>Here&#8217;s a second example of Google&#8217;s AI generated search results for someone looking for a particular bike based on certain conditions.</p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="726" height="539" src="https://www.angryseoer.com/wp-content/uploads/2023/06/generative-ai-example.png" alt="generative AI example" class="wp-image-1342" srcset="https://www.angryseoer.com/wp-content/uploads/2023/06/generative-ai-example.png 726w, https://www.angryseoer.com/wp-content/uploads/2023/06/generative-ai-example-300x223.png 300w" sizes="auto, (max-width: 726px) 100vw, 726px" /></figure>



<p>This format of AI results integrates Google&#8217;s existing sponsored ads or at least image/price links which you&#8217;d find if you just searched for &#8220;commuter bikes&#8221;.</p>



<p>The difference is you get more information than you once did for each ad listing.</p>



<p>Also note that once again, we get a few websites listed on the right as kind of &#8220;sources&#8221; or resources for further information on the subject.</p>



<p>It&#8217;s hard to say whether someone would click on one of those websites or go straight for one of the listings below; it would depending on the potential consumer.</p>



<h3 class="wp-block-heading">In Conclusion &#8211; Will AI Replace SEO</h3>



<p>While there&#8217;s a lot that is still unknown and will need to play out before we truly understand its effects, one thing is certain, AI will not outright replace SEO.</p>



<p>It will undoubtedly affect SEO, as I believe we&#8217;ll see a continuation of how SEO was already evolving.</p>



<p>More than ever before, content is king (it&#8217;s my <a href="https://www.angryseoer.com/best-seo-tip/" target="_blank" data-type="URL" data-id="https://www.angryseoer.com/best-seo-tip/" rel="noreferrer noopener"><strong>best SEO tip</strong></a>, afterall).</p>



<p>You or whomever writes the content for your website now more than ever should be making sure that your content (and website itself) offers something unique. Your content should continue to work in relevant long tail phrases to your main keyword as voice and personalized/more specific search continue to dominate the average query in Google like the examples Google gave.</p>



<p>This will keep the pages of your website relevant in Google&#8217;s eyes to where you&#8217;ll find your content becoming a part of their AI generated results.</p>



<p>Yes, it&#8217;s certain that some &#8220;genres&#8221; of websites will take a hit over others, especially early on.</p>



<p>But it&#8217;s important to point out one last time that it&#8217;s still in Google&#8217;s best interest to serve up the best content to its users, and while its AI will be working to better identify what is objectively the best content, make sure that its your website and content which qualifies.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.angryseoer.com/will-ai-replace-seo/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is Above the Fold in Website Terms</title>
		<link>https://www.angryseoer.com/above-the-fold-website/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=above-the-fold-website</link>
					<comments>https://www.angryseoer.com/above-the-fold-website/#respond</comments>
		
		<dc:creator><![CDATA[Angry SEOer]]></dc:creator>
		<pubDate>Wed, 07 Sep 2022 15:52:00 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<guid isPermaLink="false">https://www.angryseoer.com/?p=1063</guid>

					<description><![CDATA[If you&#8217;re relatively new to website management, you may have heard the term &#8220;above the fold&#8221;. Website layouts have a lot of terms, but arguably none as important as above the fold, so let&#8217;s talk about what it is, why it matters, and what you should do. What Is Above the Fold In website terms, [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>If you&#8217;re relatively new to website management, you may have heard the term &#8220;above the fold&#8221;. Website layouts have a lot of terms, but arguably none as important as above the fold, so let&#8217;s talk about what it is, why it matters, and what you should do.</p>



<h2 class="wp-block-heading">What Is Above the Fold</h2>



<p>In website terms, above the fold refers to the section of a web page which is visible when someone first opens it. In other words, it&#8217;s the visible bit of a web page without any scrolling down.</p>



<figure class="wp-block-image size-large is-resized"><img loading="lazy" decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/10/above-the-fold-website-1024x576.png" alt="above the fold website" class="wp-image-1093" width="497" height="279"/></figure>



<p>This is the most important part of any web page, because unless someone sees what they&#8217;re looking for as soon as that page loads (which hopefully loads quickly &#8211; check out my easy guide on <a href="https://www.angryseoer.com/how-to-increase-website-speed-wordpress/" target="_blank" rel="noreferrer noopener"><strong>how to increase website speed in WordPress</strong></a>), they&#8217;re going to leave that page.</p>



<p>Not only have you lost a potential customer or reader in that case, but Google and other search engines will note their quick exit and take that as a sign that you shouldn&#8217;t be ranking for the keywords which brought that person there in the first place. This can cost you rankings and traffic.</p>



<p>So even if you have the content that person is looking for, if it&#8217;s not apparent to them above the fold on that page, it&#8217;s doing you no good.</p>



<p>Fortunately the solution is simple enough.</p>



<h2 class="wp-block-heading">Above the Fold &#8211; Website Tutorial</h2>



<p>The number one rule in above the fold website design is to be sure that every page of your site has everything your visitor needs without having to scroll down.</p>



<p>By default, most of the most important content on your site is at the top, including your logo and your menu. </p>



<p>As an (albeit obvious) aside, your menu should feature the most important pages on your site you want to drive traffic to. Whatever your reasoning for having that website, it needs to be well represented here.</p>



<p>Your website should also be easily navigable by way of this menu. Including a search bar in this area or at the very least above the fold ensures that someone can access virtually every page of your site from every page of your site with little effort.</p>



<p>If you have an email signup field, you should also include it above the fold so again, it&#8217;s visible on every page without any scrolling necessary.</p>



<p>Now, with regards to content, you obviously can&#8217;t always feature it above the fold.</p>



<p>In other words, the &#8220;meat&#8221; that people want on your page when they click through from Google can&#8217;t always exist at the top of the page/above the fold.</p>



<p>This is why it&#8217;s essential that you create a table of contents for your post or page featuring anchor links at the top of your page. This is especially important for longer posts which cover a lot of different content.</p>



<p>This TOC should be clearly visible above the fold regardless of what device someone is viewing your page on.</p>



<p>These anchor links are live links which, when clicked, take you instantly to that corresponding part of the page.</p>



<h3 class="wp-block-heading">How to Make Same Page Links</h3>



<p>I did an entire tutorial showing how to easily make an <a href="https://www.angryseoer.com/anchor-link-wordpress/" target="_blank" rel="noreferrer noopener"><strong>anchor link in WordPress</strong></a>, so refer to that for a more detailed explanation.</p>



<p>Suffice to say, though, it&#8217;s a two step, very easy to do process. </p>



<p>You simply create an anchor tag for the section you want to link/jump to, then create the link from the word(s) you want to jump to that section, like in your table of contents.</p>



<p>The best way to use this navigable TOC on a page is to write a very short intro paragraph confirming what that page is about, promise the resolution the user is looking for, then offer the TOC before getting into the content.</p>



<p></p>



<p>There&#8217;s a good example of a TOC in action on my <a href="https://www.angryseoer.com/seo-for-youtube-a-complete-guide/" target="_blank" rel="noreferrer noopener"><strong>SEO for YouTube</strong></a> guide:</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/10/table-of-contents-in-post.png" alt="seo for youtube" class="wp-image-1092" width="417" height="393"/></figure>



<p>It looks clean, it divides the content in an effective way, and it&#8217;s convenient. It allows the visitor to quickly skip to the specific part of the page they&#8217;re looking for rather than having to wade through lots of content they don&#8217;t want.</p>



<p>Most people use Google with the intent of quickly finding what they&#8217;re looking for, and this helps them do that once they get to your site.</p>



<h3 class="wp-block-heading">Consider the Browser</h3>



<p>One last thing to mention is to keep in mind that your pages will look different in different browsers and on different devices.</p>



<p>This means that what is above the fold on your website will vary from user to user.</p>



<p>While you could check it using your various devices manually, you can get a much better idea using a <a href="https://www.google.com/search?q=free+cross+browser+tester" target="_blank" rel="noreferrer noopener">free cross browsing tester</a>.</p>



<p>Not only will this show you any above the fold website issues, it can show if certain elements of your website aren&#8217;t loading properly in a particular browser or on a particular device.</p>



<p></p>



<p><strong>In Conclusion</strong></p>



<p>Above the fold website design is something to keep in mind as you&#8217;re creating your website or even a specific page.</p>



<p>Designing your site or a page so that everything someone might be looking for is accessible without any scrolling will earn you more time on your site. </p>



<p>This will in turn improve your rankings as Google sees this user behavior as a sign that you&#8217;ve got good content worthy of ranking well (see 6 types of <a href="https://www.angryseoer.com/user-engagement-google-analytics/" target="_blank" rel="noreferrer noopener"><strong>user engagement in Google Analytics</strong></a> that can make or break your rankings).</p>



<p>Just put yourself in the shoes of someone coming to that web page every time you create a new one and think of what they  are looking for. Once you know that, just make sure it&#8217;s easy to access from the start.</p>



<p>You&#8217;ll be amazed at the effect this can have on your bounce rate, the amount of time people spend on your site, and your Google rankings!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.angryseoer.com/above-the-fold-website/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Make an Anchor Link in WordPress</title>
		<link>https://www.angryseoer.com/anchor-link-wordpress/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=anchor-link-wordpress</link>
					<comments>https://www.angryseoer.com/anchor-link-wordpress/#comments</comments>
		
		<dc:creator><![CDATA[Angry SEOer]]></dc:creator>
		<pubDate>Mon, 01 Aug 2022 15:51:16 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">https://www.angryseoer.com/?p=1059</guid>

					<description><![CDATA[There are a number of things I always make sure to do every time I create a new blog post. Most of them are covered in my SEO checklist for blog posts, but I always just want to make sure that my post is as accessible as possible. Anchor links in WordPress are an easy [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>There are a number of things I always make sure to do every time I create a new blog post. Most of them are covered in my <a href="https://www.angryseoer.com/seo-checklist-for-blog-posts/" target="_blank" rel="noreferrer noopener"><strong>SEO checklist for blog posts</strong></a>, but I always just want to make sure that my post is as accessible as possible. Anchor links in WordPress are an easy way to make your post more navigable.</p>



<p>It&#8217;s incredibly simple to do, so let&#8217;s talk about <a href="#what-are-anchor-links-in-wordpress"><strong>what are anchor links in WordPress</strong></a> and <a href="#how-to-make-an-anchor-link-in-wordpress"><strong>how to make them</strong></a>.</p>



<figure class="wp-block-image size-large"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/08/anchor-link-wordpress-1024x576.png" alt="anchor link wordpress" class="wp-image-1068"/></figure>



<h2 class="wp-block-heading" id="what-are-anchor-links-in-wordpress">Anchor Links in WordPress</h2>



<p>First, let&#8217;s actually identify what anchor links in WordPress are.</p>



<p><strong>This is an element on a page which allows you to link from one section to another within the same page.</strong></p>



<p>This is especially helpful when you&#8217;re talking about a variety of things within one post and for longer posts. In this case, you might want to make a table of contents above the fold/at the opening of that post to better organize your content within the page.</p>



<p>This is also helpful when someone just wants to jump to the specific section/content they&#8217;re looking for in your post.</p>



<p>Your visitors should never have to work to find what they&#8217;re looking for on any given page of yours, and anchor links can do a lot of the lifting for you.</p>



<h2 class="wp-block-heading" id="how-to-make-an-anchor-link-in-wordpress">How to Make an Anchor Link in WordPress</h2>



<p>It&#8217;s incredibly easy to make an anchor link in WordPress. You&#8217;ll actually notice that the two links in the second paragraph of this post itself are anchor links, one going to each heading section.</p>



<p>Making an anchor link is a two step process in WordPress.</p>



<h3 class="wp-block-heading">Step 1 &#8211; Make an HTML Anchor</h3>



<p>This sounds technical, but it&#8217;s not. </p>



<p>All you need to do is click on the block you want to jump to with your link (see <a href="https://www.angryseoer.com/classic-editor-vs-block-editor/" target="_blank" rel="noreferrer noopener"><strong>classic editor vs block editor</strong></a> for more information on WordPress blocks). </p>



<p>This is the section you want the link you&#8217;ll make in the next step to jump to.</p>



<p>In the case of this post, I wanted to link in my opening section to jump to the &#8220;How to Make an Anchor Link in WordPress&#8221; heading of this section.</p>



<p>So I simply click on the heading, then click on &#8220;Advanced&#8221; in the block section on the right.</p>



<p>I then fill out the &#8220;HTML anchor&#8221; field with whatever text I want. I just used the text I used for the heading itself with dashes between the words:</p>



<figure class="wp-block-image aligncenter size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/08/create-html-anchor.png" alt="create html anchor" class="wp-image-1066"/></figure>



<p>This block is now ready to be linked to, we just need to create the link in Step 2 next.</p>



<h3 class="wp-block-heading">Step 2 &#8211; Create the Anchor Link</h3>



<p>This part&#8217;s a bit more conventional.</p>



<p>To create the anchor link, we highlight the text we want to be clickable and send people to the desired section of our page we just established.</p>



<p>In this case, I highlighted the text &#8220;how to make them&#8221; in that second paragraph in the opening. I then clicked on the link icon.</p>



<p>Normally we&#8217;d put in a link to an external page or to another page on our website. Instead, we&#8217;re going to paste in the exact text we put in the HTML anchor field a second again, but with a hashtag symbol (#) in front of it like so:</p>



<figure class="wp-block-image aligncenter size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/08/create-anchor-link.png" alt="create anchor link" class="wp-image-1067"/></figure>



<p>You have the typical link options, though I recommend leaving them all unticked as they don&#8217;t typically apply for anchor links (unless for some reason you want them to open in a new tab).</p>



<p><strong>In Summary</strong></p>



<p>That&#8217;s all there is to it. Once you save the draft of or publish the page, you&#8217;ll find that the text is now a live link which goes to the section you created the HTML anchor for.</p>



<p>Note that you&#8217;re not limited to Headings to link to. You can add an HTML anchor to many different types of blocks including any kind of text as well as images.</p>



<p>Try to get in the habit of creating anchor links in WordPress to make your content more navigable and especially to help people find the specific content they&#8217;re looking for quickly.</p>



<p>Not only does it look more organized, but this will keep people on your website for longer and will earn you better rankings and more traffic.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.angryseoer.com/anchor-link-wordpress/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How to Rank Images in Google</title>
		<link>https://www.angryseoer.com/how-to-rank-images-in-google/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-rank-images-in-google</link>
					<comments>https://www.angryseoer.com/how-to-rank-images-in-google/#respond</comments>
		
		<dc:creator><![CDATA[Angry SEOer]]></dc:creator>
		<pubDate>Thu, 12 May 2022 18:30:02 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<guid isPermaLink="false">https://www.angryseoer.com/?p=802</guid>

					<description><![CDATA[Utilizing images alongside the other content on your page can benefit said page in a number of ways. This includes: The value of that last point cannot be overstated. Google Images averages more than 1 BILLION page views a day. This means that hundreds of millions of people are browsing through images on Google on [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Utilizing images alongside the other content on your page can benefit said page in a number of ways. This includes:</p>



<ul class="wp-block-list">
<li>Making your content more engaging for the visitor, thus <a href="https://www.angryseoer.com/user-engagement-google-analytics/" target="_blank" rel="noreferrer noopener"><strong>increasing time spent on your website</strong></a>.</li>



<li>Helps establish the context around the content on that page for Google, thus helping you rank for the keyword you&#8217;re targeting.</li>



<li>In some niches, effective use of images on a page can actually more conversions (sales, sign ups, etc.)</li>



<li>The images can rank in Google on their own, thus bringing more traffic to that page and your website.</li>
</ul>



<p>The value of that last point cannot be overstated. <a href="https://images.google.com/" target="_blank" rel="noreferrer noopener">Google Images</a> averages more than 1 BILLION page views a day. This means that hundreds of millions of people are browsing through images on Google on a daily basis, and a large portion of them will visit the websites hosting the images which are ranking.</p>



<p>Let&#8217;s talk about how to rank images in Google so that you can leverage the images you feature alongside your content into another valuable source of organic and targeted traffic.</p>



<h2 class="wp-block-heading">How to Rank Images in Google</h2>



<p>Let&#8217;s go down the must-have list for how to rank images in Google.</p>



<figure class="wp-block-image size-large"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/05/how-to-rank-images-in-google-1024x576.png" alt="how to rank images in google" class="wp-image-972"/></figure>



<h3 class="wp-block-heading">Relevance to Its Page</h3>



<p>An image doesn&#8217;t have a great chance of ranking well in Google if it&#8217;s not relevant to the rest of the content of its page.</p>



<p>Example: a random picture of your dog is cute, but what&#8217;s it have to do with your DIY home repair article?</p>



<p>If you&#8217;re talking about how to repair cracks in a wall on the page, upload an image displaying a crack in a wall.</p>



<p>It seems like an obvious thing, but the context of your images should be in lockstep with the context of the rest of the page.</p>



<h3 class="wp-block-heading">Keyword</h3>



<p>An extension of the last point, but more on the technical side, title your image after the keyword you&#8217;re targeting on that page.</p>



<p>Not sure what keywords to target? See <a href="https://www.angryseoer.com/how-to-know-what-keywords-to-use-for-seo/" target="_blank" rel="noreferrer noopener"><strong>how to know what keywords to use for SEO</strong></a>.</p>



<figure class="wp-block-image alignright size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2021/11/keyword-in-heading.png" alt="keyword" class="wp-image-573"/></figure>



<p>So if the page is titled &#8220;How to Repair Cracks in a Wall&#8221;, title your image &#8220;how-to-repair-cracks-in-a-wall&#8221; with the dash representing a space. This helps to create a cleaner URL for the image, as well.</p>



<p>Use that keyword as the alt-tag for the image, as well. The alt-tag is what displays in case the image can&#8217;t load in the browser for whatever reason. The idea is, if the image won&#8217;t load, the visitor can still see the context of what that image was. </p>



<p>This is why it should reflect the rest of the page, or in this case the page&#8217;s keyword.</p>



<p>Note that you only want to use your keyword for one image. If you have additional images, use similarly relevant keyword phrases for their title and alt tags.</p>



<p>For example, if you have an image of a wall where the cracks have been filled, title it &#8220;wall with filled in cracks&#8221; and use the same for the alt tag.</p>



<p>This further establishes and supports the context of the page so this image has a chance of ranking in Google images for the main keyword as well as its own title.</p>



<h3 class="wp-block-heading">Image Location</h3>



<p>The location of the image matters just like the location of anything on your website. </p>



<p>Search engines crawl website content just like a regular person starting at the top of the page. Therefore, your most important content needs to go at the top, and this includes the main image you want to rank for.</p>



<p>Feature that image as near the top of the page as you naturally can without forcing it to give that image priority in the page crawl.</p>



<h3 class="wp-block-heading">Image Quality</h3>



<p>Users obviously prefer high quality images over blurry or grainy ones. Unfortunately, high quality often translates into substantially larger file sizes which will take longer to load on your page, thus hurting your rankings when <a href="https://www.angryseoer.com/core-web-vitals-may-2021-update-how-to-win-it/" target="_blank" rel="noreferrer noopener"><strong>Google wants to prioritize faster loading pages</strong></a> in their search listings.</p>



<p>That&#8217;s why I put together an entire resource on <strong><a href="https://www.angryseoer.com/how-to-optimize-images-for-seo/" target="_blank" rel="noreferrer noopener sponsored nofollow">how to optimize images for SEO</a></strong> in order to create the best possible images at the smallest possible sizes.</p>



<p>The images below shows the same image rendered at two vastly different qualities. And while the one on the left is 40% smaller in image size, the difference in visible quality is negligible.</p>



<figure class="wp-block-image size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/02/photoshop-quality-comparison.jpg" alt="image quality comparison" class="wp-image-800"/></figure>



<p>Not in terms of visuals, but the rest of the content on the page should be high quality, as well, meaning it should be worthy of ranking well for its keyword in the traditional, non image based Google search results (see <a href="https://www.angryseoer.com/how-to-create-quality-content/" target="_blank" rel="noreferrer noopener"><strong>how to create high quality content</strong></a>).</p>



<p>Make sure the image loads equally well on desktop and mobile versions of your website, as well.</p>



<p>You can also set your images to lazy load, meaning the page will prioritize loading the more important content which Google recommends as a way of speeding up your site. Incidentally I put together an entire resource on <a href="https://www.angryseoer.com/how-to-increase-website-speed-wordpress/" target="_blank" rel="noreferrer noopener"><strong>how to increase website speed for WordPress</strong></a>.</p>



<h3 class="wp-block-heading">Use a Sitemap</h3>



<p>A sitemap is a an organized list of all of the URLs of your website which search bots use to more easily crawl your website. This extends to the images of your site, as well, as Google can more easily locate and identify your images with a sitemap.</p>



<figure class="wp-block-image alignright size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2021/09/sitemap.png" alt="sitemap" class="wp-image-362"/></figure>



<p>Having a sitemap for your website helps the pages and images of your website rank well alike.</p>



<p>I put together a 1 step tutorial on <a href="https://www.angryseoer.com/how-to-create-a-sitemap-for-your-website/" target="_blank" rel="noreferrer noopener"><strong>how to create a sitemap for your website</strong></a>, so refer to that to create one and share it with Google in seconds.</p>



<p>You can also create a special image specific sitemap, though unless you&#8217;ve got a huge website with thousands or millions of images like with an ecommerce site, a normal sitemap will suffice.</p>



<h3 class="wp-block-heading">Use Structured Data</h3>



<p>More of an advanced tip, adding special information called &#8220;structured data&#8221; alongside certain types of content on your website will create rich snippets to display in Google.</p>





<p>Rich snippets are enhanced types of content which appear in Google&#8217;s search results in place of or alongside the standard title, description, and URL of a page.</p>



<figure class="wp-block-image alignright size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2021/09/rich-snippet-example-recipe.png" alt="rich snippet example recipe" class="wp-image-429"/></figure>



<p>If you do a search for a recipe right now in Google, you&#8217;ll likely see a special section at the top of the results labeled &#8220;Recipes&#8221;, featuring an image, the website name, a rating, prep/cook time, and ingredients.</p>



<p>The websites these recipes are from created said recipes using structured data which makes them especially Google friendly and appear that way.</p>



<p>As Google&#8217;s search results continue to become more complex and offer more than the standard web listings, the importance of integrating rich snippets into your content will grow. </p>



<p>While some niches lend themselves to utilizing structured data more than others, there are dozens of practical uses of them which even extends to images on your site.</p>



<p>I recently talked about <a href="https://www.angryseoer.com/what-are-rich-snippets-everything-to-know/" target="_blank" rel="noreferrer noopener"><strong>what are rich snippets</strong></a> and everything you need to know to easily create them on your website simply using a plugin, so refer to that for more information.</p>



<p></p>



<p><strong>In Summary</strong></p>



<p>Keep these tips in mind for how to rank images in Google. Just remember:</p>



<ul class="wp-block-list">
<li>Make images relevant to rest of the content on the page.</li>



<li>Use your keyword in the image title/URL and alt tag, as well as in the content around the image.</li>



<li>Use high quality/resolution images (while keeping them optimized).</li>



<li>Use a sitemap on your website and in some cases structured data.</li>
</ul>
]]></content:encoded>
					
					<wfw:commentRss>https://www.angryseoer.com/how-to-rank-images-in-google/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Get Google Keyword Planner for Free</title>
		<link>https://www.angryseoer.com/how-to-get-google-keyword-planner-for-free/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-get-google-keyword-planner-for-free</link>
					<comments>https://www.angryseoer.com/how-to-get-google-keyword-planner-for-free/#respond</comments>
		
		<dc:creator><![CDATA[Angry SEOer]]></dc:creator>
		<pubDate>Wed, 23 Feb 2022 17:08:45 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<guid isPermaLink="false">https://www.angryseoer.com/?p=822</guid>

					<description><![CDATA[The Google Keyword Planner is a tool designed to reveal how many people on average search for a keyword each month. Keyword search volume is one of the major points in measuring how to know what keywords to use for SEO. I mentioned the Google Keyword Planner in my free keyword tool review guide as [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>The Google Keyword Planner is a tool designed to reveal how many people on average search for a keyword each month. Keyword search volume is one of the major points in measuring <a href="https://www.angryseoer.com/how-to-know-what-keywords-to-use-for-seo/" target="_blank" rel="noreferrer noopener"><strong>how to know what keywords to use for SEO</strong></a>.</p>



<p>I mentioned the Google Keyword Planner in my <a href="https://www.angryseoer.com/the-ultimate-free-keyword-tool-review/" target="_blank" rel="noreferrer noopener"><strong>free keyword tool review</strong></a> guide as it&#8217;s completely free, but it&#8217;s tricky to access if you&#8217;re new to it. </p>



<p>This is because it&#8217;s part of the Google Ads platform with the primary purpose for the tool (from Google&#8217;s perspective) is to use it to target keywords in Google Ads you run.</p>



<p>Many people use it to get keyword data for SEO purposes, though, so let&#8217;s talk about how to get the Google Keyword Planner for free.</p>



<h1 class="wp-block-heading">How to Get Google Keyword Planner for Free</h1>



<p>While it&#8217;s free, you still need at least a Google account to access the tool. Let&#8217;s break down how to get the Google Keyword Planner for free in a few simple steps.</p>



<h2 class="wp-block-heading">1 &#8211; Get a Google Account/Sign in to Google Ads</h2>



<p>First off, sign up for a free Google account if you don&#8217;t already have one. Odds are you already have a Google account if you have or use Gmail, YouTube, Google Voice, Google Play, etc.</p>



<p>Once you are signed into your Google account, navigate over to Google Ads at https://ads.google.com.</p>



<h2 class="wp-block-heading">2 &#8211; Switch to Expert Mode</h2>



<p>Once there, Google will ask you to choose from a list your advertising goals.</p>



<p>Ignore this and scroll down. Notice below the Next button the line: &#8220;Are you a professional marketer? Switch to Expert Mode&#8221;:</p>



<figure class="wp-block-image size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/02/switch-to-expert-mode.png" alt="switch to expert mode" class="wp-image-826"/></figure>



<p>Click on the link that is &#8220;Switch to Expert Mode&#8221;.</p>



<h2 class="wp-block-heading">3 &#8211; Create an Account Without a Campaign</h2>



<p>On the next page, Google will prompt you to choose your objective. Like before, we&#8217;re going to ignore this and instead turn our attention to the small link beneath the choices, this time which reads &#8220;Create an account without a campaign&#8221;:</p>



<figure class="wp-block-image size-large"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/02/create-an-account-without-a-campaign-1024x505.png" alt="create an account without a campaign" class="wp-image-827"/></figure>



<h2 class="wp-block-heading">4 &#8211; Confirm Your Business Information</h2>



<p>Once we click that, it will prompt us to input a few basics regarding business information &#8211; billing country, time zone, and currency type.</p>



<p>It doesn&#8217;t matter what you put here as we&#8217;re not here to actually run any Google Ads, we just want to access the Google Keyword Planner for free.</p>



<p>Click &#8220;Submit&#8221; and &#8220;Explore Your Account&#8221; on the next page after your account is finished setting up.</p>



<h2 class="wp-block-heading">5 &#8211; Tools and Settings</h2>



<p>Once your account is set up, you&#8217;ll be on the home page of your dashboard. This will look pretty blank without any campaigns set up, and Google will prompt you to set up a new campaign.</p>



<p>Instead, navigate to the small &#8220;Tools and Settings&#8221; button in the top right of the browser. This will bring up a drop-down menu. Select the bottom option &#8220;Keyword Planner&#8221;.</p>



<h2 class="wp-block-heading">6 &#8211; Choose Discover New Keywords or Get Search Volume and Forecasts</h2>



<p>Now we&#8217;re finally in the Keyword Planner where you have two options: &#8220;Discover New Keywords&#8221; and &#8220;Get Search Volume and Forecasts&#8221;.</p>



<h3 class="wp-block-heading">Discover New Keywords</h3>



<p>Discover New Keywords is the option you&#8217;ll want to choose if you don&#8217;t have specific keywords in mind already. </p>



<figure class="wp-block-image alignright size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/02/discover-new-keywords.png" alt="discover new keywords" class="wp-image-830"/></figure>



<p>You begin by entering a seed keyword or keywords and the Keyword Planner will generate related keywords accordingly.</p>



<p>Depending on the seed keyword, you can get hundreds or even thousands of related keywords to consider.</p>



<p>Along with those keywords, the tool gives you estimated monthly keyword search volume data on each of them.</p>



<p>If you are looking for keywords to base your content around, &#8220;Discover New Keywords&#8221; is the way to go.</p>



<h3 class="wp-block-heading">Get Search Volume and Forecasts</h3>



<p>If you already have a keyword or keywords you want search volume stats on, &#8220;Get Search Volume and Forecasts&#8221; is the way to go.</p>



<p>You can type in the keywords you want search volume estimates on or you can upload a list of keywords if you have them in say a notepad or other text document.</p>



<figure class="wp-block-image alignright size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/02/get-search-volume-and-forecasts.png" alt="get search volume and forecasts" class="wp-image-835"/></figure>



<p>You&#8217;ll get the same information as you would get from the &#8220;Discover New Keywords&#8221; option, including search volume estimates, percent changes over a 3 month period, a rough read of the level of competition, and the cost per bid.</p>



<p>While the cost per bid isn&#8217;t especially relevant for an organic SEO based keyword campaign, it still gives you an idea of the level of competition for a keyword.</p>



<p>The more expensive the average bid to rank well for that keyword in Google Ads, typically the greater the organic competition to rank well for that keyword, as well.</p>



<p></p>



<p><strong>In Summary</strong></p>



<p>Accessing the Google Keyword Planner for free is simple enough, you just have to find the small print links to bypass the unnecessary approach of setting up a campaign.</p>



<p>While it&#8217;s nice to get search volume estimates from Google themselves, the estimates are especially rough (1k-10k, 10k-100k, etc.) to the point that it can be difficult to determine which keywords are worth targeting.</p>



<p>For this reason, I again recommend that you check out my <a href="https://www.angryseoer.com/the-ultimate-free-keyword-tool-review/" target="_blank" rel="noreferrer noopener"><strong>free keyword tool review</strong></a> roundup as most of the options I cover in that overview give a lot more detailed keyword information than the Keyword Planner and for free at that.</p>



<p>And if you&#8217;re looking for a cost effective tool which gives you everything you need for conclusive keyword research, consider my <a href="https://www.angryseoer.com/keysearch-review/" target="_blank" rel="noreferrer noopener"><strong>KeySearch review</strong></a>.</p>



<p>Happy hunting!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.angryseoer.com/how-to-get-google-keyword-planner-for-free/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Optimize Images for SEO</title>
		<link>https://www.angryseoer.com/how-to-optimize-images-for-seo/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-optimize-images-for-seo</link>
					<comments>https://www.angryseoer.com/how-to-optimize-images-for-seo/#comments</comments>
		
		<dc:creator><![CDATA[Angry SEOer]]></dc:creator>
		<pubDate>Wed, 09 Feb 2022 19:10:05 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<guid isPermaLink="false">https://www.angryseoer.com/?p=796</guid>

					<description><![CDATA[Including images on your website can better convey your message and make for a more engaging user experience. Even if not essential to the content of a post itself, I like to include images to break up the monotony which nothing but text brings. It&#8217;s not enough to just stick some images on your page, [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Including images on your website can better convey your message and make for a more engaging user experience. Even if not essential to the content of a post itself, I like to include images to break up the monotony which nothing but text brings. It&#8217;s not enough to just stick some images on your page, though, knowing how to optimize images for SEO pays huge dividends.</p>



<p>This is because just like your page itself, images can rank well in search engines, potentially bringing you additional traffic to your site. They can also help your page itself rank better if properly optimized.</p>



<p>With all of that in mind, let&#8217;s cover the checklist for how to optimize images for SEO.</p>



<h1 class="wp-block-heading" id="how-to-optimize-images-for-seo">How to Optimize Images for SEO</h1>



<h2 class="wp-block-heading" id="where-to-find-images-for-your-blog">Where to Find Images for Your Blog</h2>



<p>To begin with, I&#8217;m not going to just assume that you know where to get images for your blog to begin with. You likely realize that you can&#8217;t just take any images you find across the Internet, stamp them on your site, and call it a day.</p>



<p>There are copyright issues at play, and this can wind you in legal trouble down the road. This is why I get a lot of use out of sites which house millions of cost and copyright free images ready for you to use on your site however you like.</p>



<figure class="wp-block-image alignright size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2021/10/Where-to-Find-Images-For-Your-Blog.png" alt="Where to Find Images For Your Blog" class="wp-image-477"/></figure>



<p>Check out my top 5 sites for <a href="https://www.angryseoer.com/where-to-find-images-for-your-blog/" target="_blank" rel="noreferrer noopener"><strong>where to find images for your blog</strong></a> which are completely free and free of copyright issues.</p>



<p>Each of these sites have advanced search features and huge databases of free images which make finding the perfect image fast and simple.</p>



<p>This is also a much better alternative than having your site flagged or paying two to three figures on average for a single image! </p>



<p>Just be sure to check the terms to make sure you don&#8217;t need to attribute the image author and that it&#8217;s actually copyright free. 9 times out of 10 it is, but occasionally an image can have additional terms of use which will be detailed in the download area.</p>



<h2 class="wp-block-heading" id="best-image-size-for-seo">Best Image Size for SEO</h2>



<p>What I typically do is download the image I want from one of the sites I just referenced, then pull it into an image editor. In my case I use Photoshop.</p>



<p>Even if I don&#8217;t want to make any additions or changes to the image, I may want to change the size or resolution. Most of the free image sites allow you to download them at a few stock size options, so an image editor allows me that bit of extra control.</p>



<figure class="wp-block-image alignright size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/02/best-image-size-for-seo.png" alt="best image size for seo" class="wp-image-805"/></figure>



<p>The best image size for SEO is typically going to be the smallest size you can get away with.</p>



<p>So while there&#8217;s no perfect image size in most situations, there are some guidelines to follow:</p>



<p><strong>Featured Image Size</strong> &#8211; WordPress recommends a size of 1200&#215;675 for your post&#8217;s featured image.</p>



<p><strong>Don&#8217;t Exceed Site&#8217;s Width</strong> &#8211; Most WordPress themes today (see my post on <a href="https://www.angryseoer.com/what-is-the-best-free-wordpress-theme-2022-edition/" target="_blank" rel="noreferrer noopener"><strong>what is the best free WordPress theme</strong></a>) allow you to designate the width of each area of your site. For instance, you might want to devote more width to the content area, or alternatively you might want that sidebar to have a bigger presence, in which case you&#8217;d increase the width there.</p>



<p>All this to say, if your blog&#8217;s content area&#8217;s size is say 700 pixels wide, then it doesn&#8217;t make sense to upload images which exceed 700 pixels in width.</p>



<p>I should note that the only exception is when you&#8217;re creating an image which is meant for download or at the very least opening in a new tab like an infographic.</p>



<p><strong>Know Your Site&#8217;s Width</strong> &#8211; In the same vein, it&#8217;s a good idea to know your content area&#8217;s width where images appear.</p>



<p>If it&#8217;s, say 700 pixels wide, then you have a guideline for how your images can fit within your content. </p>



<p>For example, if you want your image to roughly embed within a paragraph, you might size it for 300-350 pixels wide and align it to the right.</p>



<p>The point of this is that you can create the image accordingly to optimize it size-wise. In other words, while WordPress makes it simple to resize your images within your content on the fly, it&#8217;s inefficient to put a larger image in your content, then shrink it.</p>



<p>As I discussed in my recent overview of <a href="https://www.angryseoer.com/how-to-increase-website-speed-wordpress/" target="_blank" rel="noreferrer noopener"><strong>how to increase website speed in WordPress</strong></a>, the data sizes of the files loading on your website have a huge impact on how quickly the page loads.</p>



<p>With that in mind, create your images to the best/intended sizes from the start to avoid uploading larger than necessary images (in both image AND file size).</p>



<h2 class="wp-block-heading" id="best-image-format-for-seo">Best Image Format for SEO</h2>



<p>The most common file formats for images are JPEG, PNG, and GIF. </p>



<figure class="wp-block-image alignright size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/02/jpeg-vs-png.png" alt="jpeg vs png" class="wp-image-806"/></figure>



<p>Each one has a specific purpose, so the best image format for SEO is situational based and comes down to what type of image it is. Here&#8217;s a quick guide:</p>



<p>JPEG &#8211; JPEG is the ideal and best compressed image format for more complex images with lots of colors. For photos and more complex illustrations, save the file as a JPEG.</p>



<p>PNG &#8211; A PNG is for far more simple images. PNGs have a more limited color range and are ideal for images with clearly defined edges. If you have a text based image (like an infographic), a PNG is the way to go. </p>



<p>PNGs also allow you to save the image with a transparent background, making them easy to embed on a web page without having a solid white background or a background in general.</p>



<p>GIF &#8211; This is the most straightforward; a GIF is used for images with a brief animation.</p>



<p>If you try to save a complex photo as a PNG, you&#8217;ll find that it will create a much larger file size with no noticeable improvement in quality. This is why it&#8217;s important that you follow those guidelines.</p>



<p>It&#8217;s also worth noting here that photo editors like Photoshop allow you to choose the image quality when outputting them.</p>



<figure class="wp-block-image size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/02/photoshop-quality-comparison.jpg" alt="" class="wp-image-800"/></figure>



<p>Above are two versions of the same image rendered at different qualities.</p>



<p>The left is 60% and the right is 100% in terms of quality setting. While the images look virtually identical, the one on the right renders at nearly 3 times the size.</p>



<p><strong>I find that a quality of 60 works gives you the best quality to size ratio with JPEGs in Photoshop.</strong></p>



<h2 class="wp-block-heading" id="how-to-name-images-for-seo">How to Name Images for SEO</h2>



<p>Lastly, when you&#8217;re rendering the image itself, you have to supply a file name for it.</p>



<figure class="wp-block-image alignright size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/02/photoshop-image-options.jpg" alt="image quality in photoshop" class="wp-image-789"/></figure>



<p>It&#8217;s a good idea to be precise with the name of your image to better convey to search engines what that image is of. So &#8220;girl on tokyo train&#8221; is better than &#8220;girl on train&#8221; or just &#8220;train&#8221;.</p>



<p>It&#8217;s also preferred to put dashes between words in the title of the image, just like with a URL.</p>



<p>By using the &#8220;Save for Web &amp; Devices&#8221; option to render, Photoshop will automatically put dashes between every word you type (in place of a blank space).</p>



<p>This will ensure that your image is easily interpreted by both your visitors as well as search engines.</p>



<h2 class="wp-block-heading" id="alt-tag">Alt Tag</h2>



<p>Last but not least, when you upload your image to your website, remember to include its name/keyword as the alt tag. </p>



<p>Browsers rely on this to show when either the image is broken or images are disabled.</p>



<p>This helps with the accessibility of the page as well as better conveying to search engines as to what your image is about.</p>



<p>Search engines will use both an image&#8217;s title and its alt tag to identify the context and include it in image searches accordingly.</p>



<p></p>



<h3 class="wp-block-heading" id="summarizing-how-to-optimize-images-for-seo">Summarizing How to Optimize Images for SEO</h3>



<ul class="wp-block-list">
<li>Use free image sites to get the exact image(s) you need without paying or running the risk of copyright issues (be sure to check with every image you download and use, though).</li>



<li>Know the size of the content area of your website and size your images accordingly.</li>



<li>Don&#8217;t upload a larger than necessary image needlessly (infographics are one of the few exceptions).</li>



<li>JPEGs are ideal for complex images like photos. PNGs are for simple images with clearly defined edges and limited colors. GIFs are for animated images.</li>



<li>Saving an image with an unnecessarily high quality setting will create a larger file size without upgrading visible quality.</li>



<li>Name your images with specificity, after keywords, and include a dash in place of spaces with multiple words.</li>



<li>The alt tag should reflect the image&#8217;s name and is used when the image cannot load properly. This provides additional context to search engines regarding what your image is about and what search queries it should appear for.</li>
</ul>
]]></content:encoded>
					
					<wfw:commentRss>https://www.angryseoer.com/how-to-optimize-images-for-seo/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>The Top 10 Ways How to Increase Website Speed &#8211; WordPress Edition</title>
		<link>https://www.angryseoer.com/how-to-increase-website-speed-wordpress/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-increase-website-speed-wordpress</link>
					<comments>https://www.angryseoer.com/how-to-increase-website-speed-wordpress/#comments</comments>
		
		<dc:creator><![CDATA[Angry SEOer]]></dc:creator>
		<pubDate>Wed, 02 Feb 2022 19:09:14 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">https://www.angryseoer.com/?p=751</guid>

					<description><![CDATA[If I&#8217;ve said it once I&#8217;ve said it a thousand times: search engines like Google want to pack their search results pages with sites which create a great user experience. Part of that is through the content itself, but a big part of that is how quickly that content loads. As such as as was [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>If I&#8217;ve said it once I&#8217;ve said it a thousand times: search engines like Google want to pack their search results pages with sites which create a great user experience. Part of that is through the content itself, but a big part of that is how quickly that content loads. As such as as was demonstrated as part of the <a href="https://www.angryseoer.com/core-web-vitals-may-2021-update-how-to-win-it/" target="_blank" rel="noreferrer noopener"><strong>web core vitals update</strong></a> of May 2021: speed is a huge ranking factor.</p>



<p>Let&#8217;s talk how to increase website speed &#8211; WordPress edition. Here are the top 10 (all easy) ways to speed up your website.</p>



<h3 class="wp-block-heading" id="how-to-check-website-speed">How to Check Website Speed</h3>



<p>The first thing you should do is actually check your website&#8217;s speed, meaning its load time.</p>



<p>Navigate over to <a href="https://developers.google.com/speed/pagespeed/insights/" target="_blank" rel="noreferrer noopener">https://developers.google.com/speed/pagespeed/insights/</a> and plug your home page&#8217;s URL along with a few deeper pages into the tool.</p>



<p>After a few seconds you&#8217;ll get a speed score on a scale of 0-100 with 100 being the best. Note that you&#8217;ll get a unique score for both the mobile and desktop devices. It will look something like this:</p>



<figure class="wp-block-image size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/02/pagespeed-insights-score.jpg" alt="pagespeed insights score" class="wp-image-788"/></figure>



<p>This snapshot shows you the individual load time metrics from specific elements of your site. Green is good, anything in red or orange requires your attention.</p>



<p>Best of all, upon scrolling down, Google gives suggestions on the actual things you need to do to correct this speed liabilities.</p>



<p>If you&#8217;re unsure as to what these various metrics are, check out <a href="https://www.angryseoer.com/core-web-vitals-may-2021-update-how-to-win-it/" target="_blank" rel="noreferrer noopener"><strong>my overview on what each of these core web vitals mean</strong></a> and how to improve them.</p>



<h1 class="wp-block-heading" id="how-to-increase-website-speed-in-wordpress">How to Increase Website Speed in WordPress</h1>



<p>Let&#8217;s go over the top 10 things you can do for how to increase website speed in WordPress.</p>



<figure class="wp-block-image size-large"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/02/How-to-Increase-Website-Speed-WordPress-1024x576.png" alt="How to Increase Website Speed WordPress" class="wp-image-792"/></figure>



<h2 class="wp-block-heading" id="enable-caching">Enable Caching</h2>



<p>I begin with caching because it&#8217;s the easiest, fastest way of how to increase website speed in WordPress.</p>



<p>Caching means that when someone comes to your website for the first time, the majority of the files necessary to load your site are saved in your visitor&#8217;s browser.</p>



<p>This way, if they return to your site, it will load significantly faster.</p>



<p>To enable caching in WordPress, you need a <a href="https://wordpress.org/plugins/search/caching/" target="_blank" rel="noreferrer noopener">free caching plugin</a>. There are a lot of good and highly rated options (personally I use <a href="https://wordpress.org/plugins/w3-total-cache/" target="_blank" rel="noreferrer noopener">W3 Total Cache</a>), so grab one and enable caching.</p>



<p>Most of the files needed to load your website are static and rarely change. The caching plugin creates code which instructs your visitor&#8217;s web browser which files are unchanged and can be loaded from the previous visit (thus saving time).</p>



<p>You can pick and choose the cache time for each file type on your site within most of these plugins but typically the defaults are fine.</p>



<p>You can also add some code to the bottom of your .htaccess file for your website to manually instruct browsers on caching times.</p>



<p>Adding the following code ensures that the following file types only load fresh after 30 days (measured in 2592000 seconds).</p>



<pre class="wp-block-code"><code>
&lt;FilesMatch "(?i)^.*\.(ico|flv|jpg|jpeg|png|gif|js|css|woff)$"&gt;
ExpiresActive On
ExpiresDefault A2592000
&lt;/FilesMatch&gt;
</code></pre>



<p>I still recommend just using a plugin because they usually have additional options for how to increase website speed in WordPress as I&#8217;ll discuss in a moment.</p>



<h2 class="wp-block-heading" id="upload-optimized-images">Upload Optimized Images</h2>



<p>A lot of speeding up your WordPress run site is simply a matter of reducing file sizes. A good way to do this moving forward is to only upload optimized images to your site.</p>



<p>If you&#8217;re using a program to edit or create images for your site like Photoshop, make sure that you&#8217;re creating them to be as efficient and compressed as possible.</p>



<figure class="wp-block-image size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/02/photoshop-image-options.jpg" alt="" class="wp-image-789"/></figure>



<p>Typically setting your output setting above &#8220;high&#8221; quality just creates a larger file size with no noticeable change in visual quality.</p>



<p>Also remember that the image file type dictates the size and certain image types are better at compressing and optimizing certain images more efficiently than others.</p>



<p>A good rule of thumb is:</p>



<p>Use JPEG when it&#8217;s a photo or complex image with lots of colors and definition.</p>



<p>Use a PNG when it&#8217;s a simple graphic with just a handful of colors and well defined boundaries.</p>



<h2 class="wp-block-heading" id="enable-caching">Optimize Images Upon Upload</h2>



<p>You can also use an <a href="https://wordpress.org/plugins/search/image+optimization/" target="_blank" rel="noreferrer noopener">image optimization plugin</a> to optimize existing and new images when you upload them to your site. These work by compressing images to smaller sizes without sacrificing image quality.</p>



<p>Using one retroactively can free up a lot of space on your site, particularly if you have a lot of images already on your site.</p>



<p>It&#8217;s worth noting that some of the caching plugins will do this for you, as well.</p>



<h2 class="wp-block-heading" id="enable-caching">Use a CDN</h2>



<p>One of the major causes of slow website load time is the user&#8217;s physical distance from the server your website is kept on.</p>



<figure class="wp-block-image alignright size-full is-resized"><img loading="lazy" decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/02/cdn.png" alt="cdn" class="wp-image-791" width="393" height="291"/></figure>



<p>The farther your site&#8217;s visitor is from where the content they&#8217;re loading is actually stored, the longer it will take to load.</p>



<p>This is why a content delivery network or CDN can be a very effective way to speed up your site&#8217;s load time.</p>



<p>It works like this: cached versions of your site are stored on secondary servers around the globe.</p>



<p>So when someone in Australia is loading your site in their browser, it will load significantly faster if a cached version of your site is stored on a more local server in say Melbourne than somewhere in the United States.</p>



<p>Their browser will connect to the closest server your content is stored on no matter where they are in the world.</p>



<p>Most caching plugins give an option to integrate with a CDN (hopefully you&#8217;re getting an idea by now of how important a caching plugin is in how to increase website speed in WordPress.</p>



<h2 class="wp-block-heading" id="enable-caching">Remove Excess Content and Scripts</h2>



<p>Sometimes the easiest and most effective way to speed up your website is to just start cutting out existing yet excess content and scripts.</p>



<p>For example, javascript based content typically takes much longer to load over basic HTML.</p>



<p>Ask yourself what is better for your website&#8217;s visitors &#8211; that over the top loading animation on your website or a simpler, cleaner page which loads in a quarter of the time.</p>



<p>In a similar vein, take a glimpse at the plugins installed and active on your site. Do you need them all? Odds are you installed something months ago as an experiment to try it out but it&#8217;s not providing any value to your site.</p>



<p>It&#8217;s a good idea to audit not just your site&#8217;s content, but your site&#8217;s behind the scenes content like plugins and scripts and make sure every bit of it is essential.</p>



<h2 class="wp-block-heading" id="use-amp">Use AMP</h2>



<p>Speaking of removing bloated content and scripts, this is especially true for loading your site on mobile devices. </p>



<p>Mobile devices on average have access to slower internet speeds, so it behooves you to have a lighter version of your website for mobile users.</p>



<figure class="wp-block-image alignright size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/01/what-is-amp.png" alt="amp" class="wp-image-767"/></figure>



<p>Enter AMP.</p>



<p>AMP stands for accelerated mobile pages. It&#8217;s an open-source project initiative begun by Google.</p>



<p>It essentially involves creating alternate, lighter in code versions of every page you create which Google can serve up specifically to mobile users.</p>



<p>This sounds like a lot of work, but as I covered in my overview of <a href="https://www.angryseoer.com/how-to-speed-up-a-wordpress-site-on-mobile-what-is-amp-in-wordpress/" target="_blank" rel="noreferrer noopener"><strong>what is AMP in WordPress</strong></a>, it&#8217;s virtually as simple as installing a plugin.</p>



<p>There are plenty of <a href="https://wordpress.org/plugins/search/amp/" target="_blank" rel="noreferrer noopener">plugins for AMP</a>, and most of them automatically create an AMP compliant page and communicate this to Google for you. They do this by cutting most of the complex scripts out of your page and just boiling it down to the loading essentials while preserving as much of the look and feel of your site but on mobile as possible.</p>



<p>Alternatively, they give you the option to manually create an AMP compliant page.</p>



<h2 class="wp-block-heading" id="enable-caching">Optimize Existing Code</h2>



<p>You can optimize the existing code on your site in a few ways.</p>



<p>This includes:</p>



<p><strong>Minifying Code</strong> &#8211; Minifying code removes unnecessary gaps/white space in your code to make it more efficient and load faster because the browser can read it more easily.</p>



<p>Note that a good clean and maintained theme (see <a href="https://www.angryseoer.com/what-is-the-best-free-wordpress-theme-2022-edition/" target="_blank" rel="noreferrer noopener"><strong>what is the best free WordPress theme in 2022</strong></a>) won&#8217;t have a great deal of this. </p>



<p>Regardless, you can minify your code and specify which types with most caching plugins and is a one click way to speed up your site in WordPress.</p>



<p><strong>Lazy Load Images</strong> &#8211; Typically an image is lower priority in terms of importance with your content. </p>



<p>With that in mind, you can lazy load images on your site using either most caching plugins or image optimization plugins.</p>



<p>This lowers their priority when your page is loading, putting loading them off until the more important elements have loaded for your visitor.</p>



<p><strong>Defer Javascript</strong> &#8211; I talked about removing bloated code like javascript you might not need, but just like with lazy loading images you can defer javascript or any other types of code for that matter to load last.</p>



<p>This allows the rest of your page to load more quickly rather than the browser struggling with loading the heavier code simultaneously.</p>



<p>You can specify different script extensions like JS to load last in most caching plugins. </p>



<h2 class="wp-block-heading" id="embed-videos-rather-than-host-them">Embed Videos Rather Than Host Them</h2>



<p>Using videos and images is a good way to keep your content fresh and make it more easily digestible for your visitor.</p>



<figure class="wp-block-image alignright size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2021/10/youtube-video.png" alt="video" class="wp-image-490"/></figure>



<p>Videos are typically easily the largest sized files you can have on your server. </p>



<p>With that in mind, it&#8217;s better to reference and embed a video from another site rather than uploading and hosting it right on your site, though.</p>



<p>YouTube makes it very easy to embed a video you&#8217;ve uploaded there directly into your page. </p>



<p>With WordPress&#8217; blocks system, you can just pull up a YouTube block and paste the URL of the video you want to embed.</p>



<h2 class="wp-block-heading" id="enable-caching">Keep Your Database Optimized</h2>



<p>Your site&#8217;s database is where your actual website is organized. So think less images and code which dictate the look of your site but more the written content of your posts and pages.</p>



<p>Over time, this can get cluttered up just like your own desktop. </p>



<p>You can use a <a href="https://wordpress.org/plugins/search/database/" target="_blank" rel="noopener">database plugin</a> to optimize and cleanup your database.</p>



<p>This is useful for removing old unnecessary revisions of posts and pages you still have lying around, cluttering up the database.</p>



<p>It won&#8217;t give you a huge boost in performance, but every little bit helps and it&#8217;s good maintenance to get into the habit of.</p>



<h2 class="wp-block-heading" id="enable-caching">Keep Site Updated</h2>



<p>Lastly in this list of how to increase website speed in WordPress: keep your site updated.</p>



<p>This means keeping your plugins, theme, and WordPress version itself all up to date. So every time a new update rolls out, make sure that you install it.</p>



<p>I talked about this in my overview on <a href="https://www.angryseoer.com/3-new-year-website-updates/" target="_blank" rel="noreferrer noopener"><strong>3 website updates I recommend doing every year</strong></a>, but it&#8217;s a good way to both keep your site secure and get the latest functionality. Many updates will involve any of those three elements (plugins, themes, and WordPress version) to run more efficiently.</p>



<p>You can automatically set plugins to update on the plugins page:</p>



<figure class="wp-block-image size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/02/auto-update-wordpress-plugins.png" alt="" class="wp-image-790"/></figure>



<p>Updates for Themes and the WordPress version itself both need to be done manually (meaning click update automatically when they&#8217;re available).</p>



<p></p>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.angryseoer.com/how-to-increase-website-speed-wordpress/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>How to Speed Up a WordPress Site on Mobile &#8211; What is AMP in WordPress</title>
		<link>https://www.angryseoer.com/how-to-speed-up-a-wordpress-site-on-mobile-what-is-amp-in-wordpress/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-speed-up-a-wordpress-site-on-mobile-what-is-amp-in-wordpress</link>
					<comments>https://www.angryseoer.com/how-to-speed-up-a-wordpress-site-on-mobile-what-is-amp-in-wordpress/#comments</comments>
		
		<dc:creator><![CDATA[Angry SEOer]]></dc:creator>
		<pubDate>Wed, 19 Jan 2022 18:06:42 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<guid isPermaLink="false">https://www.angryseoer.com/?p=750</guid>

					<description><![CDATA[Thanks to the folks at Statista, we know that more than half of all website traffic these days comes from mobile devices, up from less than a third just seven years ago. That number is only going to continue to rise as mobile web speeds climb and more folks transition to mobile devices. This means [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Thanks to the folks <a href="https://www.statista.com/statistics/277125/share-of-website-traffic-coming-from-mobile-devices/" target="_blank" rel="noreferrer noopener"><strong>at Statista</strong></a>, we know that more than half of all website traffic these days comes from mobile devices, up from less than a third just seven years ago. That number is only going to continue to rise as mobile web speeds climb and more folks transition to mobile devices.</p>



<p>This means it&#8217;s obviously important to make sure that your website loads quickly across all devices (see my overview on the <a href="https://wordpress.org/plugins/amp/" target="_blank" rel="noreferrer noopener"><strong>huge Google core web vitals update from 2021</strong></a>). </p>



<p>And THIS in turn means that it&#8217;s not enough to put together one iteration of your site and call it a day.</p>



<p>Enter AMP, so let&#8217;s talk about what is AMP in WordPress and how to speed up a WordPress site on mobile using it.</p>



<h2 class="wp-block-heading">What is AMP in WordPress?</h2>



<figure class="wp-block-image alignright size-full is-resized"><img loading="lazy" decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/01/what-is-amp.png" alt="what is amp" class="wp-image-767" width="285" height="285"/></figure>



<p>In short, AMP stands for accelerated mobile pages and essentially means creating dedicated mobile friendly pages which will load on mobile devices in place of your conventional pages.</p>



<p>Not surprisingly, AMP was an open-source project initiative started by Google. Google wants to feature fast loading pages in its SERPs regardless of the device someone is using.</p>



<p>When someone is on a mobile device, odds are greater that their internet connection will be slower and less reliable than when browsing on a desktop.</p>



<p>AMP takes this into consideration and creates specific pages which load more quickly. It accomplishes this by putting caps on the amount of JS and CSS code an AMP specific page can load (50kb).</p>



<p>It&#8217;s essentially a &#8220;lite&#8221; version of the same content designed entirely with speed in mind.</p>



<figure class="wp-block-image size-large"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/01/how-to-speed-up-wordpress-site-on-mobile-1-1024x576.png" alt="how to speed up wordpress site on mobile" class="wp-image-768"/></figure>



<h2 class="wp-block-heading">How to Speed Up a WordPress Site on Mobile With AMP</h2>



<p>So how do we enable AMP on our website?</p>



<p>Like with everything in WordPress, there&#8217;s a simple plugin for enacting AMP on your website. There are <a href="https://wordpress.org/plugins/search/amp/" target="_blank" rel="noreferrer noopener">a few good ones</a>, so pick, install, and activate one on your site. I&#8217;ll be referencing <a href="https://wordpress.org/plugins/amp/" target="_blank" rel="noreferrer noopener">AMP</a> (literally the name of the specific plugin) in the rest of this resource.</p>



<p>You can see the plugin immediately start working if you begin creating a new post or page on your site or open an older one in your WP dashboard.</p>



<p>In the case of AMP the plugin, you can see live AMP validation on the right hand of the screen when you click on the AMP bolt icon:</p>



<figure class="wp-block-image size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/01/amp-validation-example.png" alt="amp validation example" class="wp-image-763"/></figure>



<p>In the case of this page, there are 7 issues which means there are 7 elements on the page which, if left intact, the page will NOT have AMP validation. This means that Google will not see that we have an AMP compliant page to serve to mobile users.</p>



<p>By default, this plugin removes the sections of a page which are keeping it from being AMP compliant. Note that this doesn&#8217;t affect your original/desktop version one iota.</p>



<p>So by default, no extra actions are needed on your end. That said, it&#8217;s still useful for seeing any issues which were note AMP compliant and possibly are slowing your site down in general.</p>



<p>To be clear, unless there are specific issues the plugin will notify you about where you need to take manual action, you&#8217;ll have an AMP ready/mobile Google friendly page every time which can help you outrank your competitors in Google&#8217;s mobile SERPs.</p>



<p>Alternatively, the plugin allows you to manually create a dedicated AMP version of the page separate of your main page. You might go for this option if you have a smaller site, say for a brick and mortar business which only has a few pages.</p>



<p>If you have a content site which you publish to frequently, the automated/standard version works well.</p>



<h3 class="wp-block-heading">How to Not Sacrifice Style for Speed</h3>



<p>The one obvious drawback of AMP is that it neuters the intended design of your page. </p>



<p>On some sites, if you&#8217;ve got a lot of code, it completely changes the look of the mobile pages so that it looks like you&#8217;re on a completely different website than the desktop version.</p>



<p>The best way to combat this is to have a light and speedy site to begin with so that there&#8217;s not much to change.</p>



<p>Incidentally, I just looked into <a href="https://www.angryseoer.com/what-is-the-best-free-wordpress-theme-2022-edition/" target="_blank" rel="noreferrer noopener"><strong>what is the best free WordPress theme</strong></a>. Reassuringly (considering it&#8217;s the theme powering this), I found Astra to be the best free theme for a number of reasons, one of which is speed.</p>



<p>Astra boasts it&#8217;s AMP friendliness and compatibility in that it goes out of its way to keep your AMP pages as close to the desktop versions as possible. It accomplishes a lot of this by being lightweight right out of the box.</p>



<p>You can get an on-demand speed appraisal for both the desktop and mobile devices <a href="https://developers.google.com/speed/pagespeed/insights/" target="_blank" rel="noreferrer noopener">from Google</a> to see how far behind the curve you are from the start. That free tool will give you recommendations on the biggest issues impacting your site&#8217;s speed and performance.</p>



<p>Some of the same issues may present themselves in the AMP validation section of a page. Of course with AMP installed, it simply removes the bits which are keeping it from being validated on its AMP version.</p>



<p></p>



<p><strong>In Summary on How to Speed Up a WordPress Site on Mobile</strong></p>



<ul class="wp-block-list">
<li>More than half of all website traffic is mobile and it will continue trending that way.</li>



<li>It&#8217;s essential to have a website which is responsive on both desktop and mobile devices.</li>



<li>AMP is a system of creating mobile friendly/lite versions of the same desktop content, optimized for mobile devices and designed to use less data/load quicker through data caps and other requirements.</li>



<li>AMP pages are more Google friendly in Google&#8217;s mobile SERPs because Google recognizes that they load faster. As such, with everything else being equal, an AMP version of a page will outrank a conventional page which hasn&#8217;t taken mobile into consideration.</li>



<li>Using a free AMP themed plugin, you can automatically create AMP compliant pages alongside the main content as you go. Conversely you can also use it to manually create an AMP compliant version of a page.</li>
</ul>



<p>Hopefully this helped you understand more about AMP, why it can be beneficial for your site/rankings/traffic, and how easy it is to implement.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.angryseoer.com/how-to-speed-up-a-wordpress-site-on-mobile-what-is-amp-in-wordpress/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>3 New Year Website Updates to Perform Every New Year</title>
		<link>https://www.angryseoer.com/3-new-year-website-updates/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=3-new-year-website-updates</link>
					<comments>https://www.angryseoer.com/3-new-year-website-updates/#respond</comments>
		
		<dc:creator><![CDATA[Angry SEOer]]></dc:creator>
		<pubDate>Wed, 05 Jan 2022 18:17:15 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<guid isPermaLink="false">https://www.angryseoer.com/?p=733</guid>

					<description><![CDATA[New Year&#8217;s Day is the time for starting resolutions and maybe nursing a hangover from the night before. It&#8217;s also the time to update your websites to reflect the new year. In fact, each year I always make it a point to perform these 3 new year website updates every time that calendar changes over. [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>New Year&#8217;s Day is the time for starting resolutions and maybe nursing a hangover from the night before. It&#8217;s also the time to update your websites to reflect the new year. </p>



<p>In fact, each year I always make it a point to perform these 3 new year website updates every time that calendar changes over.</p>



<figure class="wp-block-image size-large"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/01/new-year-website-updates-1024x536.png" alt="new year website updates" class="wp-image-739"/></figure>



<h2 class="wp-block-heading">Copyright Year</h2>



<p>Call me a purist, but it kind of turns me off when I visit a website and the copyright year of the site is out of date.</p>



<p>The first thing I always do once that calendar year flips over anew is update this for every one of my websites.</p>



<p>Typically this appears in the footer section of your website.</p>



<p>Note that if you&#8217;re running WordPress many themes automatically update this for you. You can obviously check this by navigating to your site and checking the bottom for the correct date.</p>



<p>If the theme hasn&#8217;t automatically updated this for you, you can typically manually change it in the customization section of your theme.</p>



<p>In the &#8220;Sparkling&#8221; theme, for example, you would click on &#8220;Sparkling Options&#8221;, then &#8220;Footer&#8221;.</p>



<figure class="wp-block-image size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/01/sparkling-theme-footer.png" alt="sparkling theme footer" class="wp-image-735"/></figure>



<p>Here you can input whatever copyright information and year you would like.</p>



<p>Don&#8217;t stop there; be sure to update the copyright year on any resources on your site, as well. An example would be if you have any eBooks you sell or give away as incentives on your site. You&#8217;ll want to update the copyright year there to ensure folks that they&#8217;re reading a recent and up to date resource.</p>



<h2 class="wp-block-heading">Date Specific Posts</h2>



<p>By date specific posts I&#8217;m referring to posts with a date in the title. Date specific titles can encourage a <a href="https://www.angryseoer.com/how-to-improve-ctr-in-google-search/" target="_blank" rel="noreferrer noopener"><strong>higher Google CTR</strong></a> by assuring your visitor that you have the most up to date information on your topic. This is especially effective on topics which might evolve over time.</p>



<p>Date specific posts can also work against you if they mention any year but the current year. </p>



<p>So instead of shying away from featuring the year in a post&#8217;s title and to get the most out of them, use the new year as an opportunity to do a mass update of all of these posts at once.</p>



<p>This is easy enough to do on your WordPress site by utilizing the search box on your posts page:</p>



<figure class="wp-block-image aligncenter size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/01/wordpress-post-search.png" alt="" class="wp-image-737"/></figure>



<p>Search by the last year to get an instant collection of posts featuring your keyword, or in this case the year, in your title.</p>



<p>The posts with the year in the title will appear first as the most relevant results.</p>



<p>Instead of simply swapping out the year itself in the post, do a quick read through of the post to see if you&#8217;d change anything. As long as you&#8217;re sure you have the latest and most relevant information on the topic, simply changing the year is fine.</p>



<p>If you end up changing any specific content in the post, maybe make a note at the top to reflect when it was updated and give a quick overview of the change.</p>



<p>This can further drive home the idea that you carefully curate your content and ensure that it&#8217;s up to date, again assuring relevance to your visitor.</p>



<p>Don&#8217;t forget to do the same thing to other content of yours off of your website. This can be content in your email list, or other media like videos.</p>



<p>If you have videos on YouTube and the content doesn&#8217;t need to be refreshed, you can get away with just updating the title. Just note that the publish date of the video will still reflect the previous year, so I wouldn&#8217;t do this after more than a year or so.</p>



<h2 class="wp-block-heading">Theme/Plugins</h2>



<p>Last but still very worth mentioning, the new year is a great time to make sure that your theme and plugins are up to date.</p>



<p>Outdated content like this leads to potentially costly security vulnerabilities on your site.</p>



<p>It&#8217;s easy to ensure that your plugins are up to date as you can set them to auto-update in the plugins section of WordPress. Simply tick the boxes for all of your plugins and select &#8220;Enable Auto-updates&#8221; from the dropdown menu and apply:</p>



<figure class="wp-block-image aligncenter size-full"><img decoding="async" src="https://www.angryseoer.com/wp-content/uploads/2022/01/enable-auto-updates-wordpress.png" alt="enable auto updates wordpress" class="wp-image-738"/></figure>



<p>Your theme is another matter. You still have to manually update your theme which is simple enough to do.</p>



<p>Note that many themes get neglected over time to where the author quits providing support and updates for it.</p>



<p>The new year is a great time to make sure that your theme is still being maintained on a regular basis. If it&#8217;s not, then you might want to take the opportunity to give your site a fresh look in the form of a newer, more popular and therefore better maintained theme.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.angryseoer.com/3-new-year-website-updates/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
