{"id":5179,"date":"2020-07-20T12:23:18","date_gmt":"2020-07-20T06:53:18","guid":{"rendered":"https:\/\/www.skynats.com\/?p=5179"},"modified":"2025-09-01T17:52:35","modified_gmt":"2025-09-01T12:22:35","slug":"how-to-secure-wordpress-websites","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-secure-wordpress-websites\/","title":{"rendered":"How to Secure WordPress Websites"},"content":{"rendered":"\n<p><a aria-label=\"undefined (opens in a new tab)\" href=\"https:\/\/wordpress.org\/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress<\/a> is a user-friendly content management system. When it comes to the security of WordPress it has been an important role. Because many of the WordPress websites are being hacked or they have security issues and to secure WordPress websites, proper measures should be taken by the system administrator and the developers.<br>We can prevent it by implementing security measurements in WordPress level and Server level. If you need to set up a highly secured WordPress dedicated server, please refer to our <a aria-label=\"undefined (opens in a new tab)\" href=\"https:\/\/www.skynats.com\/linux-server-management\/\" target=\"_blank\" rel=\"noreferrer noopener\">server management<\/a> plan or do contact us.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-choose-a-secured-web-hosting-service\">Choose a secured Web Hosting service<\/h4>\n\n\n\n<p>The webserver that WordPress is running has the chance of vulnerabilities, if we are using the old PHP version it will cause security threats. We should be bothered about several server-side security protections.<br>Use the latest PHP version (PHP 7.4) greater and Mysql 5.6\/MariaDB latest with the latest Apache or Nginx web server. Also do check the following points are done.<br>1. HTTPS and HTTP2 support should be enabled.<br>2. Web Application Firewall (WAF can be used to restrict incoming and outgoing network traffic)<br>3. Intrusion detection system<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-use-strong-admin-logins\">Use Strong Admin Logins<\/h4>\n\n\n\n<p>To prevent a Brute force attack and other security issues we can use a strong password. For generating a strong password we can use password generators and do not use frequently accessible names for passwords.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-protect-wordpress-admin\">Protect WordPress Admin<\/h4>\n\n\n\n<p>If your WordPress site doesn&#8217;t support registration or front-end creation, your visitors should not be able to access the \/wp-admin or \/wp-login.php folder. For this, we can use .htaccess file rule.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;Files wp-login.php&gt;\norder deny,allow\nDeny from all\nAllow from xx.xxx.xxx.xxx\n&lt;\/Files&gt;<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-take-regular-backups\">Take Regular Backups <\/h4>\n\n\n\n<p>WordPress is a web application based on PHP and MYSQL and we can take a backup of full site including files and databases manually on a daily basis. So we can restore it immediately without data losses if any issue occurred. A scheduled backup system can be implemented with our <a aria-label=\"undefined (opens in a new tab)\" href=\"https:\/\/www.skynats.com\/cpanel-server-management\/\" target=\"_blank\" rel=\"noreferrer noopener\">server management plan<\/a>.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-monitor-the-website\">Monitor the website<\/h4>\n\n\n\n<p>We can monitor the uptime and website performance using opensource monitoring tools and it will provide the CPU usage, uptime, downtime, Memory usage, etc. Your website and server will be under 24\/7 monitoring with 1 min interval on our management.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-keep-wordpress-and-plugins-uptodate\">Keep WordPress and plugins uptodate<\/h4>\n\n\n\n<p>Keep your WordPress and plugins up to date by update the WordPress to the latest version, the themes, and all the active plugins to the latest versions. Before the update, you should take a full backup of your WordPress site. Remember to uninstall all unused plugins and themes from your WordPress site always.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-check-permissions\">Check permissions<\/h4>\n\n\n\n<p>The folders and files inside the WordPress installation directory should have the correct ownership and permissions. Otherwise, it will be easy to hack the files and folders. The files should have the permission of 644 and folders should have the permission of 755.<br><br>Files Permissions can be corrected by<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>find \/path-of-wp-files\/ -type f -exec chmod 644 {} \\;<\/code><\/pre>\n\n\n\n<p>Folders Permissions can be corrected by<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>find \/path-of-wp-files\/ -type d -exec chmod 755 {} \\;<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-restricting-database-user-privileges\">Restricting Database User Privileges<\/h4>\n\n\n\n<p>We should only give privileges like SELECT, INSERT, DROP to specific database users that needed for WordPress users.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-securing-wp-includes-folder\">Securing wp-includes folder<\/h4>\n\n\n\n<p>WP-INCLUDES is the folder where the core files and scripts of WordPress stored. If you don&#8217;t want to allow access of scripts to any user then you can use htaccess rule to block access to the wp-includes folder.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;IfModule mod_rewrite.c&gt;\nRewriteEngine On\nRewriteBase \/\nRewriteRule ^wp-admin\/includes\/ - &#91;F,L]\nRewriteRule !^wp-includes\/ - &#91;S=3]\nRewriteRule ^wp-includes\/&#91;^\/]+\\.php$ - &#91;F,L]\nRewriteRule ^wp-includes\/js\/tinymce\/langs\/.+\\.php - &#91;F,L]\nRewriteRule ^wp-includes\/theme-compat\/ - &#91;F,L]\n&lt;\/IfModule&gt;<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-securing-wp-config-php-file\">Securing wp-config.php file<\/h4>\n\n\n\n<p>WP-CONFIG.PHP is the file where the main configuration of WordPress is stored. The wp-config.php file should have the correct permission, otherwise, there is the chance of moving the file or accessing it and it will lead to the security issue. To secure it, add the below rule in htaccess<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;files wp-config.php&gt;\norder allow,deny\ndeny from all\n&lt;\/files&gt;<\/code><\/pre>\n\n\n\n<p>These are the main points to be covered to secure WordPress websites and many more techniques are available. If you need to harden your server with WordPress website, please ping our team and our experts will get it done within a short time.<\/p>\n\n\n\n<figure class=\"wp-block-pullquote is-style-default has-vivid-red-color has-text-color\"><blockquote><p><strong>Do you want our expert team to secure WordPress?<\/strong><\/p><cite><strong><a href=\"https:\/\/www.skynats.com\/contact-us\/\" target=\"_blank\" aria-label=\"undefined (opens in a new tab)\" rel=\"noreferrer noopener\">CONTACT US NOW<\/a><\/strong><\/cite><\/blockquote><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>WordPress is a user-friendly content management system. When it comes to the security of WordPress it has been an important role. Because many of the WordPress websites are being hacked or they have security issues and to secure WordPress websites, proper measures should be taken by the system administrator and the developers.We can prevent it [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5,68],"tags":[76,77,78,79,80,81,82],"class_list":["post-5179","post","type-post","status-publish","format-standard","hentry","category-blog","category-server-management","tag-hacked-wordpress","tag-secure-websites","tag-secure-wordpress","tag-server-hardening","tag-wordpress-attack","tag-wordpress-down","tag-wordpress-hardening"],"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>How to Secure WordPress Websites | Wordpress Hardening |Skynats<\/title>\n<meta name=\"description\" content=\"Read the blog to know how to secure wordpress website and server from attackers and keep it running 24\/7 without any downtimes\" \/>\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-secure-wordpress-websites\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Secure WordPress Websites\" \/>\n<meta property=\"og:description\" content=\"Read the blog to know how to secure wordpress website and server from attackers and keep it running 24\/7 without any downtimes\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-secure-wordpress-websites\/\" \/>\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=\"2020-07-20T06:53:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-01T12:22:35+00:00\" \/>\n<meta name=\"author\" content=\"skynatsadmin\" \/>\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=\"skynatsadmin\" \/>\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:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-secure-wordpress-websites\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-secure-wordpress-websites\\\/\"},\"author\":{\"name\":\"skynatsadmin\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/e970a174b9758a8f7cb6e1532a2843b9\"},\"headline\":\"How to Secure WordPress Websites\",\"datePublished\":\"2020-07-20T06:53:18+00:00\",\"dateModified\":\"2025-09-01T12:22:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-secure-wordpress-websites\\\/\"},\"wordCount\":643,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"hacked wordpress\",\"secure websites\",\"secure wordpress\",\"server hardening\",\"wordpress attack\",\"wordpress down\",\"wordpress hardening\"],\"articleSection\":[\"Blog\",\"server management\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-secure-wordpress-websites\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-secure-wordpress-websites\\\/\",\"name\":\"How to Secure WordPress Websites | Wordpress Hardening |Skynats\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2020-07-20T06:53:18+00:00\",\"dateModified\":\"2025-09-01T12:22:35+00:00\",\"description\":\"Read the blog to know how to secure wordpress website and server from attackers and keep it running 24\\\/7 without any downtimes\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-secure-wordpress-websites\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-secure-wordpress-websites\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-secure-wordpress-websites\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Secure WordPress Websites\"}]},{\"@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\\\/e970a174b9758a8f7cb6e1532a2843b9\",\"name\":\"skynatsadmin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5da13c4f45ca3307cc8c1fa0d9b4c9ba7ec740e3210e123980462a1a665797a1?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5da13c4f45ca3307cc8c1fa0d9b4c9ba7ec740e3210e123980462a1a665797a1?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5da13c4f45ca3307cc8c1fa0d9b4c9ba7ec740e3210e123980462a1a665797a1?s=96&d=mm&r=g\",\"caption\":\"skynatsadmin\"},\"sameAs\":[\"https:\\\/\\\/dev.skynats.com\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Secure WordPress Websites | Wordpress Hardening |Skynats","description":"Read the blog to know how to secure wordpress website and server from attackers and keep it running 24\/7 without any downtimes","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-secure-wordpress-websites\/","og_locale":"en_US","og_type":"article","og_title":"How to Secure WordPress Websites","og_description":"Read the blog to know how to secure wordpress website and server from attackers and keep it running 24\/7 without any downtimes","og_url":"https:\/\/www.skynats.com\/blog\/how-to-secure-wordpress-websites\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2020-07-20T06:53:18+00:00","article_modified_time":"2025-09-01T12:22:35+00:00","author":"skynatsadmin","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"skynatsadmin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-secure-wordpress-websites\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-secure-wordpress-websites\/"},"author":{"name":"skynatsadmin","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/e970a174b9758a8f7cb6e1532a2843b9"},"headline":"How to Secure WordPress Websites","datePublished":"2020-07-20T06:53:18+00:00","dateModified":"2025-09-01T12:22:35+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-secure-wordpress-websites\/"},"wordCount":643,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["hacked wordpress","secure websites","secure wordpress","server hardening","wordpress attack","wordpress down","wordpress hardening"],"articleSection":["Blog","server management"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-secure-wordpress-websites\/","url":"https:\/\/www.skynats.com\/blog\/how-to-secure-wordpress-websites\/","name":"How to Secure WordPress Websites | Wordpress Hardening |Skynats","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2020-07-20T06:53:18+00:00","dateModified":"2025-09-01T12:22:35+00:00","description":"Read the blog to know how to secure wordpress website and server from attackers and keep it running 24\/7 without any downtimes","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-secure-wordpress-websites\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-secure-wordpress-websites\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-secure-wordpress-websites\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Secure WordPress Websites"}]},{"@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\/e970a174b9758a8f7cb6e1532a2843b9","name":"skynatsadmin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/5da13c4f45ca3307cc8c1fa0d9b4c9ba7ec740e3210e123980462a1a665797a1?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5da13c4f45ca3307cc8c1fa0d9b4c9ba7ec740e3210e123980462a1a665797a1?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5da13c4f45ca3307cc8c1fa0d9b4c9ba7ec740e3210e123980462a1a665797a1?s=96&d=mm&r=g","caption":"skynatsadmin"},"sameAs":["https:\/\/dev.skynats.com"]}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/5179","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\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=5179"}],"version-history":[{"count":1,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/5179\/revisions"}],"predecessor-version":[{"id":15694,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/5179\/revisions\/15694"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=5179"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=5179"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=5179"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}