{"id":393,"date":"2015-04-01T12:05:01","date_gmt":"2015-04-01T07:05:01","guid":{"rendered":"http:\/\/128.199.176.160\/?p=393"},"modified":"2026-04-11T12:44:58","modified_gmt":"2026-04-11T07:44:58","slug":"make-wordpress-database-secure-changing-default-wordpress-table-prefix","status":"publish","type":"post","link":"https:\/\/wpbrigade.com\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\/","title":{"rendered":"How to make WordPress database secure by changing default WordPress table prefix?"},"content":{"rendered":"\n<p><strong><a href=\"https:\/\/wordpress.com\/\">WordPress<\/a> Database Security<\/strong> is the most important thing. Every single piece of information stored in it makes it a target for hackers and bots to steal information by applying SQL Injection.<\/p>\n\n\n\n<p>WordPress Database uses a default table prefix value &#8220;wp_&#8221; for all of its database tables. Typically, every website that is running WordPress will have its database tables with this prefix, and this can surely be used by hackers or malicious bots to guess your database table names. That&#8217;s why the smartest thing to do while creating a WordPress website is to change the prefix of the database, which can be done easily.<\/p>\n\n\n\n<p>If you forgot to change the prefix of the database table while creating your WordPress website, you can do this now by following these simple steps.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Note: It&#8217;s recommended to backup your database before performing this task.<\/strong><\/p>\n<\/blockquote>\n\n\n\n<p>There are two simple steps you need to follow:<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-step-1-by-changing-the-wp-config-php-file\"><span style=\"text-decoration: underline;\">Step 1. By changing the wp-config.php file:<\/span><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Go to your WordPress root directory and search for a file named &#8220;wp-config.php&#8221;.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image alignnone\"><img decoding=\"async\" width=\"516\" height=\"283\" src=\"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/Screenshot-18.png\" alt=\"wp-config.php file\" class=\"wp-image-452\" srcset=\"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/Screenshot-18.png 516w, https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/Screenshot-18-300x165.png 300w\" sizes=\"(max-width: 516px) 100vw, 516px\" \/><figcaption class=\"wp-element-caption\">wp-config.php<\/figcaption><\/figure>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Open &#8220;wp-config.php&#8221; in any code editor and search for &#8220;$table_prefix &nbsp;= &#8216;wp_&#8217;;&#8221;<\/li>\n\n\n\n<li>Change &#8220;wp_&#8221; prefix to something like &#8220;Br1G@de&#8221; or anything you like.<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image alignnone\"><img decoding=\"async\" width=\"613\" height=\"335\" src=\"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/Screenshot-19.png\" alt=\"WordPress database table prefix\" class=\"wp-image-453\" srcset=\"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/Screenshot-19.png 613w, https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/Screenshot-19-300x164.png 300w\" sizes=\"(max-width: 613px) 100vw, 613px\" \/><figcaption class=\"wp-element-caption\">Table Prefix<\/figcaption><\/figure>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<h5 class=\"wp-block-heading\" id=\"h-note-only-alphabets-numbers-and-underscores\">Note: Only alphabets, numbers and underscores.<\/h5>\n<\/blockquote>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-step-2-change-database-table-names\"><span style=\"text-decoration: underline;\">Step 2. Change database table names:<\/span><\/h2>\n\n\n\n<p>Now you&nbsp;need to access your&nbsp;database using <a href=\"https:\/\/www.phpmyadmin.net\/\"><strong>phpMyAdmin&nbsp;<\/strong><\/a>and change the table name&#8217;s prefix with the new one we entered in &#8220;wp-config.php&#8221; file.<\/p>\n\n\n\n<p>You will find the phpMyAdmin link in cPanel under Databases section.<\/p>\n\n\n\n<figure class=\"wp-block-image alignnone\"><img decoding=\"async\" width=\"530\" height=\"143\" src=\"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/Screenshot-20.png\" alt=\"phpMyAdmin Database\" class=\"wp-image-456\" srcset=\"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/Screenshot-20.png 530w, https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/Screenshot-20-300x81.png 300w\" sizes=\"(max-width: 530px) 100vw, 530px\" \/><figcaption class=\"wp-element-caption\">phpMyAdmin<\/figcaption><\/figure>\n\n\n\n<p>By default there are normally total 11 tables listed<\/p>\n\n\n\n<figure class=\"wp-block-image alignnone\"><img decoding=\"async\" width=\"583\" height=\"392\" src=\"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/Screenshot-21.png\" alt=\"WordPress Database Default Tables\" class=\"wp-image-457\" srcset=\"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/Screenshot-21.png 583w, https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/Screenshot-21-300x202.png 300w\" sizes=\"(max-width: 583px) 100vw, 583px\" \/><figcaption class=\"wp-element-caption\">Default Tables<\/figcaption><\/figure>\n\n\n\n<p>Select the SQL tab and run the simple queries and use the prefix you add in &#8220;wp-config.php&#8221; file.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">RENAME table `wp_commentmeta` TO `Br1G@de_commentmeta`;\nRENAME table `wp_comments` TO `Br1G@de_comments`;\nRENAME table `wp_links` TO `Br1G@de_links`;\nRENAME table `wp_options` TO `Br1G@de_options`;\nRENAME table `wp_postmeta` TO `Br1G@de_postmeta`;\nRENAME table `wp_posts` TO `Br1G@de_posts`;\nRENAME table `wp_terms` TO `Br1G@de_terms`;\nRENAME table `wp_term_relationships` TO `Br1G@de_term_relationships`;\nRENAME table `wp_term_taxonomy` TO `Br1G@de_term_taxonomy`;\nRENAME table `wp_usermeta` TO `Br1G@de_usermeta`;\nRENAME table `wp_users` TO `Br1G@de_users`;<\/pre>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<h5 class=\"wp-block-heading\" id=\"h-nbsp-note-if-you-have-plugins-installed-you-have-to-make-changes-to-those-tables-as-well-same-we-just-did-it-with-default-wordpress-tables\">&nbsp;Note: If you have plugins installed, you have to make changes to those tables as well same we just did it with default WordPress tables.<\/h5>\n<\/blockquote>\n","protected":false},"excerpt":{"rendered":"<p>WordPress Database Security is the most important thing. Every single piece of information stored in it makes it a target for hackers and bots to steal information by applying SQL Injection. WordPress Database uses a default table prefix value &ldquo;wp_&rdquo; for all of its database tables. Typically, every website that is running WordPress will have [&hellip;]<\/p>\n","protected":false},"author":9268,"featured_media":320168,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_analytify_skip_tracking":false,"footnotes":""},"categories":[53,571],"tags":[44,578,580,45,23,579],"class_list":["post-393","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-how-to","category-wordpress","tag-database","tag-database-security","tag-how-to-make-wordpress-database-secure","tag-security","tag-wordpress","tag-wordpress-database-security"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.5 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Secure your WordPress Database by Changing Table Prefix<\/title>\n<meta name=\"description\" content=\"Learn how to secure your WordPress database by changing the table Prefix in your WordPress Database for more security.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/wpbrigade.com\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to make WordPress database secure by changing default WordPress table prefix?\" \/>\n<meta property=\"og:description\" content=\"Learn how to secure your WordPress database by changing the table Prefix in your WordPress Database for more security.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wpbrigade.com\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\/\" \/>\n<meta property=\"og:site_name\" content=\"WPBrigade\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/WPBrigade\" \/>\n<meta property=\"article:published_time\" content=\"2015-04-01T07:05:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-11T07:44:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/how-to-make-wordpress-database-secure-by-changing-default-wordpress-table-prefix.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1500\" \/>\n\t<meta property=\"og:image:height\" content=\"800\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Editorial Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@wpbrigade\" \/>\n<meta name=\"twitter:site\" content=\"@wpbrigade\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Editorial Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\\\/\"},\"author\":{\"name\":\"Editorial Team\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#\\\/schema\\\/person\\\/2dea64860327e163e768333724338de6\"},\"headline\":\"How to make WordPress database secure by changing default WordPress table prefix?\",\"datePublished\":\"2015-04-01T07:05:01+00:00\",\"dateModified\":\"2026-04-11T07:44:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\\\/\"},\"wordCount\":322,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wpbrigade.com\\\/wp-content\\\/uploads\\\/2015\\\/04\\\/how-to-make-wordpress-database-secure-by-changing-default-wordpress-table-prefix.png\",\"keywords\":[\"Database\",\"Database Security\",\"How to make WordPress database secure\",\"Security\",\"WordPress\",\"WordPress Database Security\"],\"articleSection\":[\"How-to\",\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/wpbrigade.com\\\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\\\/\",\"url\":\"https:\\\/\\\/wpbrigade.com\\\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\\\/\",\"name\":\"How to Secure your WordPress Database by Changing Table Prefix\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wpbrigade.com\\\/wp-content\\\/uploads\\\/2015\\\/04\\\/how-to-make-wordpress-database-secure-by-changing-default-wordpress-table-prefix.png\",\"datePublished\":\"2015-04-01T07:05:01+00:00\",\"dateModified\":\"2026-04-11T07:44:58+00:00\",\"description\":\"Learn how to secure your WordPress database by changing the table Prefix in your WordPress Database for more security.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wpbrigade.com\\\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\\\/#primaryimage\",\"url\":\"https:\\\/\\\/wpbrigade.com\\\/wp-content\\\/uploads\\\/2015\\\/04\\\/how-to-make-wordpress-database-secure-by-changing-default-wordpress-table-prefix.png\",\"contentUrl\":\"https:\\\/\\\/wpbrigade.com\\\/wp-content\\\/uploads\\\/2015\\\/04\\\/how-to-make-wordpress-database-secure-by-changing-default-wordpress-table-prefix.png\",\"width\":1500,\"height\":800,\"caption\":\"How to make WordPress database secure by changing default WordPress table prefix?\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/wpbrigade.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to make WordPress database secure by changing default WordPress table prefix?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#website\",\"url\":\"https:\\\/\\\/wpbrigade.com\\\/\",\"name\":\"WPBrigade\",\"description\":\"WordPress Development Agency\",\"publisher\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/wpbrigade.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#organization\",\"name\":\"WPBrigade\",\"url\":\"https:\\\/\\\/wpbrigade.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/wpbrigade.com\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/Screen-Shot-2021-07-02-at-12.42.14-AM.png\",\"contentUrl\":\"https:\\\/\\\/wpbrigade.com\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/Screen-Shot-2021-07-02-at-12.42.14-AM.png\",\"width\":271,\"height\":63,\"caption\":\"WPBrigade\"},\"image\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/facebook.com\\\/WPBrigade\",\"https:\\\/\\\/x.com\\\/wpbrigade\",\"https:\\\/\\\/www.instagram.com\\\/wpbrigade.agency\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/wpbrigade\",\"https:\\\/\\\/www.youtube.com\\\/c\\\/Wpbrigade\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#\\\/schema\\\/person\\\/2dea64860327e163e768333724338de6\",\"name\":\"Editorial Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1bba47142d1af61a55ed7e262cdf830010cbef95f98003b6526c9b1e6a8e4f32?s=96&d=retro&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1bba47142d1af61a55ed7e262cdf830010cbef95f98003b6526c9b1e6a8e4f32?s=96&d=retro&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1bba47142d1af61a55ed7e262cdf830010cbef95f98003b6526c9b1e6a8e4f32?s=96&d=retro&r=g\",\"caption\":\"Editorial Team\"},\"sameAs\":[\"https:\\\/\\\/wpbrigade.com\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Secure your WordPress Database by Changing Table Prefix","description":"Learn how to secure your WordPress database by changing the table Prefix in your WordPress Database for more security.","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:\/\/wpbrigade.com\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\/","og_locale":"en_US","og_type":"article","og_title":"How to make WordPress database secure by changing default WordPress table prefix?","og_description":"Learn how to secure your WordPress database by changing the table Prefix in your WordPress Database for more security.","og_url":"https:\/\/wpbrigade.com\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\/","og_site_name":"WPBrigade","article_publisher":"https:\/\/facebook.com\/WPBrigade","article_published_time":"2015-04-01T07:05:01+00:00","article_modified_time":"2026-04-11T07:44:58+00:00","og_image":[{"width":1500,"height":800,"url":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/how-to-make-wordpress-database-secure-by-changing-default-wordpress-table-prefix.png","type":"image\/png"}],"author":"Editorial Team","twitter_card":"summary_large_image","twitter_creator":"@wpbrigade","twitter_site":"@wpbrigade","twitter_misc":{"Written by":"Editorial Team","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/wpbrigade.com\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\/#article","isPartOf":{"@id":"https:\/\/wpbrigade.com\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\/"},"author":{"name":"Editorial Team","@id":"https:\/\/wpbrigade.com\/#\/schema\/person\/2dea64860327e163e768333724338de6"},"headline":"How to make WordPress database secure by changing default WordPress table prefix?","datePublished":"2015-04-01T07:05:01+00:00","dateModified":"2026-04-11T07:44:58+00:00","mainEntityOfPage":{"@id":"https:\/\/wpbrigade.com\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\/"},"wordCount":322,"commentCount":0,"publisher":{"@id":"https:\/\/wpbrigade.com\/#organization"},"image":{"@id":"https:\/\/wpbrigade.com\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\/#primaryimage"},"thumbnailUrl":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/how-to-make-wordpress-database-secure-by-changing-default-wordpress-table-prefix.png","keywords":["Database","Database Security","How to make WordPress database secure","Security","WordPress","WordPress Database Security"],"articleSection":["How-to","WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/wpbrigade.com\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/wpbrigade.com\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\/","url":"https:\/\/wpbrigade.com\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\/","name":"How to Secure your WordPress Database by Changing Table Prefix","isPartOf":{"@id":"https:\/\/wpbrigade.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wpbrigade.com\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\/#primaryimage"},"image":{"@id":"https:\/\/wpbrigade.com\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\/#primaryimage"},"thumbnailUrl":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/how-to-make-wordpress-database-secure-by-changing-default-wordpress-table-prefix.png","datePublished":"2015-04-01T07:05:01+00:00","dateModified":"2026-04-11T07:44:58+00:00","description":"Learn how to secure your WordPress database by changing the table Prefix in your WordPress Database for more security.","breadcrumb":{"@id":"https:\/\/wpbrigade.com\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wpbrigade.com\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wpbrigade.com\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\/#primaryimage","url":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/how-to-make-wordpress-database-secure-by-changing-default-wordpress-table-prefix.png","contentUrl":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/how-to-make-wordpress-database-secure-by-changing-default-wordpress-table-prefix.png","width":1500,"height":800,"caption":"How to make WordPress database secure by changing default WordPress table prefix?"},{"@type":"BreadcrumbList","@id":"https:\/\/wpbrigade.com\/make-wordpress-database-secure-changing-default-wordpress-table-prefix\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wpbrigade.com\/"},{"@type":"ListItem","position":2,"name":"How to make WordPress database secure by changing default WordPress table prefix?"}]},{"@type":"WebSite","@id":"https:\/\/wpbrigade.com\/#website","url":"https:\/\/wpbrigade.com\/","name":"WPBrigade","description":"WordPress Development Agency","publisher":{"@id":"https:\/\/wpbrigade.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wpbrigade.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/wpbrigade.com\/#organization","name":"WPBrigade","url":"https:\/\/wpbrigade.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wpbrigade.com\/#\/schema\/logo\/image\/","url":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2021\/07\/Screen-Shot-2021-07-02-at-12.42.14-AM.png","contentUrl":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2021\/07\/Screen-Shot-2021-07-02-at-12.42.14-AM.png","width":271,"height":63,"caption":"WPBrigade"},"image":{"@id":"https:\/\/wpbrigade.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/WPBrigade","https:\/\/x.com\/wpbrigade","https:\/\/www.instagram.com\/wpbrigade.agency\/","https:\/\/www.linkedin.com\/company\/wpbrigade","https:\/\/www.youtube.com\/c\/Wpbrigade"]},{"@type":"Person","@id":"https:\/\/wpbrigade.com\/#\/schema\/person\/2dea64860327e163e768333724338de6","name":"Editorial Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1bba47142d1af61a55ed7e262cdf830010cbef95f98003b6526c9b1e6a8e4f32?s=96&d=retro&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1bba47142d1af61a55ed7e262cdf830010cbef95f98003b6526c9b1e6a8e4f32?s=96&d=retro&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1bba47142d1af61a55ed7e262cdf830010cbef95f98003b6526c9b1e6a8e4f32?s=96&d=retro&r=g","caption":"Editorial Team"},"sameAs":["https:\/\/wpbrigade.com\/"]}]}},"_links":{"self":[{"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/posts\/393","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/users\/9268"}],"replies":[{"embeddable":true,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/comments?post=393"}],"version-history":[{"count":4,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/posts\/393\/revisions"}],"predecessor-version":[{"id":320169,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/posts\/393\/revisions\/320169"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/media\/320168"}],"wp:attachment":[{"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/media?parent=393"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/categories?post=393"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/tags?post=393"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}