<?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>Site Schema</title>
	<atom:link href="https://www.siteschema.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.siteschema.com</link>
	<description>Hosting, Development &#38; Design</description>
	<lastBuildDate>Tue, 13 Dec 2022 15:22:41 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://www.siteschema.com/?v=6.8.5</generator>

<image>
	<url>https://www.siteschema.com/wp-content/uploads/2021/10/favicon.png</url>
	<title>Site Schema</title>
	<link>https://www.siteschema.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to create a child theme in WordPress</title>
		<link>https://www.siteschema.com/resources/how-to-create-a-child-theme-in-wordpress/</link>
		
		<dc:creator><![CDATA[Site Schema Team]]></dc:creator>
		<pubDate>Mon, 12 Dec 2022 19:32:38 +0000</pubDate>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://www.siteschema.com/?p=2411</guid>

					<description><![CDATA[Creating a child theme in WordPress is a great way to customise and extend the functionality of an existing theme without losing the ability to upgrade the parent theme. By creating a child theme, you can make changes to your website without modifying the source code of the parent theme, which will make it easier to update the parent theme without losing your customisations.]]></description>
										<content:encoded><![CDATA[
<div class="et_pb_section et_pb_section_0 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_0">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_0">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" src="https://www.siteschema.com/wp-content/uploads/2022/12/school-education.svg" alt="WordPress Clean Up &amp; Optimization" title="school-education" class="wp-image-2473" /></span>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_1">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_center et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h1 class="entry-title">How to create a child theme in WordPress</h1></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2><strong>Creating a child theme in WordPress</strong> is a great way to customise and extend the functionality of an existing theme without losing the ability to upgrade the parent theme. <span class="highlight">By creating a child theme, you can make changes to your website without modifying the source code of the parent theme, which will make it easier to update the parent theme without losing your customisations.</span></h2></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_2">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h3>Here are the steps to create a child theme in WordPress:</h3>
<ol>
<li>Start by <strong>creating a new folder</strong> in the <code>wp-content/themes</code> directory of your WordPress installation. This folder will contain your child theme files.</li>
<li>Next, create a new file called <code>style.css</code> in the child theme folder. This file will contain the styles for your child theme.</li>
<li>Open the <code>style.css</code> file in a text editor and add the following code at the top:</li>
</ol></div>
			</div><div class="et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>/*<br />Theme Name:  My Child Theme<br />Description: A description of my child theme<br />Author:      Site Schema<br />Author URI:  https://www.siteschema.com/<br />Template:    parent-theme<br />*/</p></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><ol start="4">
<li>Replace <em>Theme Name</em>, <em>Description</em>, <em>Author</em>, and <em>Author URI</em> with your new child theme information, and &#8220;parent-theme&#8221; with the name of the parent theme. <b>Example</b>: To create a child theme from <strong>WordPress</strong>&#8216; <strong>Twenty Twenty-Two</strong> theme the template would be <em>twentytwentytwo</em></li>
<li>Add any <strong>custom styles</strong> for your child theme to the <code>style.css</code> file. These styles will override any matching styles in the parent theme.</li>
<li>To enable your child theme, go to the <code>functions.php</code> admin dashboard and navigate to <em>Appearance &gt; Themes</em>. Your child theme should appear in the list of available themes. Click on the <strong>Activate</strong> button to use the child theme on your website.</li>
<li>If you want to customise the functionality of your child theme, you can create a new file called <code>functions.php</code> in the child theme folder. This file will be loaded automatically when your child theme is active, and you can add custom code to it to extend the functionality of the parent theme.</li>
<li>To ensure that your custom styles are loaded, open the <code>functions.php</code> file in a text editor and add the following code:</li>
</ol></div>
			</div><div class="et_pb_with_border et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p><span class="token delimiter important">&lt;?php</span><span> <br /></span><span class="token function">  add_action</span><span class="token punctuation">(</span><span> </span><span class="token string single-quoted-string">&#8216;wp_enqueue_scripts&#8217;</span><span class="token punctuation">,</span><span> </span><span class="token string single-quoted-string">&#8216;my_theme_enqueue_styles&#8217;</span><span> </span><span class="token punctuation">)</span><span class="token punctuation">;</span><span> <br /></span><span class="token keyword">  function</span><span> </span><span class="token function-definition function">my_theme_enqueue_styles</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span> </span><span class="token punctuation">{</span><span> <br /></span><span class="token function">    wp_enqueue_style</span><span class="token punctuation">(</span><span> </span><span class="token string single-quoted-string">&#8216;child-style&#8217;</span><span class="token punctuation">,</span><span> <br /></span><span class="token function">      get_stylesheet_uri</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span> <br /></span><span class="token keyword">      array</span><span class="token punctuation">(</span><span> </span><span class="token string single-quoted-string">&#8216;parenthandle&#8217;</span><span> </span><span class="token punctuation">)</span><span class="token punctuation">,</span><span> <br /></span><span class="token function">      wp_get_theme</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">-&gt;</span><span class="token function">get</span><span class="token punctuation">(</span><span> </span><span class="token string single-quoted-string">&#8216;Version&#8217;</span><span> </span><span class="token punctuation">)</span><span> </span><span class="token comment">// Only if you have Version defined<br /></span><span class="token punctuation">    )</span><span class="token punctuation">;</span><span> <br /></span><span class="token punctuation">  }<br /></span></p></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p><span style="font-size: 16px;">In conclusion, <strong>creating a child theme in WordPress</strong> is a simple and effective way to customise and extend an existing theme without losing the ability to upgrade the parent theme. By following the steps outlined above, you can create your own child theme and start making customisations to your <strong>WordPress</strong> website.</span></p></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_3">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_divider et_pb_divider_0 et_pb_divider_position_ et_pb_space"><div class="et_pb_divider_internal"></div></div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_4">
				<div class="et_pb_column et_pb_column_1_2 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_text_align_center-tablet et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h1>Need help with Child Themes?</h1>
<h2>We&#8217;re here for you</h2>
<div class="ss-header-body">
<div class="ss-description">
<p>We love solving complex problems and want to help you solve yours. We’ll take care of the heavy lifting so that you can focus on your audience.</p>
<p>&nbsp;</p>
</div>
</div>
<div class="ss-header-footer">
<div class="ss-button"></div>
</div></div>
			</div><div class="et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_left et_pb_button_alignment_tablet_center et_pb_button_alignment_phone_center et_pb_module ">
				<a class="et_pb_button et_pb_button_0 et_pb_bg_layout_dark" href="/contact-us/" data-icon="5">Let&#039;s Talk</a>
			</div>
			</div><div class="et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_1">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" src="https://www.siteschema.com/wp-content/uploads/2022/12/man-working-with-analytics-on-computer.svg" alt="Real-time application performance monitoring" title="man-working-with-analytics-on-computer" class="wp-image-1807" /></span>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Improve your WordPress SEO with WPMU DEV&#8217;s SmartCrawl</title>
		<link>https://www.siteschema.com/resources/improve-your-wordpress-seo-with-wpmu-devs-smartcrawl/</link>
		
		<dc:creator><![CDATA[Site Schema Team]]></dc:creator>
		<pubDate>Mon, 12 Dec 2022 19:06:55 +0000</pubDate>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://www.siteschema.com/?p=2439</guid>

					<description><![CDATA[Search engine optimisation is one of the most important parts of a successful WordPress site. SmartCrawl is a tool that can help you improve SEO on WordPress.]]></description>
										<content:encoded><![CDATA[<p><div class="et_pb_section et_pb_section_1 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_5">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_with_border et_pb_module et_pb_image et_pb_image_2">
				
				
				
				
				<span class="et_pb_image_wrap has-box-shadow-overlay"><div class="box-shadow-overlay"></div><img fetchpriority="high" decoding="async" width="2560" height="1393" src="https://www.siteschema.com/wp-content/uploads/2022/12/SmartCrawl-Screenshot-scaled.jpg" alt="WPMU DEV&#039;s SmartCrawl" title="WPMU DEV&#039;s SmartCrawl" srcset="https://www.siteschema.com/wp-content/uploads/2022/12/SmartCrawl-Screenshot-scaled.jpg 2560w, https://www.siteschema.com/wp-content/uploads/2022/12/SmartCrawl-Screenshot-1280x697.jpg 1280w, https://www.siteschema.com/wp-content/uploads/2022/12/SmartCrawl-Screenshot-980x533.jpg 980w, https://www.siteschema.com/wp-content/uploads/2022/12/SmartCrawl-Screenshot-480x261.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2560px, 100vw" class="wp-image-2449" /></span>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_6">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_center et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h1 class="entry-title">Improve your WordPress SEO with WPMU DEV&#8217;s SmartCrawl</h1></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2><strong>WordPress</strong> is a popular content management system that lets people make and run their own websites with ease. <strong>Search engine optimisation</strong> (SEO), which helps a site show up higher in search engine results, is one of the most important parts of a successful WordPress site. <a href="https://wpmudev.com/project/smartcrawl-wordpress-seo/">SmartCrawl</a> is a tool that can help you improve SEO on WordPress.</h2></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_7">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p><strong>SmartCrawl</strong> is a plugin that helps improve with <strong>search engine optimisation</strong> of a WordPress site in a number of ways. It has options for optimising the title and meta description of the site, making sitemaps, and setting up automatic sharing on social media. The plugin also comes with a keyword research tool that users can use to find the best keywords to use in their content.</p>
<p>One of <strong>SmartCrawl&#8217;s</strong> best features is that it can <strong>automatically make sitemaps</strong> and send them to search engines. This makes sure that search engines index all of a website&#8217;s pages, which makes it more likely that those pages will show up in search results. Also, the plugin makes it easy for users to set up redirects, which can improve the user experience and keep traffic from going away because of broken links.</p>
<p><strong>SmartCrawl</strong> is also useful because it works well with popular SEO tools like <a href="https://analytics.google.com/analytics/web/"><strong>Google Analytics</strong></a> and <a href="https://search.google.com/search-console/about"><strong>Search Console</strong></a>. This makes it easy for users to keep track of how their website does in search engine rankings and make any changes that are needed to improve those rankings. The plugin also has a lot of options for customisation, so users can change the settings to fit their own needs.</p></div>
			</div><div class="et_pb_module et_pb_cta_0 et_pb_promo  et_pb_text_align_center et_pb_bg_layout_dark">
				
				
				
				
				<div class="et_pb_promo_description"><h2 class="et_pb_module_header">SiteCrawl comes loaded on Site Schema</h2><div><p>Sites hosted with Site Schema enjoy the benefit of one of the best WordPress plugins for SEO. SmartCrawl is installed on all new sites and those migrated by default. No need to pay for other, lesser solutions</p></div></div>
				<div class="et_pb_button_wrapper"><a class="et_pb_button et_pb_promo_button" href="/services/wordpress-hosting/">Learn More</a></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p><strong>SmartCrawl</strong> is a powerful tool that can help WordPress users improve the SEO of their websites. With its many features and ability to work with popular SEO tools, it makes optimising a website for better search engine visibility easy and effective. <strong>SmartCrawl</strong> can help you get the most out of your website&#8217;s SEO, no matter how much you know about WordPress.</p></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_8">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_divider et_pb_divider_1 et_pb_divider_position_ et_pb_space"><div class="et_pb_divider_internal"></div></div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_9">
				<div class="et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_text_align_center-tablet et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h1>Need help with SEO?</h1>
<h2>We&#8217;re here for you</h2>
<div class="ss-header-body">
<div class="ss-description">
<p>We love solving complex problems and want to help you solve yours. We’ll take care of the heavy lifting so that you can focus on your audience.</p>
<p>&nbsp;</p>
</div>
</div>
<div class="ss-header-footer">
<div class="ss-button"></div>
</div></div>
			</div><div class="et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_left et_pb_button_alignment_tablet_center et_pb_button_alignment_phone_center et_pb_module ">
				<a class="et_pb_button et_pb_button_1 et_pb_bg_layout_dark" href="/contact-us/" data-icon="5">Let&#039;s Talk</a>
			</div>
			</div><div class="et_pb_column et_pb_column_1_2 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_3">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" src="https://www.siteschema.com/wp-content/uploads/2022/12/man-working-with-analytics-on-computer.svg" alt="Real-time application performance monitoring" title="man-working-with-analytics-on-computer" class="wp-image-1807" /></span>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Top 3 Page Builders for your WordPress website</title>
		<link>https://www.siteschema.com/resources/3-top-page-builders-for-wordpress/</link>
		
		<dc:creator><![CDATA[Site Schema Team]]></dc:creator>
		<pubDate>Sun, 11 Dec 2022 20:26:32 +0000</pubDate>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://www.siteschema.com/?p=2295</guid>

					<description><![CDATA[WordPress is a flexible and easy way to build websites (with the help of a variety of tools and plugins). One of these tools is a page builder, which lets users create and change the pages of their website without having to know a lot about coding.]]></description>
										<content:encoded><![CDATA[<p><div class="et_pb_section et_pb_section_2 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_10">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_4">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" src="https://www.siteschema.com/wp-content/uploads/2022/12/working-dashboard.svg" alt="Why custom WordPress Development?" title="working-dashboard" class="wp-image-1968" /></span>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_11">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_center et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h1 class="entry-title">Top 3 Page Builders for your WordPress website</h1></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2><strong>WordPress</strong> is a popular content management system that is used by millions of websites all over the world. One reason it&#8217;s so popular is that it&#8217;s flexible and easy to change and build websites with the help of a variety of tools and plugins. One of these tools is a <strong>page builder</strong>, which lets users create and change the pages of their website without having to know a lot about coding.</h2>
<h2></h2></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_12">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>There are a lot of page builders for WordPress, and each one has its own features and functions. <strong>Divi</strong>, <strong>Beaver Builder</strong>, and <strong>Elementor</strong> are three of the best page builders you can use with <strong>WordPress</strong>.</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_5">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" width="3360" height="1932" src="https://www.siteschema.com/wp-content/uploads/2022/12/SCR-20221211-l42.jpg" alt="Divi Page Builder" title="Divi Page Builder" srcset="https://www.siteschema.com/wp-content/uploads/2022/12/SCR-20221211-l42.jpg 3360w, https://www.siteschema.com/wp-content/uploads/2022/12/SCR-20221211-l42-1280x736.jpg 1280w, https://www.siteschema.com/wp-content/uploads/2022/12/SCR-20221211-l42-980x564.jpg 980w, https://www.siteschema.com/wp-content/uploads/2022/12/SCR-20221211-l42-480x276.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 3360px, 100vw" class="wp-image-2299" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h3>1. Divi</h3>
<p><a href="https://www.elegantthemes.com/gallery/divi/"><strong>Divi</strong></a> is a well-known <strong>WordPress</strong> page builder. It is known for having a large number of design features and options that make it easy for users to make pages that are both complex and beautiful. It has a drag-and-drop editor that lets users easily create and customise their pages. This makes it easy for even beginners to make pages that look beautiful and professional. <strong>Divi</strong> also has <a href="https://www.elegantthemes.com/layouts/"><strong>a large number of layouts (templates)</strong></a> and <a href="https://www.elegantthemes.com/modules/"><strong>modules</strong></a> that have already been made and can be easily changed to fit the look and feel of your website.</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_6">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" width="3360" height="1942" src="https://www.siteschema.com/wp-content/uploads/2022/12/SCR-20221211-l3t.png" alt="Beaver Builder Page Builder" title="Beaver Builder Page Builder" srcset="https://www.siteschema.com/wp-content/uploads/2022/12/SCR-20221211-l3t.png 3360w, https://www.siteschema.com/wp-content/uploads/2022/12/SCR-20221211-l3t-1280x740.png 1280w, https://www.siteschema.com/wp-content/uploads/2022/12/SCR-20221211-l3t-980x566.png 980w, https://www.siteschema.com/wp-content/uploads/2022/12/SCR-20221211-l3t-480x277.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 3360px, 100vw" class="wp-image-2300" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h3>2. Beaver Builder</h3>
<p><a href="https://www.wpbeaverbuilder.com/"><strong>Beaver Builder</strong></a> is a well-known page builder that is known for its powerful features and easy-to-use interface. <strong>Beaver Builder</strong>, like <strong>Divi</strong>, has a drag-and-drop editor and <a href="https://www.wpbeaverbuilder.com/wordpress-templates/"><strong>a large number of templates</strong></a> and <a href="https://www.wpbeaverbuilder.com/beaver-builder-modules-guide/"><strong>modules</strong></a> that can be easily changed to fit the design of your website.</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_7">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" width="3360" height="1942" src="https://www.siteschema.com/wp-content/uploads/2022/12/SCR-20221211-l2t.png" alt="Elementor Page Builder" title="Elementor Page Builder" srcset="https://www.siteschema.com/wp-content/uploads/2022/12/SCR-20221211-l2t.png 3360w, https://www.siteschema.com/wp-content/uploads/2022/12/SCR-20221211-l2t-1280x740.png 1280w, https://www.siteschema.com/wp-content/uploads/2022/12/SCR-20221211-l2t-980x566.png 980w, https://www.siteschema.com/wp-content/uploads/2022/12/SCR-20221211-l2t-480x277.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 3360px, 100vw" class="wp-image-2298" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h3>3. Elementor</h3>
<p><a href="https://elementor.com/"><strong>Elementor</strong></a> is another powerful WordPress page builder that is known for how fast and well it works. It has many features and design options that make it easy to make pages that look professional without knowing how to code. <strong>Elementor</strong> also has <a href="https://elementor.com/library/"><strong>a number of templates</strong></a> and <a href="https://elementor.com/widgets/"><strong>widgets</strong></a> that are already made and can be easily changed to fit the design of your website.</p></div>
			</div><div class="et_pb_module et_pb_cta_1 et_pb_promo  et_pb_text_align_center et_pb_bg_layout_dark">
				
				
				
				
				<div class="et_pb_promo_description"><h2 class="et_pb_module_header">Site Schema chooses Divi</h2><div><p>Sites hosted with Site Schema are installed with Divi, the best page builder on the market today,  making your life easier.</p></div></div>
				<div class="et_pb_button_wrapper"><a class="et_pb_button et_pb_promo_button" href="/services/wordpress-hosting/">Learn More</a></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p><strong>Divi</strong>, <strong>Beaver Builder</strong>, and <strong>Elementor</strong> are three of the best page builders for WordPress. Each of these page builders has an easy-to-use interface and a lot of features and design options that make it easy to make pages for your WordPress site that look beautiful and professional.</p></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_13">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_divider et_pb_divider_2 et_pb_divider_position_ et_pb_space"><div class="et_pb_divider_internal"></div></div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_14">
				<div class="et_pb_column et_pb_column_1_2 et_pb_column_16  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_text_align_center-tablet et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h1>Need help choosing a Page Builder?</h1>
<h2>We&#8217;re here for you</h2>
<div class="ss-header-body">
<div class="ss-description">
<p>We love solving complex problems and want to help you solve yours. We’ll take care of the heavy lifting so that you can focus on your audience.</p>
<p>&nbsp;</p>
</div>
</div>
<div class="ss-header-footer">
<div class="ss-button"></div>
</div></div>
			</div><div class="et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_left et_pb_button_alignment_tablet_center et_pb_button_alignment_phone_center et_pb_module ">
				<a class="et_pb_button et_pb_button_2 et_pb_bg_layout_dark" href="/contact-us/" data-icon="5">Let&#039;s Talk</a>
			</div>
			</div><div class="et_pb_column et_pb_column_1_2 et_pb_column_17  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_8">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" src="https://www.siteschema.com/wp-content/uploads/2022/12/man-working-with-analytics-on-computer.svg" alt="Real-time application performance monitoring" title="man-working-with-analytics-on-computer" class="wp-image-1807" /></span>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Five Best Caching Plugins to Speed up WordPress</title>
		<link>https://www.siteschema.com/resources/performance/five-best-caching-plugins-to-speed-up-wordpress/</link>
		
		<dc:creator><![CDATA[Site Schema Team]]></dc:creator>
		<pubDate>Sun, 11 Dec 2022 15:23:30 +0000</pubDate>
				<category><![CDATA[Performance]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://www.siteschema.com/?p=2289</guid>

					<description><![CDATA[If you want your WordPress website to load faster and perform better, a caching plugin is a must-have. Caching allows your website to save frequently accessed data in a temporary storage, so that it can be quickly accessed the next time it’s needed.]]></description>
										<content:encoded><![CDATA[<p><div class="et_pb_section et_pb_section_3 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_15">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_18  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_9">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" src="https://www.siteschema.com/wp-content/uploads/2022/12/dazzle-team-celebrating-success-of-a-work-project.svg" alt="TeaTeam celebrating success" title="team-celebrating-success-of-a-work-project" class="wp-image-2257" /></span>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_16">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_19  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_center et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h1 class="entry-title">5 Best Caching Plugins to Speed up your WordPress website</h1></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_22  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2>If you want your <strong>WordPress</strong> website to load faster and perform better, a caching plugin is a must-have. Caching allows your website to save frequently accessed data in a temporary storage, so that it can be quickly accessed the next time it’s needed.</h2>
<h2></h2></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_17">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_20  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_23  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>There are <a href="https://wordpress.org/plugins/search/caching/"><strong>a lot of caching plugins for WordPress</strong></a>, and it can be hard to choose the right one. In this article, we list the five best caching plugins for WordPress based on their features, how well they work, and how well users rate them.</p>
<h3>1. WP Rocket</h3>
<p><a href="https://wp-rocket.me/"><strong>WP Rocket</strong></a> is one of the most well-known and highly rated plugins for WordPress that helps you cache pages. It has a lot of features, such as caching pages, optimizing databases, lazy loading, and making CSS, JavaScript, and HTML files smaller. It is also easy to use and comes with clear instructions on how to set it up and use it.</p>
<p>&nbsp;</p>
<h3>2. W3 Total Cache</h3>
<p><a href="https://www.boldgrid.com/w3-total-cache/"><strong>W3 Total Cache</strong></a> is another popular caching plugin that offers a wide range of features, including page caching, database optimisation, minification, and support for CDN integration. It also comes with a performance analytics tool that lets you keep an eye on how your website is doing.</p>
<p>&nbsp;</p>
<h3>3. Cache Enabler</h3>
<p><a href="https://wordpress.org/plugins/cache-enabler/"><strong>Cache Enabler</strong></a> is a small plugin for caching that is easy to install and use. It offers basic caching features, including page caching, minification, and support for CDN integration. It also has a built-in cache-clearing feature, which allows you to easily clear the cache when needed.</p>
<p>&nbsp;</p>
<h3>4. Autoptimize</h3>
<p><a href="https://wordpress.org/plugins/autoptimize/"><strong>Autoptimize</strong></a> is a popular caching plugin with many features, such as page caching, minification, and CDN integration support. It also comes with an analytics tool that lets you keep track of how well your website is doing.</p>
<p>&nbsp;</p>
<h3>5. WP Fastest Cache</h3>
<p><a href="https://wordpress.org/plugins/wp-fastest-cache/"><strong>WP Fastest Cache</strong></a> is a simple and easy-to-use caching plugin that offers basic caching features, including page caching, minification, and support for CDN integration. It also comes with a cache-clearing feature that makes it easy to clear the cache when you need to.</p>
<p>&nbsp;</p></div>
			</div><div class="et_pb_module et_pb_cta_2 et_pb_promo  et_pb_text_align_center et_pb_bg_layout_dark">
				
				
				
				
				<div class="et_pb_promo_description"><h2 class="et_pb_module_header">Site Schema has caching solved</h2><div><p>Sites hosted with Site Schema enjoy the benefit of page and object caching at the server level so no plugins are needed. We also ensure that all fonts, styling and scripts are optimised and served from our CDNs to ensure that page speed is never an issue</p></div></div>
				<div class="et_pb_button_wrapper"><a class="et_pb_button et_pb_promo_button" href="/services/wordpress-hosting/">Learn More</a></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_24  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>In conclusion, the best caching plugin for your <strong>WordPress</strong> site will depend on your needs and preferences. However, the five plugins mentioned in this article are among the best and most popular options available. Each of them offers a range of features and is highly rated by users, so you can choose the one that best suits your needs.</p></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_18">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_21  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_divider et_pb_divider_3 et_pb_divider_position_ et_pb_space"><div class="et_pb_divider_internal"></div></div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_19">
				<div class="et_pb_column et_pb_column_1_2 et_pb_column_22  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_25  et_pb_text_align_left et_pb_text_align_center-tablet et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h1>Need help with a High TTFB?</h1>
<h2>We&#8217;re here for you</h2>
<div class="ss-header-body">
<div class="ss-description">
<p>We love solving complex problems and want to help you solve yours. We’ll take care of the heavy lifting so that you can focus on your audience.</p>
<p>&nbsp;</p>
</div>
</div>
<div class="ss-header-footer">
<div class="ss-button"></div>
</div></div>
			</div><div class="et_pb_button_module_wrapper et_pb_button_3_wrapper et_pb_button_alignment_left et_pb_button_alignment_tablet_center et_pb_button_alignment_phone_center et_pb_module ">
				<a class="et_pb_button et_pb_button_3 et_pb_bg_layout_dark" href="/contact-us/" data-icon="5">Let&#039;s Talk</a>
			</div>
			</div><div class="et_pb_column et_pb_column_1_2 et_pb_column_23  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_10">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" src="https://www.siteschema.com/wp-content/uploads/2022/12/man-working-with-analytics-on-computer.svg" alt="Real-time application performance monitoring" title="man-working-with-analytics-on-computer" class="wp-image-1807" /></span>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Simple steps to debug your WordPress website</title>
		<link>https://www.siteschema.com/resources/performance/how-to-enable-debugging-in-wordpress/</link>
		
		<dc:creator><![CDATA[Site Schema Team]]></dc:creator>
		<pubDate>Sun, 11 Dec 2022 13:56:49 +0000</pubDate>
				<category><![CDATA[Performance]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://www.siteschema.com/?p=2274</guid>

					<description><![CDATA[Debugging WordPress can be frustrating, however, with the right tools and knowledge, it is possible to troubleshoot and fix common WordPress errors quickly]]></description>
										<content:encoded><![CDATA[<p><div class="et_pb_section et_pb_section_4 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_20">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_24  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_11">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" src="https://www.siteschema.com/wp-content/uploads/2022/12/man-doing-cleaning-service.svg" alt="WordPress Clean Up &amp; Optimization" title="man-doing-cleaning-service" class="wp-image-1982" /></span>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_21">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_25  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_26  et_pb_text_align_center et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h1 class="entry-title">Simple steps to debug your WordPress website</h1></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_27  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2><span>Debugging <strong>WordPress</strong> can be a frustrating experience for many website owners and developers. However, with the right tools and knowledge, it is possible to troubleshoot and fix common <strong>WordPress</strong> errors quickly and efficiently.</span></h2></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_22">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_26  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_28  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h3>Enable Debugging Mode</h3>
<p>One of the first steps in debugging <strong>WordPress</strong> is to <strong>enable debugging mode</strong>. This can be done by adding the following line of code to your <code>wp-config.php</code> file:</p></div>
			</div><div class="et_pb_with_border et_pb_module et_pb_text et_pb_text_29  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p><code>define( 'WP_DEBUG', true );</code></p></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_30  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>This will enable <strong>WordPress</strong> to display any <strong>PHP errors or warnings</strong> on the screen, which can be helpful in identifying the cause of the issue. It is important to note that this should only be done on a development or staging site, as displaying errors on a live site can be a security risk.</p>
<p>If your site is live and you do not want your <strong>PHP errors or warning</strong> to display on the screen, you can add the following additional lines of code to your <code>wp-config.php</code>.</p></div>
			</div><div class="et_pb_with_border et_pb_module et_pb_text et_pb_text_31  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p><code>define(' WP_DEBUG', true );</code><br /><code>define( 'WP_DEBUG_DISPLAY', false );</code><br /><code>define( 'WP_DEBUG_LOG', true );</code></p></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_32  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>These logs can be found in the <code>/wp-content/debug.log</code> file. The error logs will contain any <strong>PHP errors or warnings</strong> that have been logged by <strong>WordPress</strong>, as well as other information such as deprecated functions and plugin conflicts.</p>
<p>&nbsp;</p>
<h3>404 Errors</h3>
<p>One of the most common <strong>WordPress</strong> errors is the &#8220;<strong>404 page not found</strong>&#8221; error. This error occurs when a user tries to access a page or post that does not exist on your website. The first step in troubleshooting this error is to check the permalinks settings in your <strong>WordPress</strong> dashboard. If the permalinks are not set up correctly, it can cause this error to occur. To fix the issue, go to <strong><em>Settings &gt; Permalinks</em></strong> and select the &#8220;Post name&#8221; option. This should resolve the issue.</p>
<p>&nbsp;</p>
<h3>Query Monitor Plugin</h3>
<p>Another useful tool for debugging <strong>WordPress</strong> is the <a href="https://querymonitor.com/"><strong>Query Monitor plugin</strong></a>. This plugin provides detailed information about the <strong>WordPress</strong> database queries, hooks, and actions that are being run on a page. This can be helpful in identifying slow loading pages or database-related issues.</p>
<p>&nbsp;</p>
<h3>White Screen of Death</h3>
<p>Another common issue in <strong>WordPress</strong> is the &#8220;<strong>white screen of death</strong>&#8221; (WSOD) which is when the website is unable to load and only displays a blank white screen. This can be caused by a variety of issues, including plugin conflicts, theme errors, or <strong>exhausted PHP memory</strong>.</p>
<p>To troubleshoot the &#8220;white screen of death,&#8221; the first step is to disable all of your plugins. If the issue is resolved after disabling the plugins, you can then enable them one at a time to identify the cause of the conflict. If disabling the plugins does not resolve the issue, you may need to switch to a default <strong>WordPress</strong> theme to rule out any theme-related issues.</p>
<p>&nbsp;</p>
<h3>Support Forums</h3>
<p>If you are experiencing issues with your <strong>WordPress</strong> website, it is important to remember that you are not alone. Many <strong>WordPress</strong> users have faced similar challenges, and there are numerous resources available to help you troubleshoot your issues. One of the best places to start is the <strong><a href="https://wordpress.org/support/forums/">WordPress support forum</a></strong>, where you can ask for help from other <strong>WordPress</strong> users and experts. Additionally, there are many online tutorials and guides available that can help you troubleshoot common WordPress errors. If you still need help, you can always look to <a href="/services/wordpress-management/"><strong>professional WordPress experts who offer management and/or support</strong></a>.</p>
<p>&nbsp;</p>
<p>In conclusion, debugging <strong>WordPress</strong> can be a challenging task, but with the right knowledge and resources, it is possible to resolve most issues. By following the steps outlined above and seeking help from the <a href="https://wordpress.org/support/forums/"><strong>WordPress community</strong></a> or <a href="/services/wordpress-management/"><strong>trusted experts</strong></a> , you can troubleshoot and fix any errors you may encounter on your website.</p></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_23">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_27  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_divider et_pb_divider_4 et_pb_divider_position_ et_pb_space"><div class="et_pb_divider_internal"></div></div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_24">
				<div class="et_pb_column et_pb_column_1_2 et_pb_column_28  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_33  et_pb_text_align_left et_pb_text_align_center-tablet et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h1>Need help with debugging WordPress?</h1>
<h2>We&#8217;re here for you</h2>
<div class="ss-header-body">
<div class="ss-description">
<p>We love solving complex problems and want to help you solve yours. We’ll take care of the heavy lifting so that you can focus on your audience.</p>
<p>&nbsp;</p>
</div>
</div>
<div class="ss-header-footer">
<div class="ss-button"></div>
</div></div>
			</div><div class="et_pb_button_module_wrapper et_pb_button_4_wrapper et_pb_button_alignment_left et_pb_button_alignment_tablet_center et_pb_button_alignment_phone_center et_pb_module ">
				<a class="et_pb_button et_pb_button_4 et_pb_bg_layout_dark" href="/contact-us/" data-icon="5">Let&#039;s Talk</a>
			</div>
			</div><div class="et_pb_column et_pb_column_1_2 et_pb_column_29  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_12">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" src="https://www.siteschema.com/wp-content/uploads/2022/12/man-working-with-analytics-on-computer.svg" alt="Real-time application performance monitoring" title="man-working-with-analytics-on-computer" class="wp-image-1807" /></span>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to Check WordPress Website Performance</title>
		<link>https://www.siteschema.com/resources/performance/how-to-check-wordpress-website-performance/</link>
		
		<dc:creator><![CDATA[Site Schema Team]]></dc:creator>
		<pubDate>Sat, 10 Dec 2022 19:58:21 +0000</pubDate>
				<category><![CDATA[Performance]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://www.siteschema.com/?p=2253</guid>

					<description><![CDATA[A slow or unreliable website can make visitors unhappy and cost you business, so here's how to check &#038; improve your WordPress site’s performance on a regularly.]]></description>
										<content:encoded><![CDATA[<p><div class="et_pb_section et_pb_section_5 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_25">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_30  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_13">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" src="https://www.siteschema.com/wp-content/uploads/2022/12/dazzle-team-celebrating-success-of-a-work-project.svg" alt="TeaTeam celebrating success" title="team-celebrating-success-of-a-work-project" class="wp-image-2257" /></span>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_26">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_31  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_34  et_pb_text_align_center et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h1 class="entry-title">How to Check WordPress Website Performance</h1></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_35  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2>As a <strong>WordPress</strong> user, it&#8217;s important to check your website&#8217;s performance often to make sure it&#8217;s working well and giving users a smooth experience. A slow or unreliable website can make visitors unhappy and <strong>cost you business</strong>, so it&#8217;s important to check on and improve your site&#8217;s performance on a regular basis.</h2></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_27">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_32  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_36  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>When checking how well your WordPress site is running, there are a few important steps to take.</p>
<h3>Check Site Load</h3>
<p>First, check how quickly your site loads. A slow loading speed can be caused by many things, such as large images, too many plugins, or code that is old or doesn&#8217;t work well. Use a tool like <a href="https://pagespeed.web.dev/"><strong>Google PageSpeed Insights</strong></a> or <a href="https://tools.pingdom.com/"><strong>Pingdom</strong></a> to see how fast your site loads. These tools will give you detailed information about the things that are slowing down your page&#8217;s loading time and offer ways to fix them.</p>
<p>&nbsp;</p>
<h3>Remove Broken Links</h3>
<p>Next, check your site for any broken links or mistakes. Users can get frustrated by broken links, and they can also hurt your search engine ranking. Use a tool like the <a href="https://wordpress.org/plugins/broken-link-checker/"><strong>Broken Link Checker plugin</strong></a> for WordPress to look for broken links. This plugin will check your website for broken links and let you know about them.</p>
<p>&nbsp;</p>
<h3>Monitor your Uptime</h3>
<p>Also, keep an eye on how often your website is up. Uptime is the amount of time your website is online and available to people. If your website goes down often, it could hurt your reputation and cause you to lose customers. Use a tool like <a href="https://uptimerobot.com/"><strong>Uptime Robot</strong></a> or <a href="https://www.pingdom.com/product/uptime-monitoring"><strong>Pingdom</strong></a> to keep track of how often your website is up. These tools will let you know if your website goes offline and give you detailed reports on when it is online and when it isn&#8217;t.</p>
<p>&nbsp;</p>
<h3>Prioritize Security</h3>
<p>Lastly, check to see if there are any security holes on your website. Cybercriminals and hackers can use weaknesses in your website to get to sensitive information or stop your site from working. Use a tool like <a href="https://wpmudev.com/project/wp-defender/"><strong>WPMU DEV Defender</strong></a>, <a href="https://www.wordfence.com/"><strong>Wordfence</strong></a> or <a href="https://sucuri.net/"><strong>Sucuri</strong></a> to see if there are any security holes. These tools will check your website for security risks and let you know if there are any that need to be fixed.</p>
<p>&nbsp;</p>
<p>In conclusion, it&#8217;s important to check the performance of your <strong>WordPress</strong> site often to make sure it&#8217;s working well and giving users a good experience. You can make sure your website is running at its best by testing its loading speed, looking for broken links and errors, keeping track of its uptime, and looking for security holes.</p></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_28">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_33  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_divider et_pb_divider_5 et_pb_divider_position_ et_pb_space"><div class="et_pb_divider_internal"></div></div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_29">
				<div class="et_pb_column et_pb_column_1_2 et_pb_column_34  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_37  et_pb_text_align_left et_pb_text_align_center-tablet et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h1>Need help with WordPress Performance?</h1>
<h2>We&#8217;re here for you</h2>
<div class="ss-header-body">
<div class="ss-description">
<p>We love solving complex problems and want to help you solve yours. We’ll take care of the heavy lifting so that you can focus on your audience.</p>
<p>&nbsp;</p>
</div>
</div>
<div class="ss-header-footer">
<div class="ss-button"></div>
</div></div>
			</div><div class="et_pb_button_module_wrapper et_pb_button_5_wrapper et_pb_button_alignment_left et_pb_button_alignment_tablet_center et_pb_button_alignment_phone_center et_pb_module ">
				<a class="et_pb_button et_pb_button_5 et_pb_bg_layout_dark" href="/contact-us/" data-icon="5">Let&#039;s Talk</a>
			</div>
			</div><div class="et_pb_column et_pb_column_1_2 et_pb_column_35  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_14">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" src="https://www.siteschema.com/wp-content/uploads/2022/12/man-working-with-analytics-on-computer.svg" alt="Real-time application performance monitoring" title="man-working-with-analytics-on-computer" class="wp-image-1807" /></span>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>An Intro to &#8220;Core Web Vitals&#8221;</title>
		<link>https://www.siteschema.com/resources/core-web-vitals/an-intro-to-core-web-vitals/</link>
		
		<dc:creator><![CDATA[Site Schema Team]]></dc:creator>
		<pubDate>Sat, 10 Dec 2022 18:46:46 +0000</pubDate>
				<category><![CDATA[Core Web Vitals]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[Resources]]></category>
		<guid isPermaLink="false">https://www.siteschema.com/?p=2229</guid>

					<description><![CDATA[Core Web Vitals are a set of metrics that Google uses to measure the most important things about how a website works for its users.]]></description>
										<content:encoded><![CDATA[<p><div class="et_pb_section et_pb_section_6 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_30">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_36  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_15">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" src="https://www.siteschema.com/wp-content/uploads/2022/12/man-standing-near-board-with-graphs.svg" alt="An intro to &quot;Core Web Vitals&quot;" title="An intro to &quot;Core Web Vitals&quot;" class="wp-image-2236" /></span>
			</div><div class="et_pb_module et_pb_post_title et_pb_post_title_0 et_pb_bg_layout_light  et_pb_text_align_center"   >
				
				
				
				
				
				<div class="et_pb_title_container">
					<h1 class="entry-title">An Intro to &#8220;Core Web Vitals&#8221;</h1>
				</div>
				
			</div><div class="et_pb_module et_pb_text et_pb_text_38  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2><strong>Core Web Vitals</strong> are a set of metrics that measure the most important things about how a website works for its users. These metrics are a big part of Google&#8217;s search algorithm and are used to figure out how good a website is and where it should rank in search results.</h2></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_31">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_37  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_39  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>The three most important measurements in the <strong>Core Web Vitals</strong> metrics are the <a href="/resources/what-is-largest-contentful-paint/"><strong>Largest Contentful Paint</strong></a> (LCP), the <strong>First Input Delay</strong> (FID), and the <strong>Cumulative Layout Shift</strong> (CLS). LCP checks how long it takes for a page&#8217;s biggest piece of content to load. FID tracks how long it takes for a page to process a user&#8217;s first action on it. CLS measures how often a page&#8217;s layout changes in a way that wasn&#8217;t planned.</p>
<p>These numbers are important because they have a direct effect on how the user feels. Users will have a better time on a website with a fast LCP, low FID, and few CLS than on one with a slow LCP, high FID, and many CLS. Because of this, Google uses these measurements to figure out how good a website is.</p>
<p>Website owners can make their pages work better for these metrics to improve <strong>Core Web Vitals</strong>. This can be done by making images and other page elements smaller, reducing the number of external scripts, and using &#8220;lazy loading&#8221; to load content only when it&#8217;s needed. </p></div>
			</div><div class="et_pb_module et_pb_cta_3 et_pb_promo  et_pb_text_align_center et_pb_bg_layout_dark">
				
				
				
				
				<div class="et_pb_promo_description"><h2 class="et_pb_module_header">An Intro to Optimizing WordPress</h2><div><p><span>Simple steps you can take to optimize your WordPress website for optimal performance: good hosting provider, well-coded themes/plugins &amp; caching.</span></p></div></div>
				<div class="et_pb_button_wrapper"><a class="et_pb_button et_pb_promo_button" href="https://www.siteschema.com/resources/performance/an-intro-to-optimising-wordpress/">Click Here</a></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_40  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Also, site owners can measure and keep track of their <strong>Core Web Vitals</strong> with tools like <a href="https://pagespeed.web.dev/"><strong>PageSpeed Insights</strong></a> and <a href="https://github.com/GoogleChrome/lighthouse"><strong>Lighthouse</strong></a>. These tools give detailed information about how each metric is doing and make suggestions for how to improve.</p>
<p>In conclusion, <strong>Core Web Vitals</strong> are a big part of the user experience and Google uses them to judge how good a website is. By making their sites better for these metrics, website owners can improve their search rankings and give their visitors a better experience.</p></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_32">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_38  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_divider et_pb_divider_6 et_pb_divider_position_ et_pb_space"><div class="et_pb_divider_internal"></div></div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_33">
				<div class="et_pb_column et_pb_column_1_2 et_pb_column_39  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_41  et_pb_text_align_left et_pb_text_align_center-tablet et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h1>Need help with &#8220;Core Web Vitals?</h1>
<h2>We&#8217;re here for you</h2>
<div class="ss-header-body">
<div class="ss-description">
<p>We love solving complex problems and want to help you solve yours. We’ll take care of the heavy lifting so that you can focus on your audience.</p>
<p>&nbsp;</p>
</div>
</div>
<div class="ss-header-footer">
<div class="ss-button"></div>
</div></div>
			</div><div class="et_pb_button_module_wrapper et_pb_button_6_wrapper et_pb_button_alignment_left et_pb_button_alignment_tablet_center et_pb_button_alignment_phone_center et_pb_module ">
				<a class="et_pb_button et_pb_button_6 et_pb_bg_layout_dark" href="/contact-us/" data-icon="5">Let&#039;s Talk</a>
			</div>
			</div><div class="et_pb_column et_pb_column_1_2 et_pb_column_40  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_16">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" src="https://www.siteschema.com/wp-content/uploads/2022/12/man-working-with-analytics-on-computer.svg" alt="Real-time application performance monitoring" title="man-working-with-analytics-on-computer" class="wp-image-1807" /></span>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>An Intro to Optimising WordPress</title>
		<link>https://www.siteschema.com/resources/performance/an-intro-to-optimising-wordpress/</link>
		
		<dc:creator><![CDATA[Site Schema Team]]></dc:creator>
		<pubDate>Sat, 10 Dec 2022 17:36:13 +0000</pubDate>
				<category><![CDATA[Performance]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://www.siteschema.com/?p=2183</guid>

					<description><![CDATA[Simple steps you can take to optimise your website for optimal performance: good hosting provider,  well-coded themes/plugins &#038; caching.]]></description>
										<content:encoded><![CDATA[<p><div class="et_pb_section et_pb_section_7 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_34">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_41  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_17">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" src="https://www.siteschema.com/wp-content/uploads/2022/12/dazzle-woman-sitting-in-lotus-yoga-position.svg" alt="Optimizing WordPress" title="An Intro to Optimizing WordPress" class="wp-image-2193" /></span>
			</div><div class="et_pb_module et_pb_post_title et_pb_post_title_1 et_pb_bg_layout_light  et_pb_text_align_center"   >
				
				
				
				
				
				<div class="et_pb_title_container">
					<h1 class="entry-title">An Intro to Optimising WordPress</h1>
				</div>
				
			</div><div class="et_pb_module et_pb_text et_pb_text_42  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2>Many websites use the well-liked content management system (CMS) <strong><a href="https://www.wordpress.com" target="_blank" rel="noopener">WordPress</a></strong>. It is renowned for having an intuitive user interface and a robust ecosystem of <strong><a href="https://wordpress.org/plugins/">plugins</a></strong> that make it simple for users to include different features and functionalities into their websites. However, WordPress can be resource-intensive and slow, much like any CMS, especially on sites with a lot of content or traffic. We&#8217;ll go through some easy actions you can do in this article to optimize WordPress and enhance the functionality of your website.</h2></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_35">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_42  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_43  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Selecting a <a href="/services/wordpress-hosting" title="WordPress Hosting"><strong>reputable hosting company</strong></a> is one of the first steps you can take to optimize WordPress. WordPress-optimized servers with high traffic capacity are available from respected <strong><a href="/" title="Site Schema | Blazing-fast WordPress hosting &amp; support">hosting companies</a></strong>. Additionally, they will have strong uptime and quick reaction times, both of which are crucial for the effectiveness of your website.</p>
<p>Choosing a <strong><a href="https://wordpress.org/themes/" target="_blank" rel="noopener">WordPress theme</a></strong> that is well-coded and lightweight is an additional crucial step. There are lots of available premium and free themes, however not all of them are performance-optimized. A good theme will be both lightweight (using little code and resources) and well-coded (adhering to WordPress best practices and being error- and bug-free). Developing a <strong><a href="/services/wordpress-development/" title="Custom WordPress Development">custom WordPress themes</a></strong> for your unique needs can help ensure that your site remains blazing-fast.</p>
<p><strong>Smart page and object caching</strong> is a vital part of WordPress optimization. By storing static versions of your pages and posts in cache so they may be rapidly given to visitors without having to be produced each time they are requested, aids in the speed of your website. W3 Total Cache and WP Super Cache are just two of the many caching plugins for WordPress that are available, and they can both help your website perform better.</p>
<p>Your website can be optimized by both caching your images as well as serving them in <strong>next-gen formats</strong>. It&#8217;s crucial to compress and resize your images before posting them to your website because large and poorly optimized images can cause it to load slowly. <strong><a href="https://wpmudev.com/project/wp-smush-pro/">Smush</a></strong> is one of many WordPress plugins that can assist with image optimization.</p>
<p>Last but not least, it&#8217;s critical to <a href="/services/wordpress-management/"><strong>routinely update and maintain your WordPress site</strong></a>. This entails frequently cleaning your database and deleting any outdated or pointless data, as well as keeping your WordPress core, theme, and plugins up to date. This can help your website run more efficiently and guard against security flaws.</p>
<p>In conclusion, optimizing WordPress can help to enhance the functionality of your website and give your visitors a better experience. You can make sure that your WordPress site is operating at its peak performance by selecting a <a href="https://www.siteschema.com/"><strong>reputable hosting provider</strong></a>, employing a light and well-coded theme, adding caching, optimizing your photos, and routinely maintaining and upgrading your site.</p></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_36">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_43  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_divider et_pb_divider_7 et_pb_divider_position_ et_pb_space"><div class="et_pb_divider_internal"></div></div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_37">
				<div class="et_pb_column et_pb_column_1_2 et_pb_column_44  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_44  et_pb_text_align_left et_pb_text_align_center-tablet et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h1>Need help with optimising your WordPress Site?</h1>
<h2>We&#8217;re here for you</h2>
<div class="ss-header-body">
<div class="ss-description">
<p>We love solving complex problems and want to help you solve yours. We’ll take care of the heavy lifting so that you can focus on your audience.</p>
<p>&nbsp;</p>
</div>
</div>
<div class="ss-header-footer">
<div class="ss-button"></div>
</div></div>
			</div><div class="et_pb_button_module_wrapper et_pb_button_7_wrapper et_pb_button_alignment_left et_pb_button_alignment_tablet_center et_pb_button_alignment_phone_center et_pb_module ">
				<a class="et_pb_button et_pb_button_7 et_pb_bg_layout_dark" href="/contact-us/" data-icon="5">Let&#039;s Talk</a>
			</div>
			</div><div class="et_pb_column et_pb_column_1_2 et_pb_column_45  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_18">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" src="https://www.siteschema.com/wp-content/uploads/2022/12/man-working-with-analytics-on-computer.svg" alt="Real-time application performance monitoring" title="man-working-with-analytics-on-computer" class="wp-image-1807" /></span>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>What is &#8220;Time to First Byte&#8221; &#038; Why is it Important</title>
		<link>https://www.siteschema.com/resources/core-web-vitals/what-is-time-to-first-byte-why-is-it-important/</link>
		
		<dc:creator><![CDATA[Site Schema Team]]></dc:creator>
		<pubDate>Sun, 17 Oct 2021 17:33:04 +0000</pubDate>
				<category><![CDATA[Core Web Vitals]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[Resources]]></category>
		<guid isPermaLink="false">https://www.siteschema.com/?p=596</guid>

					<description><![CDATA[Time to First Byte is used as to indicate a website's responsiveness. It measures the time between creating a connection &#038; downloading the contents of a page]]></description>
										<content:encoded><![CDATA[<p><div class="et_pb_section et_pb_section_8 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_38">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_46  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_19">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" src="https://www.siteschema.com/wp-content/uploads/2021/10/time-management.svg" alt="What is &quot;Time to First Byte&quot;" title="What is &quot;Time to First Byte&quot;" class="wp-image-2249" /></span>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_39">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_47  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_45  et_pb_text_align_center et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h1 class="entry-title">What is “Time to First Byte” &amp; Why is it Important</h1></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_46  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2><strong>Time to First Byte</strong> (TTFB) is a <a href="https://www.siteschema.com/resources/an-intro-to-core-web-vitals/"><strong>Core Web Vitals</strong></a> measurement used as to indicate a website&#8217;s responsiveness. It measures the amount of time between creating a connection to the server and downloading the contents of a web page. The metric is the sum of “Redirect Duration” + “Connection Duration” + “Backend Duration” and it a key indicators of web performance.</h2></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_40">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_48  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_47  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p><strong>A website with a high TTFB can frustrate its visitors, and can lead to:</strong></p>
<ol>
<li>Your visitors may abandon your website and visit your competitor’s site</li>
<li>Your Search Engine Results Page (SERP) rank can suffer</li>
</ol>
<p>&nbsp;</p>
<h3>What Is Considered A Good &#8220;Time To First Byte&#8221;?</h3>
<p>According to <a rel="noreferrer noopener" href="https://developers.google.com/speed/docs/insights/Server#overview" target="_blank">Google</a>, your website’s TTFB should be 200 milliseconds or less. If your site is much slower than that, such as 500 milliseconds or more, it needs some work.</p></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_41 et_pb_equal_columns et_pb_gutters1">
				<div class="et_pb_column et_pb_column_1_3 et_pb_column_49  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_48  et_pb_text_align_center et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2>Good</h2></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_49  et_pb_text_align_center et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2 style="padding:0; margin:0;">&lt;100</h2>
<h3 style="padding:0; margin:0;">milliseconds</h3></div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_3 et_pb_column_50  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_50  et_pb_text_align_center et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2>Average</h2></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_51  et_pb_text_align_center et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2 style="padding: 0; margin: 0;">100 to 500</h2>
<h3 style="padding: 0; margin: 0;">milliseconds</h3></div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_3 et_pb_column_51  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_52  et_pb_text_align_center et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2>Poor</h2></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_53  et_pb_text_align_center et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2 style="padding: 0; margin: 0;">&gt;500</h2>
<h3 style="padding: 0; margin: 0;">milliseconds</h3></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_42">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_52  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_divider et_pb_divider_8 et_pb_divider_position_ et_pb_space"><div class="et_pb_divider_internal"></div></div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_43">
				<div class="et_pb_column et_pb_column_1_2 et_pb_column_53  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_54  et_pb_text_align_left et_pb_text_align_center-tablet et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h1>Need help with a High TTFB?</h1>
<h2>We&#8217;re here for you</h2>
<div class="ss-header-body">
<div class="ss-description">
<p>We love solving complex problems and want to help you solve yours. We’ll take care of the heavy lifting so that you can focus on your audience.</p>
<p>&nbsp;</p>
</div>
</div>
<div class="ss-header-footer">
<div class="ss-button"></div>
</div></div>
			</div><div class="et_pb_button_module_wrapper et_pb_button_8_wrapper et_pb_button_alignment_left et_pb_button_alignment_tablet_center et_pb_button_alignment_phone_center et_pb_module ">
				<a class="et_pb_button et_pb_button_8 et_pb_bg_layout_dark" href="/contact-us/" data-icon="5">Let&#039;s Talk</a>
			</div>
			</div><div class="et_pb_column et_pb_column_1_2 et_pb_column_54  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_20">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" src="https://www.siteschema.com/wp-content/uploads/2022/12/man-working-with-analytics-on-computer.svg" alt="Real-time application performance monitoring" title="man-working-with-analytics-on-computer" class="wp-image-1807" /></span>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>What is &#8220;Bounce Rate&#8221; and Why is it Important?</title>
		<link>https://www.siteschema.com/resources/performance/what-is-bounce-rate-and-why-is-it-important/</link>
		
		<dc:creator><![CDATA[Site Schema Team]]></dc:creator>
		<pubDate>Sun, 17 Oct 2021 13:00:50 +0000</pubDate>
				<category><![CDATA[Performance]]></category>
		<category><![CDATA[Resources]]></category>
		<guid isPermaLink="false">https://www.siteschema.com/?p=574</guid>

					<description><![CDATA[Bounce Rate is a single-page session on your site. It's calculated when someone visits a single page on your website &#038; leaves without any other interaction. Learn more.]]></description>
										<content:encoded><![CDATA[<p><div class="et_pb_section et_pb_section_9 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_44">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_55  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_21">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" src="https://www.siteschema.com/wp-content/uploads/2021/10/man-on-bike-leaving.svg" alt="What is &quot;Bounce Rate&quot; in Analytics" title="man-on-bike-leaving" class="wp-image-2246" /></span>
			</div><div class="et_pb_module et_pb_post_title et_pb_post_title_2 et_pb_bg_layout_light  et_pb_text_align_center"   >
				
				
				
				
				
				<div class="et_pb_title_container">
					<h1 class="entry-title">What is &#8220;Bounce Rate&#8221; and Why is it Important?</h1>
				</div>
				
			</div><div class="et_pb_module et_pb_text et_pb_text_55  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2><strong>Bounce Rate</strong><span> is a single-page session on your site. It is calculated when someone visits a single page on your website and does not engage with anything — not links, navigation, contact forms, nor call-to-actions — before leaving. This performance metric may indicate that a page’s content is irrelevant, confusing, or not directly of interest to your site visitors. </span></h2></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_45">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_56  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_56  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>A high bounce rate on your home page, could be alarming as that means user’s are viewing that page alone, and not engaging with your website’s content or user experience. While there are single-page websites where this could be expected, most websites should view a high rate as problematic.</p>
<p>So, what is a good bounce rate? Generally, a bounce rate of 55% to 70% is high. An average bounce rate is between 40% and 55%. And an optimal bounce rate would be between 25% to 40%.</p></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_57  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_46 et_pb_equal_columns et_pb_gutters1">
				<div class="et_pb_column et_pb_column_1_3 et_pb_column_57  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_58  et_pb_text_align_center et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2>Good</h2></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_59  et_pb_text_align_center et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2 style="padding: 0; margin: 0;">25 &#8211; 50%</h2>
<h3 style="padding: 0; margin: 0;">Bounce Rate</h3></div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_3 et_pb_column_58  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_60  et_pb_text_align_center et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2>Average</h2></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_61  et_pb_text_align_center et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2 style="padding: 0; margin: 0;">40 &#8211; 55%</h2>
<h3 style="padding: 0; margin: 0;">Bounce Rate</h3></div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_3 et_pb_column_59  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_62  et_pb_text_align_center et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2>Poor</h2></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_63  et_pb_text_align_center et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2 style="padding: 0; margin: 0;">55 &#8211; 70%</h2>
<h3 style="padding: 0; margin: 0;">Bounce Rate</h3></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_47">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_60  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_64  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2 id="header3">Bounce Rate vs. Exit Rate</h2>
<p>Another term that is often confused with<span> </span><strong>Bounce Rate</strong><span> </span>is<span> </span><strong>Exit Rate</strong><span> </span>(as the two metrics are somewhat similar). Bounce rate is the number of single-page sessions a webpage has while the exit rate is the percentage of users leaving your website from a specific page.</p>
<p><strong>Here’s an example:</strong></p>
<ol>
<li>A person lands on your home page</li>
<li>They then go to any other page on your website</li>
<li>Then they either quit their browser – OR – jump to another site</li>
</ol>
<p>…that’s considered an exit. Because they visited multiple pages (not a single-page session), this can’t be considered a bounce.</p>
<p>In terms of analysis, a high exit rate<span> </span><strong><em>could</em></strong><span> </span>indicate that you’re having problems with your conversions – getting a user to tackle a specific action (i.e.: complete a form, purchase a product, register for an event). While the person has shown interest in your site, they may not have found what they were looking for and left find the answer they’re looking for.</p></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_48">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_61  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_divider et_pb_divider_9 et_pb_divider_position_ et_pb_space"><div class="et_pb_divider_internal"></div></div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_49">
				<div class="et_pb_column et_pb_column_1_2 et_pb_column_62  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_65  et_pb_text_align_left et_pb_text_align_center-tablet et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h1>Need help with a High Bounce Rate?</h1>
<h2>We&#8217;re here for you</h2>
<div class="ss-header-body">
<div class="ss-description">
<p>We love solving complex problems and want to help you solve yours. We’ll take care of the heavy lifting so that you can focus on your audience.</p>
<p>&nbsp;</p>
</div>
</div>
<div class="ss-header-footer">
<div class="ss-button"></div>
</div></div>
			</div><div class="et_pb_button_module_wrapper et_pb_button_9_wrapper et_pb_button_alignment_left et_pb_button_alignment_tablet_center et_pb_button_alignment_phone_center et_pb_module ">
				<a class="et_pb_button et_pb_button_9 et_pb_bg_layout_dark" href="/contact-us/" data-icon="5">Let&#039;s Talk</a>
			</div>
			</div><div class="et_pb_column et_pb_column_1_2 et_pb_column_63  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_22">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" src="https://www.siteschema.com/wp-content/uploads/2022/12/man-working-with-analytics-on-computer.svg" alt="Real-time application performance monitoring" title="man-working-with-analytics-on-computer" class="wp-image-1807" /></span>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div></p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
