{"id":15578,"date":"2025-04-07T12:39:09","date_gmt":"2025-04-07T07:09:09","guid":{"rendered":"https:\/\/www.pcvita.com\/blog\/?p=15578"},"modified":"2025-04-07T12:39:09","modified_gmt":"2025-04-07T07:09:09","slug":"delete-only-files-not-folders-powershell","status":"publish","type":"post","link":"https:\/\/www.pcvita.com\/blog\/delete-only-files-not-folders-powershell.html","title":{"rendered":"Delete Only Files Not Folders Using PowerShell &#8211; Complete Steps"},"content":{"rendered":"<p><b>Overview<\/b>: Here, in this blog we are going to know why we need to delete only files and not folders using PowerShell mode. But, before doing this, you should have knowledge about PowerShell and their commands to do it safely.<\/p>\n<p>PowerShell is a popular command line tool that is primarily built for Windows users to automate their tasks and make system processes simple by applying these commands. Often one would use this to clean up a directory by deleting only files while leaving the folders intact. Thus, by doing this, you can maintain the folder structure and eliminate the risk of unknown files.<\/p>\n<p>This approach is especially useful when you&#8217;re learning <strong data-start=\"778\" data-end=\"825\"><a class=\"\" href=\"https:\/\/www.pcvita.com\/blog\/how-to-remove-all-files-on-hard-drive.html\" rel=\"noopener\" data-start=\"780\" data-end=\"823\">how to remove all files on hard drive?<\/a><\/strong> without disturbing the folder hierarchy.<\/p>\n<h2><b>Why Delete Only Files &amp; Keep Folders Safe<\/b><\/h2>\n<p>There are various possible scenarios in which you just want to delete only files and not folders using PowerShell. Let\u2019s know them in below part:<\/p>\n<ul>\n<li>It is suitable for the developer and IT admin users who might want to use it later for reference or automation purposes.<\/li>\n<li>On the one hand, you could get rid of temporary or outdated files but keep folder organization safe.<\/li>\n<li>You may want to reuse the folder hierarchy for another project while not taking along any old data.<\/li>\n<li>Deleting folders in software directories might affect configuration or linked paths.<\/li>\n<\/ul>\n<h2><b>Delete Only Files and Not Folders Using PowerShell Methods<\/b><\/h2>\n<p>In this section, you will get four methods to delete only files and save your folders through PowerShell commands.<\/p>\n<h3><b>#1. Delete All Files in a Folder (Keep Subfolders)<\/b><\/h3>\n<blockquote><p><b>Get-ChildItem -Path &#8220;C:\\Your\\Target\\Path&#8221; -File | Remove-Item<\/b><\/p><\/blockquote>\n<p>This command will only delete files that are directly inside the folder and not the subfolders of the folder.<\/p>\n<h3><b>#2. Delete All Files Including Subfolder Files<\/b><\/h3>\n<blockquote><p><b>Get-ChildItem -Path &#8220;C:\\Your\\Target\\Path&#8221; -File -Recurse | Remove-Item<\/b><\/p><\/blockquote>\n<p>It applies the parameter -Recurse for the removal of all folder files and its subfolders while keeping the folders themselves.<\/p>\n<h3><b>#3. Delete Files Based on Extension<\/b><\/h3>\n<blockquote><p><b>Get-ChildItem -Path &#8220;C:\\Your\\Target\\Path&#8221; -Recurse -Include *.log -File | Remove-Item<\/b><\/p><\/blockquote>\n<p>If one wishes to delete certain types of files, such as .log files, by keeping the rest of the data and folders, one can opt for this.<\/p>\n<h3><b>#4. Delete Files Older Than 30 Days<\/b><\/h3>\n<blockquote><p><b>Get-ChildItem -Path &#8220;C:\\Your\\Target\\Path&#8221; -File -Recurse | Where-Object { $_.LastWriteTime -lt (Get-Date).AddDays(-30) } | Remove-Item<\/b><\/p><\/blockquote>\n<p>This script removes files older than 30 days while keeping the entire folder structure untouched.<\/p>\n<h2><b>Delete Only Files and Not Folders &#8211; Code Free Solution<\/b><\/h2>\n<p>If you are facing trouble while using these PowerShell commands. So, you can use <a href=\"https:\/\/www.pcvita.com\/file-shredder.html\" target=\"_blank\" rel=\"noopener\"><b>PCVITA File Eraser Software<\/b><\/a> which gives you the option to select and delete files and not affect folders using simple steps. As, there is no requirement of any technical expertise as it is a code-free solution to do it. By following this tool, you can easily manage your file &amp; folder structure very well for an easy process.<\/p>\n<nav id=\"nav-tab\" class=\"nav nav-tabs\" role=\"tablist\"><a id=\"nav-win-tab\" class=\"nav-link active\" role=\"tab\" href=\"#nav-win\" data-bs-toggle=\"tab\" aria-controls=\"nav-win\">Windows<\/a><a id=\"nav-mac-tab\" class=\"nav-link\" role=\"tab\" href=\"#nav-mac\" data-bs-toggle=\"tab\" aria-controls=\"nav-mac\"> Mac<\/a><\/nav>\n<div id=\"nav-tabContent\" class=\"tab-content py-3\">\n<div id=\"nav-win\" class=\"tab-pane fade show active\" role=\"tabpanel\" aria-labelledby=\"nav-win-tab\">\n<div class=\"d-flex\">\n<p class=\"text-center\"><a class=\"btn btn-lg btn-success btn-md-block m-2\" href=\"https:\/\/www.pcvita.com\/download\/SYS4D2W8P\/18\" rel=\"nofollow\">Download Now<\/a> <a class=\"btn btn-lg btn-danger btn-md-block m-2\" href=\"https:\/\/www.pcvita.com\/buy\/SYS4D2W8P\/18\" target=\"_blank\" rel=\"noopener noreferrer nofollow\">Purchase Now<\/a><\/p>\n<\/div>\n<\/div>\n<div id=\"nav-mac\" class=\"tab-pane fade\" role=\"tabpanel\" aria-labelledby=\"nav-mac-tab\">\n<div class=\"d-flex\">\n<p class=\"text-center\"><a class=\"btn btn-lg btn-success btn-md-block m-2\" href=\"https:\/\/www.pcvita.com\/download\/SYS4M3D0W\/18\" rel=\"nofollow\">Download Now<\/a> <a class=\"btn btn-lg btn-danger btn-md-block m-2\" href=\"https:\/\/www.pcvita.com\/buy\/SYS4M3D0W\/18\" target=\"_blank\" rel=\"noopener noreferrer nofollow\">Purchase Now<\/a><\/p>\n<\/div>\n<\/div>\n<\/div>\n<h3><b>Conclusion\u00a0<\/b><\/h3>\n<p>We have mentioned various steps to delete only files not folders using PowerShell methods. But, it can be complicated as it involves technical steps. So, it is not possible for all the users to perform this task. For that, we have provided you an alternative option which is our automated solution. Follow these steps to delete only files and not folders effectively.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Overview: Here, in this blog we are going to know why we need to delete only files and not folders <\/p>\n","protected":false},"author":16,"featured_media":15579,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[379],"tags":[],"class_list":["post-15578","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-how-to"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Delete Only Files Not Folders Using PowerShell Mode<\/title>\n<meta name=\"description\" content=\"Learn how to delete only files and make your folders intact using powershell. Follow these methods to efficiently clean up your device without removing directories.\" \/>\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.pcvita.com\/blog\/delete-only-files-not-folders-powershell.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Delete Only Files Not Folders Using PowerShell Mode\" \/>\n<meta property=\"og:description\" content=\"Learn how to delete only files and make your folders intact using powershell. Follow these methods to efficiently clean up your device without removing directories.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pcvita.com\/blog\/delete-only-files-not-folders-powershell.html\" \/>\n<meta property=\"og:site_name\" content=\"PCVITA Official Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-07T07:09:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.pcvita.com\/blog\/wp-content\/uploads\/2025\/04\/Add-a-heading-16.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"450\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Ashwani Tiwari\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ashwani Tiwari\" \/>\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.pcvita.com\\\/blog\\\/delete-only-files-not-folders-powershell.html#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/delete-only-files-not-folders-powershell.html\"},\"author\":{\"name\":\"Ashwani Tiwari\",\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/#\\\/schema\\\/person\\\/65a4ed84fa7404aa637dceea6619206a\"},\"headline\":\"Delete Only Files Not Folders Using PowerShell &#8211; Complete Steps\",\"datePublished\":\"2025-04-07T07:09:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/delete-only-files-not-folders-powershell.html\"},\"wordCount\":568,\"image\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/delete-only-files-not-folders-powershell.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/Add-a-heading-16.jpg\",\"articleSection\":[\"how to\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/delete-only-files-not-folders-powershell.html\",\"url\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/delete-only-files-not-folders-powershell.html\",\"name\":\"Delete Only Files Not Folders Using PowerShell Mode\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/delete-only-files-not-folders-powershell.html#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/delete-only-files-not-folders-powershell.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/Add-a-heading-16.jpg\",\"datePublished\":\"2025-04-07T07:09:09+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/#\\\/schema\\\/person\\\/65a4ed84fa7404aa637dceea6619206a\"},\"description\":\"Learn how to delete only files and make your folders intact using powershell. Follow these methods to efficiently clean up your device without removing directories.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/delete-only-files-not-folders-powershell.html#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/delete-only-files-not-folders-powershell.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/delete-only-files-not-folders-powershell.html#primaryimage\",\"url\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/Add-a-heading-16.jpg\",\"contentUrl\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/Add-a-heading-16.jpg\",\"width\":750,\"height\":450,\"caption\":\"delete only files not folders using powershell\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/delete-only-files-not-folders-powershell.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.pcvita.com\\\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Delete Only Files Not Folders Using PowerShell &#8211; Complete Steps\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/\",\"name\":\"PCVITA Official Blog\",\"description\":\"Technology Solution that Matters\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/#\\\/schema\\\/person\\\/65a4ed84fa7404aa637dceea6619206a\",\"name\":\"Ashwani Tiwari\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2140b54c0cce2d0e03ba475ec1ffb609754f10e0acdd155f2c328439daf97c30?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2140b54c0cce2d0e03ba475ec1ffb609754f10e0acdd155f2c328439daf97c30?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2140b54c0cce2d0e03ba475ec1ffb609754f10e0acdd155f2c328439daf97c30?s=96&d=mm&r=g\",\"caption\":\"Ashwani Tiwari\"},\"description\":\"I am an Expert Technical Analyst, specialized in assisting users with complex technological challenges. Through my blogs and articles, I offer expert guidance to help tackle these technical issues effectively. My true passion lies in providing valuable insights and simplifying complicated technicalities, enhancing user understanding and confidence.\",\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/in\\\/ashwani-tiwari\\\/\",\"https:\\\/\\\/www.pcvita.com\\\/assets\\\/author\\\/ashwani.png\"],\"url\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/author\\\/ashwani\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Delete Only Files Not Folders Using PowerShell Mode","description":"Learn how to delete only files and make your folders intact using powershell. Follow these methods to efficiently clean up your device without removing directories.","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.pcvita.com\/blog\/delete-only-files-not-folders-powershell.html","og_locale":"en_US","og_type":"article","og_title":"Delete Only Files Not Folders Using PowerShell Mode","og_description":"Learn how to delete only files and make your folders intact using powershell. Follow these methods to efficiently clean up your device without removing directories.","og_url":"https:\/\/www.pcvita.com\/blog\/delete-only-files-not-folders-powershell.html","og_site_name":"PCVITA Official Blog","article_published_time":"2025-04-07T07:09:09+00:00","og_image":[{"width":750,"height":450,"url":"https:\/\/www.pcvita.com\/blog\/wp-content\/uploads\/2025\/04\/Add-a-heading-16.jpg","type":"image\/jpeg"}],"author":"Ashwani Tiwari","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ashwani Tiwari","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.pcvita.com\/blog\/delete-only-files-not-folders-powershell.html#article","isPartOf":{"@id":"https:\/\/www.pcvita.com\/blog\/delete-only-files-not-folders-powershell.html"},"author":{"name":"Ashwani Tiwari","@id":"https:\/\/www.pcvita.com\/blog\/#\/schema\/person\/65a4ed84fa7404aa637dceea6619206a"},"headline":"Delete Only Files Not Folders Using PowerShell &#8211; Complete Steps","datePublished":"2025-04-07T07:09:09+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pcvita.com\/blog\/delete-only-files-not-folders-powershell.html"},"wordCount":568,"image":{"@id":"https:\/\/www.pcvita.com\/blog\/delete-only-files-not-folders-powershell.html#primaryimage"},"thumbnailUrl":"https:\/\/www.pcvita.com\/blog\/wp-content\/uploads\/2025\/04\/Add-a-heading-16.jpg","articleSection":["how to"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.pcvita.com\/blog\/delete-only-files-not-folders-powershell.html","url":"https:\/\/www.pcvita.com\/blog\/delete-only-files-not-folders-powershell.html","name":"Delete Only Files Not Folders Using PowerShell Mode","isPartOf":{"@id":"https:\/\/www.pcvita.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.pcvita.com\/blog\/delete-only-files-not-folders-powershell.html#primaryimage"},"image":{"@id":"https:\/\/www.pcvita.com\/blog\/delete-only-files-not-folders-powershell.html#primaryimage"},"thumbnailUrl":"https:\/\/www.pcvita.com\/blog\/wp-content\/uploads\/2025\/04\/Add-a-heading-16.jpg","datePublished":"2025-04-07T07:09:09+00:00","author":{"@id":"https:\/\/www.pcvita.com\/blog\/#\/schema\/person\/65a4ed84fa7404aa637dceea6619206a"},"description":"Learn how to delete only files and make your folders intact using powershell. Follow these methods to efficiently clean up your device without removing directories.","breadcrumb":{"@id":"https:\/\/www.pcvita.com\/blog\/delete-only-files-not-folders-powershell.html#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pcvita.com\/blog\/delete-only-files-not-folders-powershell.html"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.pcvita.com\/blog\/delete-only-files-not-folders-powershell.html#primaryimage","url":"https:\/\/www.pcvita.com\/blog\/wp-content\/uploads\/2025\/04\/Add-a-heading-16.jpg","contentUrl":"https:\/\/www.pcvita.com\/blog\/wp-content\/uploads\/2025\/04\/Add-a-heading-16.jpg","width":750,"height":450,"caption":"delete only files not folders using powershell"},{"@type":"BreadcrumbList","@id":"https:\/\/www.pcvita.com\/blog\/delete-only-files-not-folders-powershell.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pcvita.com\/blog"},{"@type":"ListItem","position":2,"name":"Delete Only Files Not Folders Using PowerShell &#8211; Complete Steps"}]},{"@type":"WebSite","@id":"https:\/\/www.pcvita.com\/blog\/#website","url":"https:\/\/www.pcvita.com\/blog\/","name":"PCVITA Official Blog","description":"Technology Solution that Matters","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.pcvita.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.pcvita.com\/blog\/#\/schema\/person\/65a4ed84fa7404aa637dceea6619206a","name":"Ashwani Tiwari","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/2140b54c0cce2d0e03ba475ec1ffb609754f10e0acdd155f2c328439daf97c30?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2140b54c0cce2d0e03ba475ec1ffb609754f10e0acdd155f2c328439daf97c30?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2140b54c0cce2d0e03ba475ec1ffb609754f10e0acdd155f2c328439daf97c30?s=96&d=mm&r=g","caption":"Ashwani Tiwari"},"description":"I am an Expert Technical Analyst, specialized in assisting users with complex technological challenges. Through my blogs and articles, I offer expert guidance to help tackle these technical issues effectively. My true passion lies in providing valuable insights and simplifying complicated technicalities, enhancing user understanding and confidence.","sameAs":["https:\/\/www.linkedin.com\/in\/ashwani-tiwari\/","https:\/\/www.pcvita.com\/assets\/author\/ashwani.png"],"url":"https:\/\/www.pcvita.com\/blog\/author\/ashwani"}]}},"_links":{"self":[{"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/posts\/15578","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/users\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/comments?post=15578"}],"version-history":[{"count":0,"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/posts\/15578\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/media\/15579"}],"wp:attachment":[{"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/media?parent=15578"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/categories?post=15578"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/tags?post=15578"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}