{"id":15018,"date":"2025-06-06T13:42:33","date_gmt":"2025-06-06T08:12:33","guid":{"rendered":"https:\/\/www.skynats.com\/?p=15018"},"modified":"2025-06-06T13:43:29","modified_gmt":"2025-06-06T08:13:29","slug":"how-to-update-wordpress-site-and-home-url-via-mysql-command-line","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-update-wordpress-site-and-home-url-via-mysql-command-line\/","title":{"rendered":"How to Update WordPress Site and Home URL via MySQL Command Line"},"content":{"rendered":"\n<p>When managing <a href=\"https:\/\/wordpress.com\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">WordPress<\/mark><\/a> websites on servers without a control panel like cPanel or Plesk, tasks like updating the Site URL and Home URL can\u2019t be done via phpMyAdmin. In such cases, you can Update WordPress Site URL and Home URL via Command Line using MySQL.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-why-change-wordpress-site-url-and-home-url-via-command-line\">Why Change WordPress Site URL and Home URL via Command Line<\/h2>\n\n\n\n<p>You may need to update these settings if:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You have migrated the website to a new domain.<br><\/li>\n\n\n\n<li>You are switching between HTTP and HTTPS.<br><\/li>\n\n\n\n<li>You are enabling or removing www in the domain name.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-gather-wordpress-database-credentials\"><strong>Gather WordPress Database Credentials<\/strong><\/h2>\n\n\n\n<p>Find the necessary database information in your WordPress configuration file: <strong>wp-config.php<\/strong>.<\/p>\n\n\n\n<p>Use the following command to open it.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>vim \/path\/to\/your\/wordpress\/wp-config.php<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Look for the following lines:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>define(&#8216;DB_NAME&#8217;, &#8216;database_wp261&#8217;);define(&#8216;DB_USER&#8217;, &#8216;user_wp261&#8217;);define(&#8216;DB_PASSWORD&#8217;, &#8216;ks1b8gdg#saylufy&#8217;);<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Take note of these values \u2014 you will use them to access the MySQL database.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-login-to-mysql-via-command-line\"><strong>Login to MySQL via Command Line<\/strong><\/h3>\n\n\n\n<p>Use the following command to access MySQL:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>mysql -u user_wp261 -p<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>You&#8217;ll be prompted for the password in our example.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-select-the-wordpress-database\"><strong>Select the WordPress Database<\/strong><\/h3>\n\n\n\n<p>Once inside the MySQL shell, run:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>SHOW DATABASES;<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Select your WordPress database:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>USE database_wp261;<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-view-and-update-wordpress-site-url-and-home-url\"><strong>View and Update WordPress Site URL and Home URL<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-check-current-home-url\">Check Current Home URL<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>SELECT * FROM wp_options WHERE option_name = &#8216;home&#8217;;<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-update-home-url\">Update Home URL<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>UPDATE wp_options&nbsp;SET option_value = &#8216;http:\/\/www.new_website_name.com\/&#8217;&nbsp;WHERE option_name = &#8216;home&#8217;;<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-check-current-site-url\">Check Current Site URL<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>SELECT * FROM wp_options WHERE option_name = &#8216;siteurl&#8217;;<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-update-site-url\">Update Site URL<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>UPDATE wp_options&nbsp;SET option_value = &#8216;http:\/\/www.new_website_name.com\/&#8217;&nbsp;WHERE option_name = &#8216;siteurl&#8217;;<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Make sure the domain name you enter is accurate and includes the protocol (http:\/\/ or https:\/\/).<\/p>\n\n\n\n<p>Once done verify its changed and exit MySQLFor added safety, always backup your database before making changes.<\/p>\n\n\n\n<p>If you&#8217;re unsure about executing MySQL commands or want to avoid any potential misconfigurations, it&#8217;s best to seek expert assistance. At Skynats, our professional team offers reliable <a href=\"https:\/\/www.skynats.com\/server-management\/\">Server Management services<\/a> to help you safely and efficiently Update WordPress Site URL and Home URL via Command Line.<\/p>\n\n\n\n<p>Contact us today at www.skynats.com to ensure your WordPress site runs smoothly with expert backend support.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When managing WordPress websites on servers without a control panel like cPanel or Plesk, tasks like updating the Site URL and Home URL can\u2019t be done via phpMyAdmin. In such cases, you can Update WordPress Site URL and Home URL via Command Line using MySQL. Why Change WordPress Site URL and Home URL via Command [&hellip;]<\/p>\n","protected":false},"author":14,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[302,1047],"class_list":["post-15018","post","type-post","status-publish","format-standard","hentry","category-blog","tag-server-management-services","tag-update-wordpress-site-url-and-home-url-via-command-line"],"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>Update WordPress Site URL and Home URL via Command Line<\/title>\n<meta name=\"description\" content=\"Update WordPress Site URL and Home URL via Command Line using MySQL with ease. Follow our guide and streamline your WordPress setup today!\" \/>\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\/how-to-update-wordpress-site-and-home-url-via-mysql-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 Update WordPress Site and Home URL via MySQL Command Line\" \/>\n<meta property=\"og:description\" content=\"Update WordPress Site URL and Home URL via Command Line using MySQL with ease. Follow our guide and streamline your WordPress setup today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-update-wordpress-site-and-home-url-via-mysql-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=\"2025-06-06T08:12:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-06T08:13:29+00:00\" \/>\n<meta name=\"author\" content=\"Jishnu 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=\"Jishnu 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\\\/how-to-update-wordpress-site-and-home-url-via-mysql-command-line\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-update-wordpress-site-and-home-url-via-mysql-command-line\\\/\"},\"author\":{\"name\":\"Jishnu V\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/c63611da5e22d216e38d8658e5a605c5\"},\"headline\":\"How to Update WordPress Site and Home URL via MySQL Command Line\",\"datePublished\":\"2025-06-06T08:12:33+00:00\",\"dateModified\":\"2025-06-06T08:13:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-update-wordpress-site-and-home-url-via-mysql-command-line\\\/\"},\"wordCount\":390,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"server management services\",\"Update WordPress Site URL and Home URL via Command Line\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-update-wordpress-site-and-home-url-via-mysql-command-line\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-update-wordpress-site-and-home-url-via-mysql-command-line\\\/\",\"name\":\"Update WordPress Site URL and Home URL via Command Line\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-06-06T08:12:33+00:00\",\"dateModified\":\"2025-06-06T08:13:29+00:00\",\"description\":\"Update WordPress Site URL and Home URL via Command Line using MySQL with ease. Follow our guide and streamline your WordPress setup today!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-update-wordpress-site-and-home-url-via-mysql-command-line\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-update-wordpress-site-and-home-url-via-mysql-command-line\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-update-wordpress-site-and-home-url-via-mysql-command-line\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Update WordPress Site and Home URL via MySQL 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\\\/c63611da5e22d216e38d8658e5a605c5\",\"name\":\"Jishnu V\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"caption\":\"Jishnu V\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Update WordPress Site URL and Home URL via Command Line","description":"Update WordPress Site URL and Home URL via Command Line using MySQL with ease. Follow our guide and streamline your WordPress setup today!","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\/how-to-update-wordpress-site-and-home-url-via-mysql-command-line\/","og_locale":"en_US","og_type":"article","og_title":"How to Update WordPress Site and Home URL via MySQL Command Line","og_description":"Update WordPress Site URL and Home URL via Command Line using MySQL with ease. Follow our guide and streamline your WordPress setup today!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-update-wordpress-site-and-home-url-via-mysql-command-line\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-06-06T08:12:33+00:00","article_modified_time":"2025-06-06T08:13:29+00:00","author":"Jishnu V","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Jishnu V","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-update-wordpress-site-and-home-url-via-mysql-command-line\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-update-wordpress-site-and-home-url-via-mysql-command-line\/"},"author":{"name":"Jishnu V","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/c63611da5e22d216e38d8658e5a605c5"},"headline":"How to Update WordPress Site and Home URL via MySQL Command Line","datePublished":"2025-06-06T08:12:33+00:00","dateModified":"2025-06-06T08:13:29+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-update-wordpress-site-and-home-url-via-mysql-command-line\/"},"wordCount":390,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["server management services","Update WordPress Site URL and Home URL via Command Line"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-update-wordpress-site-and-home-url-via-mysql-command-line\/","url":"https:\/\/www.skynats.com\/blog\/how-to-update-wordpress-site-and-home-url-via-mysql-command-line\/","name":"Update WordPress Site URL and Home URL via Command Line","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-06-06T08:12:33+00:00","dateModified":"2025-06-06T08:13:29+00:00","description":"Update WordPress Site URL and Home URL via Command Line using MySQL with ease. Follow our guide and streamline your WordPress setup today!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-update-wordpress-site-and-home-url-via-mysql-command-line\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-update-wordpress-site-and-home-url-via-mysql-command-line\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-update-wordpress-site-and-home-url-via-mysql-command-line\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Update WordPress Site and Home URL via MySQL 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\/c63611da5e22d216e38d8658e5a605c5","name":"Jishnu V","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","caption":"Jishnu V"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15018","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\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=15018"}],"version-history":[{"count":2,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15018\/revisions"}],"predecessor-version":[{"id":15024,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15018\/revisions\/15024"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=15018"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=15018"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=15018"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}