{"id":144075,"date":"2019-09-16T15:00:00","date_gmt":"2019-09-16T14:00:00","guid":{"rendered":"https:\/\/www.smartinsights.com\/?p=144075"},"modified":"2019-09-16T14:34:42","modified_gmt":"2019-09-16T13:34:42","slug":"biggest-wordpress-mistakes-that-every-webmaster-should-avoid","status":"publish","type":"post","link":"https:\/\/www.smartinsights.com\/conversion-optimisation\/biggest-wordpress-mistakes-that-every-webmaster-should-avoid\/","title":{"rendered":"Biggest WordPress mistakes that every webmaster should avoid"},"content":{"rendered":"<h2>While WordPress makes it easy to create a blog or website for everyone for free, it\u2019s not always that easy and often webmasters end up making several mistakes<\/h2>\n<p>WordPress is one of the most trusted platforms for creating a website. Many people prefer this CMS when it comes to creating different types of websites, whether it's a blog, Q&amp;A website, portfolio website, or an e-commerce website. WordPress offers good features for building and customizing websites, making it an easy-to-use option.<\/p>\n<p>While WordPress makes it easy to create a blog or website for everyone for free, it\u2019s not always that easy and often webmasters end up making several mistakes. Due to these WordPress website mistakes, you can fail to get the desired results with your site. Even savvy WordPress users, who have been using it for years can make mistakes.<\/p>\n<div class='postauthor si-guide-block'>\n                <div class='col-md-2 col-sm-12 si-icon-holder'>\n                    <a target='_blank' href=''>\n                  <img src='' alt=''>\n                    <\/a>\n                <\/div>\n                <div class='col-md-10 col-sm-12'>\n                    <p><strong>\u201cAccess<\/strong><\/p>\n                    <p>The following Quick Win is for everyone wanting to boost their online presence and improve results from their content marketing strategy.<\/p>\n                    <p>Access the <a target='_blank' href=''><\/a><\/p>\n                <\/div>\n            <\/div>\n<p>Whether you hire a WordPress developer to build your site or create a site yourself, there are some big WordPress mistakes you need to avoid to get the best out of your site. Let\u2019s take a look at the big mistakes that most webmasters make and how to fix them.<\/p>\n<h3>Not changing the database prefix<\/h3>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-large wp-image-144076\" src=\"https:\/\/www.smartinsights.com\/wp-content\/uploads\/2019\/09\/Changing-database-prefix-700x543.png\" alt=\"Changing database prefix\" width=\"640\" height=\"496\" \/><\/p>\n<p>Being a popular content management system software, WordPress is the prime target for many spammers and hackers. The database of your site is very important as it comprises your site\u2019s data like posts, theme and plugin settings, options and more. By default, when you install WordPress, the table names in the database are prefixed with \u2018wp_\u2019, which means you have table names like \u2018wp_users\u2019, \u2018wp_posts\u2019, \u2018wp_links\u2019, \u2018wp_comments\u2019 etc.<\/p>\n<p>The prefix is a default name, which everyone knows and this puts your database at risk. For example, automated scripts target WordPress databases using these default table names. It makes it easier for hackers to attack a database. You can protect your database by changing the prefix, follow below steps.<\/p>\n<p><em><strong>Note:<\/strong> You should always make a complete backup of your site before making any database changes.<\/em><\/p>\n<ul>\n<li>Login to cPanel then go to file manager.<\/li>\n<li>Click File Manager to enter the WordPress directory.<\/li>\n<li>Now click on public_html then find wp-config.php right click it and choose Edit from the options. You will see a pop-up window again click Edit.<\/li>\n<li>Search for line:<\/li>\n<\/ul>\n<p>$table_prefix = \u2018wp_\u2019;<\/p>\n<ul>\n<li>Change the \u2018wp_\u2019 prefix with your own choice.<\/li>\n<li>Now click phpMyAdmin from your cPanel.<\/li>\n<li>Click SQL.<\/li>\n<li>Now write command for all tables like:<\/li>\n<\/ul>\n<p>RENAME table`wp_comments`TO`test_comments`;<\/p>\n<ul>\n<li>Once you execute the queries for all tables their prefix will be changed.<\/li>\n<\/ul>\n<p>You should also change the prefix for tables created by third-party plugins.<\/p>\n<h3>Customizing parent theme instead of the child theme<\/h3>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-large wp-image-144077\" src=\"https:\/\/www.smartinsights.com\/wp-content\/uploads\/2019\/09\/Customizing-Wordpress-themes-700x426.png\" alt=\"Customizing WordPress themes\" width=\"640\" height=\"389\" \/><\/p>\n<p>You have found the right theme for your website and after some customization, you integrate it into your site. But when you update your theme, all the customization you make are lost. Therefore, you should use a child theme instead and customize it to ensure that your customization isn\u2019t lost after an update.<\/p>\n<p>A child theme is put in a separate folder than its parent theme. Plus, it also includes its own \u2018style.css\u2019 and \u2018functions.php\u2019 files. You can modify layout and styling parameters, coding and scripts and other aspects of the theme using the relevant .php and .css files. After using a child theme when someone visits your site, the child theme is loaded first then the missing functions and styles are loaded from the parent theme.<\/p>\n<h3>Not turning off debug mode<\/h3>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-large wp-image-144078\" src=\"https:\/\/www.smartinsights.com\/wp-content\/uploads\/2019\/09\/Wordpress-debug-mode-700x444.png\" alt=\"Wordpress debug mode\" width=\"640\" height=\"406\" \/><\/p>\n<p>Debug mode allows a developer to examine PHP warnings, errors and notices, which are raised when something goes wrong. They are very useful for debugging PHP code. While it is quite beneficial for a developer for debugging purposes, it shouldn\u2019t be visible publicly as it may reveal scripts and private paths that should be hidden from the public. You can turn the debugging off by editing the wp-config.php file.<\/p>\n<p>First, you need to open the wp-config.php file then look for the line:<\/p>\n<p>define(\u2018WP_DEBUG\u2019, true);<\/p>\n<p>Set the following lines of code instead of the above code:<\/p>\n<p>ini_set('display_errors','Off');<\/p>\n<p>ini_set('error_reporting', E_ALL );<\/p>\n<p>define('WP_DEBUG', false);<\/p>\n<p>define('WP_DEBUG_DISPLAY', false);<\/p>\n<p>After this, save the changes and upload the file on the server. You should now check that no errors, notices or warnings will appear on your site. This is an essential step to ensure that your site is secure and looks more professional.<\/p>\n<h3>Blocked search engine indexing<\/h3>\n<p>If your website isn\u2019t indexed on search engines it won\u2019t show up in the search results, which means it won\u2019t be visible online. Essentially, your site won't exist on the internet. Therefore, when you install WordPress, by default the site is allowed to be indexed on search engines.<\/p>\n<p>However, often developers disable the feature to stop half-finished pages from being displayed in the search engine results pages. But, if this feature is still disabled after the work is over, the problem will arise. If you find that your website pages are not appearing on Google despite good SEO practices then check whether search engine indexing is disabled on your site.<\/p>\n<h3>Not turning off directory browsing<\/h3>\n<p>Directory browsing enables a person to browse the folder and its content that is present in your website root directory. If you don\u2019t disable directory browsing, it can be used by a hacker to find vulnerabilities in your website and server. This will put your website at risk. In order to ensure the safety of your website, you must make sure to disable directory browsing.<\/p>\n<p>Below is the process to disable directory browsing:<\/p>\n<p>You can disable directory browsing with a single line of code. For this first go to the .htaccess file located in the root directory of your site using FTP client or any other browsing tool. If you don\u2019t find the file then ensure that your FTP client is set to show hidden files. Download and edit this file using any editor like Notepad. At the bottom of the file simply add:<\/p>\n<p>Options -Indexes<\/p>\n<p>Then save the .htaccess file and upload on the server. That\u2019s it!<\/p>\n<h3>Not using CDN<\/h3>\n<p>Performance is the most important factor in today\u2019s web browsing environment. No one likes a website that takes too much time to load and often first-time WordPress users complain about their website speed.<\/p>\n<p>One of the best ways to improve the speed of your site is by using content delivery network (CDN). The speed of a website has a direct impact on the user experience CDN speeds up the delivery of content to your users, which enhances the overall user experience. Adding CDN to your website can make it a lot faster, reducing the risk of users bouncing. This is great method to boost the speed of your website, which is loaded quickly in any part of the world.<\/p>\n<p>Under this, the static part of your site is stored on a network of servers, which is globally distributed. With this, a visitor can access your website very quickly from any part of the world. It reduces page load time to a significant extent.<\/p>\n<h3>Not changing the default favicon<\/h3>\n<p>Favicon short for favourite icon is a small icon that appears on the left of website title in a browser. It is also displayed in the address bar in some browsers and in bookmarks next to a site\u2019s name. Favicon is like an identity card for your business, which should show your brand. It adds an additional branding element, which allows the users to recognize your website. If you ignore favicon a default icon is displayed provided by WordPress, web hosting, or the theme you use.<\/p>\n<p>If you are wondering how to add the favicon for your WordPress site, then below are some simple steps to do this:<\/p>\n<p>With the release of WordPress 4.3, now users don\u2019t need to create a favicon explicitly, they can use WordPress customize options to create and add favicons.<\/p>\n<p><strong>Requirements:<\/strong> You can use popular image files like jpg, png, gif etc. Four different sizes of images are needed to display the icon on different platforms. But with WordPress, you only need an image at least 512x512 px and the four sizes are created by WP customizer.<\/p>\n<ul>\n<li>From your WordPress dashboard go to Appearance &gt; Customize.<\/li>\n<li>From Customize screen, choose Side Identity where you will get Set Icon option.<\/li>\n<li>Choose Set Icon and choose an image from the media library or upload a new one.<\/li>\n<li>You will be needed to crop the image after this WordPress will generate the required image sizes need for different platforms as follows.<\/li>\n<\/ul>\n<p>Browser favicon: 32x32px<\/p>\n<p>iOS app icon: 180x180px<\/p>\n<p>Android\/Chrome app icon: 192x192px<\/p>\n<p>For Windows desktop: 270x270px (medium-sized tiles)<\/p>\n<h3>Ignore WordPress updates<\/h3>\n<p>Many beginners and even experienced WordPress users do not install updates when they are available for the platform. Many users think that the update may cause errors or break their website. But, that is a misconception and you can update your website safely without any difficulty or breaking your site.<\/p>\n<p>In fact, if you don\u2019t update the site, you leave it vulnerable to security breaches due to outdated software. Besides WordPress, you may also get updates for your website themes and plugins, which come with improvements, bug fixes, new features and security patches.<\/p>\n<h3>Not setting permalink<\/h3>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-large wp-image-144079\" src=\"https:\/\/www.smartinsights.com\/wp-content\/uploads\/2019\/09\/Wordpress-permalink-settings-700x491.png\" alt=\"Wordpress permalink settings\" width=\"640\" height=\"449\" \/><\/p>\n<p>It is very important to choose the right URL structure or permalink, which is the permanent link of various pages on your site. It is important from both the user and SEO perspective. By default, WordPress shows a plain URL, which looks something like \u201chttps:\/\/www.your-site.com\/?p=102\u201d. As you can see this type of URL is not user-friendly which doesn\u2019t reveal much about the page.<\/p>\n<p>Choose a URL like \u201chttps:\/\/www.your-site.com\/category\/post-name\u201d<\/p>\n<p>or<\/p>\n<p>\u201chttps:\/\/www.your-site.com\/01\/08\/2019\/post-name\u201d<\/p>\n<p>or<\/p>\n<p>\u201chttps:\/\/your-site.com\/post-name\u201d<\/p>\n<p>The last one is the best option and is widely used by websites. It provides a hint about the page and is also SEO-friendly. To change the URL structure, simply go to Settings &gt;&gt; Permalinks from your site\u2019s admin panel.<\/p>\n<h3>Wrapping up!<\/h3>\n<p>WordPress is an easy platform for non-technical users, and it is cost-effective as you can do a lot of thing without needing to pay a single penny. While most of the functionalities of WordPress are easy to deal with, often beginners make many mistakes that result in devastating effects.<\/p>\n<p>Moreover, to get the most of your website, there are several things that you need to consider. In this post, we mentioned some of the big mistakes that webmasters make, as a user you should take care of those mistakes and avoid making them in your site.<\/p>\n<p>&nbsp;<\/p>\n<div class=\"postauthor\">Emily White is a senior web developer at <a href=\"https:\/\/www.csschopper.com\/wordpress-web-development.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">CSSChopper<\/a>, which is the most trusted web design and development company that provides solutions across the world. Emily loves coding and passionate about WordPress development. She likes to build the best WordPress solutions for clients. Besides web development, she also likes to write quality content for her audience providing detailed information and knowledge about various trends and technologies in the web design and development.<\/div>\n","protected":false},"excerpt":{"rendered":"<p>While WordPress makes it easy to create a blog or website for everyone for free, it\u2019s not always that easy and often webmasters end up making several mistakes WordPress is one of the most trusted platforms for creating a website. &hellip;..<\/p>\n","protected":false},"author":96,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_glsr_average":0,"_glsr_ranking":0,"_glsr_reviews":0,"footnotes":""},"categories":[374,381],"tags":[],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Biggest WordPress mistakes that every webmaster should avoid | Smart Insights<\/title>\n<meta name=\"description\" content=\"While WordPress makes it easy to create a blog or website for everyone for free, it\u2019s not always that easy and often you can make several mistakes.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.smartinsights.com\/conversion-optimisation\/biggest-wordpress-mistakes-that-every-webmaster-should-avoid\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Biggest WordPress mistakes that every webmaster should avoid | Smart Insights\" \/>\n<meta property=\"og:description\" content=\"While WordPress makes it easy to create a blog or website for everyone for free, it\u2019s not always that easy and often you can make several mistakes.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.smartinsights.com\/conversion-optimisation\/biggest-wordpress-mistakes-that-every-webmaster-should-avoid\/\" \/>\n<meta property=\"og:site_name\" content=\"Smart Insights\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/smartinsights\" \/>\n<meta property=\"article:published_time\" content=\"2019-09-16T14:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-09-16T13:34:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.smartinsights.com\/wp-content\/uploads\/2019\/09\/Changing-database-prefix-700x543.png\" \/>\n<meta name=\"author\" content=\"Expert commentator\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@smartinsights\" \/>\n<meta name=\"twitter:site\" content=\"@smartinsights\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Expert commentator\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.smartinsights.com\/conversion-optimisation\/biggest-wordpress-mistakes-that-every-webmaster-should-avoid\/\",\"url\":\"https:\/\/www.smartinsights.com\/conversion-optimisation\/biggest-wordpress-mistakes-that-every-webmaster-should-avoid\/\",\"name\":\"Biggest WordPress mistakes that every webmaster should avoid | Smart Insights\",\"isPartOf\":{\"@id\":\"https:\/\/www.smartinsights.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.smartinsights.com\/conversion-optimisation\/biggest-wordpress-mistakes-that-every-webmaster-should-avoid\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.smartinsights.com\/conversion-optimisation\/biggest-wordpress-mistakes-that-every-webmaster-should-avoid\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.smartinsights.com\/wp-content\/uploads\/2019\/09\/Changing-database-prefix-700x543.png\",\"datePublished\":\"2019-09-16T14:00:00+00:00\",\"dateModified\":\"2019-09-16T13:34:42+00:00\",\"author\":{\"@id\":\"https:\/\/www.smartinsights.com\/#\/schema\/person\/e0c23c050e2fe4f0dead3cc46d3b909f\"},\"description\":\"While WordPress makes it easy to create a blog or website for everyone for free, it\u2019s not always that easy and often you can make several mistakes.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.smartinsights.com\/conversion-optimisation\/biggest-wordpress-mistakes-that-every-webmaster-should-avoid\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.smartinsights.com\/conversion-optimisation\/biggest-wordpress-mistakes-that-every-webmaster-should-avoid\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.smartinsights.com\/conversion-optimisation\/biggest-wordpress-mistakes-that-every-webmaster-should-avoid\/#primaryimage\",\"url\":\"https:\/\/www.smartinsights.com\/wp-content\/uploads\/2019\/09\/Changing-database-prefix-700x543.png\",\"contentUrl\":\"https:\/\/www.smartinsights.com\/wp-content\/uploads\/2019\/09\/Changing-database-prefix-700x543.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.smartinsights.com\/conversion-optimisation\/biggest-wordpress-mistakes-that-every-webmaster-should-avoid\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.smartinsights.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Biggest WordPress mistakes that every webmaster should avoid\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.smartinsights.com\/#website\",\"url\":\"https:\/\/www.smartinsights.com\/\",\"name\":\"Smart Insights\",\"description\":\"Digital Marketing &gt; The Marketing Strategy Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.smartinsights.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.smartinsights.com\/#\/schema\/person\/e0c23c050e2fe4f0dead3cc46d3b909f\",\"name\":\"Expert commentator\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.smartinsights.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d14fd9b3fb34d5b3e6aaaa0686d1ac5a?s=96&d=identicon&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d14fd9b3fb34d5b3e6aaaa0686d1ac5a?s=96&d=identicon&r=g\",\"caption\":\"Expert commentator\"},\"description\":\"This is a post we've invited from a digital marketing specialist who has agreed to share their expertise, opinions and case studies. Their details are given at the end of the article.\",\"sameAs\":[\"http:\/\/www.smartinsights.com\/\"],\"url\":\"https:\/\/www.smartinsights.com\/author\/guest-expert\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Biggest WordPress mistakes that every webmaster should avoid | Smart Insights","description":"While WordPress makes it easy to create a blog or website for everyone for free, it\u2019s not always that easy and often you can make several mistakes.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.smartinsights.com\/conversion-optimisation\/biggest-wordpress-mistakes-that-every-webmaster-should-avoid\/","og_locale":"en_US","og_type":"article","og_title":"Biggest WordPress mistakes that every webmaster should avoid | Smart Insights","og_description":"While WordPress makes it easy to create a blog or website for everyone for free, it\u2019s not always that easy and often you can make several mistakes.","og_url":"https:\/\/www.smartinsights.com\/conversion-optimisation\/biggest-wordpress-mistakes-that-every-webmaster-should-avoid\/","og_site_name":"Smart Insights","article_publisher":"https:\/\/www.facebook.com\/smartinsights","article_published_time":"2019-09-16T14:00:00+00:00","article_modified_time":"2019-09-16T13:34:42+00:00","og_image":[{"url":"https:\/\/www.smartinsights.com\/wp-content\/uploads\/2019\/09\/Changing-database-prefix-700x543.png"}],"author":"Expert commentator","twitter_card":"summary_large_image","twitter_creator":"@smartinsights","twitter_site":"@smartinsights","twitter_misc":{"Written by":"Expert commentator","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.smartinsights.com\/conversion-optimisation\/biggest-wordpress-mistakes-that-every-webmaster-should-avoid\/","url":"https:\/\/www.smartinsights.com\/conversion-optimisation\/biggest-wordpress-mistakes-that-every-webmaster-should-avoid\/","name":"Biggest WordPress mistakes that every webmaster should avoid | Smart Insights","isPartOf":{"@id":"https:\/\/www.smartinsights.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.smartinsights.com\/conversion-optimisation\/biggest-wordpress-mistakes-that-every-webmaster-should-avoid\/#primaryimage"},"image":{"@id":"https:\/\/www.smartinsights.com\/conversion-optimisation\/biggest-wordpress-mistakes-that-every-webmaster-should-avoid\/#primaryimage"},"thumbnailUrl":"https:\/\/www.smartinsights.com\/wp-content\/uploads\/2019\/09\/Changing-database-prefix-700x543.png","datePublished":"2019-09-16T14:00:00+00:00","dateModified":"2019-09-16T13:34:42+00:00","author":{"@id":"https:\/\/www.smartinsights.com\/#\/schema\/person\/e0c23c050e2fe4f0dead3cc46d3b909f"},"description":"While WordPress makes it easy to create a blog or website for everyone for free, it\u2019s not always that easy and often you can make several mistakes.","breadcrumb":{"@id":"https:\/\/www.smartinsights.com\/conversion-optimisation\/biggest-wordpress-mistakes-that-every-webmaster-should-avoid\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.smartinsights.com\/conversion-optimisation\/biggest-wordpress-mistakes-that-every-webmaster-should-avoid\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.smartinsights.com\/conversion-optimisation\/biggest-wordpress-mistakes-that-every-webmaster-should-avoid\/#primaryimage","url":"https:\/\/www.smartinsights.com\/wp-content\/uploads\/2019\/09\/Changing-database-prefix-700x543.png","contentUrl":"https:\/\/www.smartinsights.com\/wp-content\/uploads\/2019\/09\/Changing-database-prefix-700x543.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.smartinsights.com\/conversion-optimisation\/biggest-wordpress-mistakes-that-every-webmaster-should-avoid\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.smartinsights.com\/"},{"@type":"ListItem","position":2,"name":"Biggest WordPress mistakes that every webmaster should avoid"}]},{"@type":"WebSite","@id":"https:\/\/www.smartinsights.com\/#website","url":"https:\/\/www.smartinsights.com\/","name":"Smart Insights","description":"Digital Marketing &gt; The Marketing Strategy Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.smartinsights.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.smartinsights.com\/#\/schema\/person\/e0c23c050e2fe4f0dead3cc46d3b909f","name":"Expert commentator","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.smartinsights.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d14fd9b3fb34d5b3e6aaaa0686d1ac5a?s=96&d=identicon&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d14fd9b3fb34d5b3e6aaaa0686d1ac5a?s=96&d=identicon&r=g","caption":"Expert commentator"},"description":"This is a post we've invited from a digital marketing specialist who has agreed to share their expertise, opinions and case studies. Their details are given at the end of the article.","sameAs":["http:\/\/www.smartinsights.com\/"],"url":"https:\/\/www.smartinsights.com\/author\/guest-expert\/"}]}},"_links":{"self":[{"href":"https:\/\/www.smartinsights.com\/wp-json\/wp\/v2\/posts\/144075"}],"collection":[{"href":"https:\/\/www.smartinsights.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.smartinsights.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.smartinsights.com\/wp-json\/wp\/v2\/users\/96"}],"replies":[{"embeddable":true,"href":"https:\/\/www.smartinsights.com\/wp-json\/wp\/v2\/comments?post=144075"}],"version-history":[{"count":0,"href":"https:\/\/www.smartinsights.com\/wp-json\/wp\/v2\/posts\/144075\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.smartinsights.com\/wp-json\/wp\/v2\/media?parent=144075"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.smartinsights.com\/wp-json\/wp\/v2\/categories?post=144075"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.smartinsights.com\/wp-json\/wp\/v2\/tags?post=144075"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}