{"id":6791,"date":"2021-07-28T10:39:42","date_gmt":"2021-07-28T05:09:42","guid":{"rendered":"https:\/\/www.skynats.com\/?p=6791"},"modified":"2025-05-23T16:48:22","modified_gmt":"2025-05-23T11:18:22","slug":"change-wordpress-site-url-in-database-using-command-line","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/change-wordpress-site-url-in-database-using-command-line\/","title":{"rendered":"How To Change the WordPress Site URL In Database using Command-line"},"content":{"rendered":"\n<p>Most of us are familiar with WordPress domains. WordPress uses MySQL database to store its data including its site and home URLs. In some cases, we need to change the WordPress site URL in the database also.<\/p>\n\n\n\n<p>For example, while we doing the migration of WordPress sites from one server to another server, we need to change the old WordPress site URL in the MySQL database to the new one.<\/p>\n\n\n\n<p>We can add the home and site URL of WordPress using the <strong>wp-config.php <\/strong>file. But it is relevant to change the site URL in the database.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><span class=\"has-inline-color has-primary-color\">Steps for changing the WordPress Site URL in the database using CLI <\/span><\/h3>\n\n\n\n<p>We can find your WordPress domain&#8217;s database details from <strong>wp-config.php<\/strong> file.<\/p>\n\n\n\n<p>This file will be located in the document root of your domain.<\/p>\n\n\n\n<p>You can follow the given steps to change the WordPress URLs including the WordPress site URL in the MySQL database.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Log into the Mysql prompt.<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql -u root -p\npassword:<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Select your WordPress database.<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql &gt; show databases;\nmysql &gt; use wordpress_db;<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Chnage the WordPress URLs in the database using the given commands.<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>MariaDB &#91;<meta charset=\"utf-8\">wordpress_db]&gt; UPDATE wp_options SET option_value = replace(option_value, 'https:\/\/old_wordpress_url', 'https:\/\/new_wordpress_url') WHERE option_name = 'home' OR option_name = 'siteurl';\n\n\nMariaDB &#91;wordpress_db]&gt; UPDATE wp_posts SET guid = replace(guid, 'https:\/\/old_wordpress_url','https:\/\/new_wordpress_url');\n\nMariaDB &#91;wordpress_db]&gt; UPDATE wp_posts SET post_content = replace(post_content, 'https:\/\/old_wordpress_url', 'https:\/\/new_wordpress_url');\n\nMariaDB &#91;wordpress_db]&gt; UPDATE wp_postmeta SET meta_value = replace(meta_value,'https:\/\/old_wordpress_url','https:\/\/new_wordpress_url');\n<\/code><\/pre>\n\n\n\n<p>You can replace the old_wordpress_url and new_wordpress_url with your WordPress URLs.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"246\" sizes=\"(max-width: 1024px) 100vw, 1024px\" src=\"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-2021-07-27-at-11.28.24-AM-1024x246.png\" alt=\"\" class=\"wp-image-6796\" srcset=\"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-2021-07-27-at-11.28.24-AM-1024x246.png 1024w, https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-2021-07-27-at-11.28.24-AM-300x72.png 300w, https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-2021-07-27-at-11.28.24-AM-768x184.png 768w, https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-2021-07-27-at-11.28.24-AM-1536x368.png 1536w, https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-2021-07-27-at-11.28.24-AM-1200x288.png 1200w, https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-2021-07-27-at-11.28.24-AM.png 1780w\" \/><\/figure>\n\n\n\n<p>now you can able to access the WordPress site using the new updated URL.<\/p>\n\n\n\n<p>You can also change the home and site URL of WordPress using the wp_options table through the PhpMyAdmin.<\/p>\n\n\n\n<p>If you are still getting errors while updating the WordPress URLs, OUR <a href=\"https:\/\/www.skynats.com\/contact-us\/\" target=\"_blank\" rel=\"noreferrer noopener\"><span style=\"color:#0572a9\" class=\"has-inline-color\">technical team<\/span><\/a> will help you to resolve the issue within a short period.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Most of us are familiar with WordPress domains. WordPress uses MySQL database to store its data including its site and home URLs. In some cases, we need to change the WordPress site URL in the database also. For example, while we doing the migration of WordPress sites from one server to another server, we need [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5,300,282],"tags":[623,622],"class_list":["post-6791","post","type-post","status-publish","format-standard","hentry","category-blog","category-database","category-wordpress","tag-change-wordpress-url","tag-set-base-url-in-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Change The WordPress Site URL Via Command Line MySQL<\/title>\n<meta name=\"description\" content=\"Learn how to change your WordPress site URL directly in the database using the command line. Follow our step-by-step guide now!\" \/>\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.skynats.com\/blog\/change-wordpress-site-url-in-database-using-command-line\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Change the WordPress Site URL In Database using Command-line\" \/>\n<meta property=\"og:description\" content=\"Learn how to change your WordPress site URL directly in the database using the command line. Follow our step-by-step guide now!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/change-wordpress-site-url-in-database-using-command-line\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-28T05:09:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-23T11:18:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-2021-07-27-at-11.28.24-AM-1024x246.png\" \/>\n<meta name=\"author\" content=\"Pooja V\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Pooja V\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/change-wordpress-site-url-in-database-using-command-line\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/change-wordpress-site-url-in-database-using-command-line\\\/\"},\"author\":{\"name\":\"Pooja V\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/030d5856dd5166055eecc07218d2455e\"},\"headline\":\"How To Change the WordPress Site URL In Database using Command-line\",\"datePublished\":\"2021-07-28T05:09:42+00:00\",\"dateModified\":\"2025-05-23T11:18:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/change-wordpress-site-url-in-database-using-command-line\\\/\"},\"wordCount\":258,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/change-wordpress-site-url-in-database-using-command-line\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/Screenshot-2021-07-27-at-11.28.24-AM-1024x246.png\",\"keywords\":[\"change wordpress url\",\"set base url in wordpress\"],\"articleSection\":[\"Blog\",\"Database\",\"Wordpress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/change-wordpress-site-url-in-database-using-command-line\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/change-wordpress-site-url-in-database-using-command-line\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/change-wordpress-site-url-in-database-using-command-line\\\/\",\"name\":\"Change The WordPress Site URL Via Command Line MySQL\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/change-wordpress-site-url-in-database-using-command-line\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/change-wordpress-site-url-in-database-using-command-line\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/Screenshot-2021-07-27-at-11.28.24-AM-1024x246.png\",\"datePublished\":\"2021-07-28T05:09:42+00:00\",\"dateModified\":\"2025-05-23T11:18:22+00:00\",\"description\":\"Learn how to change your WordPress site URL directly in the database using the command line. Follow our step-by-step guide now!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/change-wordpress-site-url-in-database-using-command-line\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/change-wordpress-site-url-in-database-using-command-line\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/change-wordpress-site-url-in-database-using-command-line\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/Screenshot-2021-07-27-at-11.28.24-AM.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/Screenshot-2021-07-27-at-11.28.24-AM.png\",\"width\":1780,\"height\":427},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/change-wordpress-site-url-in-database-using-command-line\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Change the WordPress Site URL In Database using Command-line\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/030d5856dd5166055eecc07218d2455e\",\"name\":\"Pooja V\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/acf2642637f84bdab7ffece47787a6a4ee655dab6404beac2a1a33db563041c4?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/acf2642637f84bdab7ffece47787a6a4ee655dab6404beac2a1a33db563041c4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/acf2642637f84bdab7ffece47787a6a4ee655dab6404beac2a1a33db563041c4?s=96&d=mm&r=g\",\"caption\":\"Pooja V\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Change The WordPress Site URL Via Command Line MySQL","description":"Learn how to change your WordPress site URL directly in the database using the command line. Follow our step-by-step guide now!","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.skynats.com\/blog\/change-wordpress-site-url-in-database-using-command-line\/","og_locale":"en_US","og_type":"article","og_title":"How To Change the WordPress Site URL In Database using Command-line","og_description":"Learn how to change your WordPress site URL directly in the database using the command line. Follow our step-by-step guide now!","og_url":"https:\/\/www.skynats.com\/blog\/change-wordpress-site-url-in-database-using-command-line\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2021-07-28T05:09:42+00:00","article_modified_time":"2025-05-23T11:18:22+00:00","og_image":[{"url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-2021-07-27-at-11.28.24-AM-1024x246.png","type":"","width":"","height":""}],"author":"Pooja V","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Pooja V","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/change-wordpress-site-url-in-database-using-command-line\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/change-wordpress-site-url-in-database-using-command-line\/"},"author":{"name":"Pooja V","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/030d5856dd5166055eecc07218d2455e"},"headline":"How To Change the WordPress Site URL In Database using Command-line","datePublished":"2021-07-28T05:09:42+00:00","dateModified":"2025-05-23T11:18:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/change-wordpress-site-url-in-database-using-command-line\/"},"wordCount":258,"commentCount":0,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/change-wordpress-site-url-in-database-using-command-line\/#primaryimage"},"thumbnailUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-2021-07-27-at-11.28.24-AM-1024x246.png","keywords":["change wordpress url","set base url in wordpress"],"articleSection":["Blog","Database","Wordpress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.skynats.com\/blog\/change-wordpress-site-url-in-database-using-command-line\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/change-wordpress-site-url-in-database-using-command-line\/","url":"https:\/\/www.skynats.com\/blog\/change-wordpress-site-url-in-database-using-command-line\/","name":"Change The WordPress Site URL Via Command Line MySQL","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/change-wordpress-site-url-in-database-using-command-line\/#primaryimage"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/change-wordpress-site-url-in-database-using-command-line\/#primaryimage"},"thumbnailUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-2021-07-27-at-11.28.24-AM-1024x246.png","datePublished":"2021-07-28T05:09:42+00:00","dateModified":"2025-05-23T11:18:22+00:00","description":"Learn how to change your WordPress site URL directly in the database using the command line. Follow our step-by-step guide now!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/change-wordpress-site-url-in-database-using-command-line\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/change-wordpress-site-url-in-database-using-command-line\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/change-wordpress-site-url-in-database-using-command-line\/#primaryimage","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-2021-07-27-at-11.28.24-AM.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/07\/Screenshot-2021-07-27-at-11.28.24-AM.png","width":1780,"height":427},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/change-wordpress-site-url-in-database-using-command-line\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Change the WordPress Site URL In Database using Command-line"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/030d5856dd5166055eecc07218d2455e","name":"Pooja V","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/acf2642637f84bdab7ffece47787a6a4ee655dab6404beac2a1a33db563041c4?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/acf2642637f84bdab7ffece47787a6a4ee655dab6404beac2a1a33db563041c4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/acf2642637f84bdab7ffece47787a6a4ee655dab6404beac2a1a33db563041c4?s=96&d=mm&r=g","caption":"Pooja V"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/6791","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=6791"}],"version-history":[{"count":1,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/6791\/revisions"}],"predecessor-version":[{"id":14947,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/6791\/revisions\/14947"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=6791"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=6791"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=6791"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}