{"id":30,"date":"2025-08-10T05:53:23","date_gmt":"2025-08-10T05:53:23","guid":{"rendered":"https:\/\/codesigncert.com\/blognew\/digitally-sign-excel-macro-using-code-signing\/"},"modified":"2026-07-24T13:38:31","modified_gmt":"2026-07-24T13:38:31","slug":"digitally-sign-excel-macro-using-code-signing","status":"publish","type":"post","link":"https:\/\/codesigncert.com\/blog\/digitally-sign-excel-macro-using-code-signing","title":{"rendered":"Digitally Signing Excel Macro Project Using Code Signing"},"content":{"rendered":"<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_85 ez-toc-wrap-right counter-hierarchy ez-toc-counter ez-toc-grey ez-toc-container-direction\">\n<div class=\"ez-toc-title-container\">\n<p class=\"ez-toc-title\" style=\"cursor:inherit\">Table of Contents<\/p>\n<span class=\"ez-toc-title-toggle\"><\/span><\/div>\n<nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"#\" data-href=\"https:\/\/codesigncert.com\/blog\/digitally-sign-excel-macro-using-code-signing\/#Introduction\" >Introduction<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"#\" data-href=\"https:\/\/codesigncert.com\/blog\/digitally-sign-excel-macro-using-code-signing\/#About_code_signing_and_why_is_it_important_for_Excel_macros\" >About code signing and why is it important for Excel macros?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"#\" data-href=\"https:\/\/codesigncert.com\/blog\/digitally-sign-excel-macro-using-code-signing\/#Things_you_need_to_do_before_you_can_digitally_sign_Excel_macros\" >Things you need to do before you can digitally sign Excel macros<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"#\" data-href=\"https:\/\/codesigncert.com\/blog\/digitally-sign-excel-macro-using-code-signing\/#Step-by-Step_How_to_Digitally_Sign_Your_Excel_Macro_Project\" >Step-by-Step: How to Digitally Sign Your Excel Macro Project<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-5\" href=\"#\" data-href=\"https:\/\/codesigncert.com\/blog\/digitally-sign-excel-macro-using-code-signing\/#Taking_care_of_certificate_expirations_and_renewals\" >Taking care of certificate expirations and renewals<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-6\" href=\"#\" data-href=\"https:\/\/codesigncert.com\/blog\/digitally-sign-excel-macro-using-code-signing\/#Fixing_common_problems\" >Fixing common problems<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-7\" href=\"#\" data-href=\"https:\/\/codesigncert.com\/blog\/digitally-sign-excel-macro-using-code-signing\/#How_to_Sign_Excel_Macro_Code_the_Right_Way\" >How to Sign Excel Macro Code the Right Way<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-8\" href=\"#\" data-href=\"https:\/\/codesigncert.com\/blog\/digitally-sign-excel-macro-using-code-signing\/#To_sum_up\" >To sum up<\/a><\/li><\/ul><\/nav><\/div>\n<div class=\"col-lg-12 mb-3 p-2\">\n<h2><span class=\"ez-toc-section\" id=\"Introduction\"><\/span>Introduction<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>\n        Macros in Microsoft Excel are powerful tools that can do complicated tasks automatically.<br \/>\n        Excel often turns off or warns about unsigned macros because they can be dangerous, especially<br \/>\n        in business settings. You need to digitally sign your Excel macro project with a code signing<br \/>\n        certificate to get around these problems and make sure that your macro code is safe.\n    <\/p>\n<p>\n        In this guide, we&#8217;ll show you how to digitally sign your Excel macros from start to finish.<br \/>\n        We&#8217;ll explain what it is, why it&#8217;s important, and how to do it safely.\n    <\/p>\n<h2><span class=\"ez-toc-section\" id=\"About_code_signing_and_why_is_it_important_for_Excel_macros\"><\/span>About code signing and why is it important for Excel macros?<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>Signing code means putting a digital signature on software or scripts to prove who wrote them and make sure that the code hasn&#8217;t been changed since it was signed. In the world of Excel macros, code signing means:<\/p>\n<ul>\n<li>Checks to see who made the macro.<\/li>\n<li>Stops people from messing with the macro.<\/li>\n<li>Gets rid of or lowers security warnings in Excel.<\/li>\n<li>Lets the macro run in places where macro security settings are very strict.<\/li>\n<\/ul>\n<p>\n        If you don&#8217;t sign your code, your macros might be blocked or raise red flags,<br \/>\n        especially on corporate networks or systems with antivirus software.\n    <\/p>\n<h2><span class=\"ez-toc-section\" id=\"Things_you_need_to_do_before_you_can_digitally_sign_Excel_macros\"><\/span>Things you need to do before you can digitally sign Excel macros<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<ul>\n<li><strong>Code Signing Certificate:<\/strong> A valid Organization Validation (OV) or Extended Validation (EV) certificate from a trusted Certificate Authority (CA) like DigiCert, Sectigo, or SSL.com.<\/li>\n<li>Excel installed with the Developer tab enabled.<\/li>\n<li><strong>Certificate Installed:<\/strong> The certificate should be in the Windows Personal Certificate Store.<\/li>\n<li>(Optional for Testing) Use Microsoft&#8217;s SelfCert to make a self-signed certificate for development purposes only.<\/li>\n<\/ul>\n<h2><span class=\"ez-toc-section\" id=\"Step-by-Step_How_to_Digitally_Sign_Your_Excel_Macro_Project\"><\/span>Step-by-Step: How to Digitally Sign Your Excel Macro Project<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<h3>Step 1: Open the Excel file that has your macro or VBA project in it<\/h3>\n<ul>\n<li>Open the Excel file with your macros.<\/li>\n<li>Enable the Developer tab via <em>File &gt; Options &gt; Customize Ribbon<\/em> and check <strong>Developer<\/strong>.<\/li>\n<li>Press <strong>Alt + F11<\/strong> to open the VBA Editor.<\/li>\n<\/ul>\n<h3>Step 2: Open the VBA Project<\/h3>\n<ul>\n<li>In the Project Explorer, locate your macro project.<\/li>\n<li>Ensure your code is complete and tested before signing.<\/li>\n<\/ul>\n<h3>Step 3: Pick the Certificate for Code Signing<\/h3>\n<ul>\n<li>In the VBA Editor, go to <em>Tools &gt; Digital Signature<\/em>.<\/li>\n<li>Click <strong>Choose<\/strong> in the Digital Signature window.<\/li>\n<li>Select your installed code signing certificate.<\/li>\n<li>Click <strong>OK<\/strong> to confirm.<\/li>\n<\/ul>\n<h3>Step 4: Keep the File with the Signed Macro<\/h3>\n<ul>\n<li>Save the file as <strong>.xlsm<\/strong> or <strong>.xlsb<\/strong>.<\/li>\n<li>Make a backup before signing, in case you need changes later.<\/li>\n<\/ul>\n<h3>Step 5: Checking the Digital Signature<\/h3>\n<ul>\n<li>Reopen the signed Excel file.<\/li>\n<li>Go to <em>File &gt; Info &gt; View Signatures<\/em> to verify.<\/li>\n<li>Test opening the file on another computer to confirm no warnings appear.<\/li>\n<\/ul>\n<h2><span class=\"ez-toc-section\" id=\"Taking_care_of_certificate_expirations_and_renewals\"><\/span>Taking care of certificate expirations and renewals<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<ul>\n<li>Most certificates last 1\u20132 years.<\/li>\n<li>If you time-stamp the file, macros will still run after expiry.<\/li>\n<li>Always add a timestamp when signing.<\/li>\n<li>Re-sign with a new certificate after renewal.<\/li>\n<\/ul>\n<h2><span class=\"ez-toc-section\" id=\"Fixing_common_problems\"><\/span>Fixing common problems<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<ul>\n<li><strong>Certificate Not Visible:<\/strong> Ensure it\u2019s in the personal store of the current user.<\/li>\n<li><strong>Security Warning Still Shows:<\/strong> Set Excel\u2019s macro settings to trust the publisher.<\/li>\n<li><strong>Signature Lost After Edits:<\/strong> Re-sign after modifying macro code.<\/li>\n<li><strong>&#8220;Not to be trusted&#8221; Error:<\/strong> Ensure the certificate is from a trusted CA and not expired.<\/li>\n<\/ul>\n<h2><span class=\"ez-toc-section\" id=\"How_to_Sign_Excel_Macro_Code_the_Right_Way\"><\/span>How to Sign Excel Macro Code the Right Way<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<ul>\n<li>Use EV Certificates for better trust in business settings.<\/li>\n<li>Always include a date on the signature.<\/li>\n<li>Sign only final macro versions.<\/li>\n<li>Use version control to track changes and signatures.<\/li>\n<li>Inform your IT\/security team when deploying signed macros company-wide.<\/li>\n<\/ul>\n<h2><span class=\"ez-toc-section\" id=\"To_sum_up\"><\/span>To sum up<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>\n        Digitally signing Excel macros not only makes them more trustworthy and secure, but also<br \/>\n        ensures easy deployment\u2014especially in businesses. With growing concerns over macro-based<br \/>\n        threats, code signing is now a necessity.\n    <\/p>\n<p>\n        If you&#8217;re a VBA developer or part of an IT team, this guide will help you sign Excel projects<br \/>\n        properly, avoid unnecessary security warnings, and maintain professionalism in your code.\n    <\/p>\n<\/p><\/div>\n<div class=\"col-lg-12 mt-5 mb-4\">\n<h4 class=\"text-primary mb-4 pb-2 border-bottom\">Related Articles<\/h4>\n<div class=\"row g-4\">\n","protected":false},"excerpt":{"rendered":"<p>Macros in Microsoft Excel are powerful tools that can do complicated tasks automatically. Excel often turns off or warns about unsigned macros because they can be dangerous, especially in business<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[],"class_list":["post-30","post","type-post","status-publish","format-standard","hentry","category-code-signing"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Digitally Sign an Excel Macro Project<\/title>\n<meta name=\"description\" content=\"Learn how to digitally sign VBA macros in Excel using a code signing certificate so users aren&#039;t blocked by unsigned macro warnings.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codesigncert.com\/blog\/digitally-sign-excel-macro-using-code-signing\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Digitally Sign an Excel Macro Project\" \/>\n<meta property=\"og:description\" content=\"Learn how to digitally sign VBA macros in Excel using a code signing certificate so users aren&#039;t blocked by unsigned macro warnings.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codesigncert.com\/blog\/digitally-sign-excel-macro-using-code-signing\" \/>\n<meta property=\"og:site_name\" content=\"CodeSignCert\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/codesigncert\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-10T05:53:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-24T13:38:31+00:00\" \/>\n<meta name=\"author\" content=\"Jessica Foster\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codesigncert\" \/>\n<meta name=\"twitter:site\" content=\"@codesigncert\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jessica Foster\" \/>\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:\\\/\\\/codesigncert.com\\\/blog\\\/digitally-sign-excel-macro-using-code-signing#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codesigncert.com\\\/blog\\\/digitally-sign-excel-macro-using-code-signing\"},\"author\":{\"name\":\"Jessica Foster\",\"@id\":\"https:\\\/\\\/codesigncert.com\\\/blog\\\/#\\\/schema\\\/person\\\/9af8cbd9dd564d4534f25cd63a48d02d\"},\"headline\":\"Digitally Signing Excel Macro Project Using Code Signing\",\"datePublished\":\"2025-08-10T05:53:23+00:00\",\"dateModified\":\"2026-07-24T13:38:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codesigncert.com\\\/blog\\\/digitally-sign-excel-macro-using-code-signing\"},\"wordCount\":657,\"articleSection\":[\"Code Signing\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codesigncert.com\\\/blog\\\/digitally-sign-excel-macro-using-code-signing\",\"url\":\"https:\\\/\\\/codesigncert.com\\\/blog\\\/digitally-sign-excel-macro-using-code-signing\",\"name\":\"How to Digitally Sign an Excel Macro Project\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codesigncert.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-08-10T05:53:23+00:00\",\"dateModified\":\"2026-07-24T13:38:31+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/codesigncert.com\\\/blog\\\/#\\\/schema\\\/person\\\/9af8cbd9dd564d4534f25cd63a48d02d\"},\"description\":\"Learn how to digitally sign VBA macros in Excel using a code signing certificate so users aren't blocked by unsigned macro warnings.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codesigncert.com\\\/blog\\\/digitally-sign-excel-macro-using-code-signing#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codesigncert.com\\\/blog\\\/digitally-sign-excel-macro-using-code-signing\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codesigncert.com\\\/blog\\\/digitally-sign-excel-macro-using-code-signing#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codesigncert.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Digitally Signing Excel Macro Project Using Code Signing\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/codesigncert.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/codesigncert.com\\\/blog\\\/\",\"name\":\"CodeSignCert\",\"description\":\"All in One Code Signing Certificate Store\",\"alternateName\":\"Code Sign Cert\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/codesigncert.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codesigncert.com\\\/blog\\\/#\\\/schema\\\/person\\\/9af8cbd9dd564d4534f25cd63a48d02d\",\"name\":\"Jessica Foster\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/540326c0491587e08522922cbd7c078549e5cafa48300998cdd9613a30e2fec4?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/540326c0491587e08522922cbd7c078549e5cafa48300998cdd9613a30e2fec4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/540326c0491587e08522922cbd7c078549e5cafa48300998cdd9613a30e2fec4?s=96&d=mm&r=g\",\"caption\":\"Jessica Foster\"},\"description\":\"Jessica Foster is a contributing writer for the CodeSignCert blog, covering code signing, software security, and certificate management topics. She has 10 years of experience helping developers and businesses secure their software through code signing and related PKI solutions.\",\"sameAs\":[\"https:\\\/\\\/codesigncert.com\"],\"url\":\"https:\\\/\\\/codesigncert.com\\\/blog\\\/author\\\/jessicafoster\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Digitally Sign an Excel Macro Project","description":"Learn how to digitally sign VBA macros in Excel using a code signing certificate so users aren't blocked by unsigned macro warnings.","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:\/\/codesigncert.com\/blog\/digitally-sign-excel-macro-using-code-signing","og_locale":"en_US","og_type":"article","og_title":"How to Digitally Sign an Excel Macro Project","og_description":"Learn how to digitally sign VBA macros in Excel using a code signing certificate so users aren't blocked by unsigned macro warnings.","og_url":"https:\/\/codesigncert.com\/blog\/digitally-sign-excel-macro-using-code-signing","og_site_name":"CodeSignCert","article_publisher":"https:\/\/www.facebook.com\/codesigncert","article_published_time":"2025-08-10T05:53:23+00:00","article_modified_time":"2026-07-24T13:38:31+00:00","author":"Jessica Foster","twitter_card":"summary_large_image","twitter_creator":"@codesigncert","twitter_site":"@codesigncert","twitter_misc":{"Written by":"Jessica Foster","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codesigncert.com\/blog\/digitally-sign-excel-macro-using-code-signing#article","isPartOf":{"@id":"https:\/\/codesigncert.com\/blog\/digitally-sign-excel-macro-using-code-signing"},"author":{"name":"Jessica Foster","@id":"https:\/\/codesigncert.com\/blog\/#\/schema\/person\/9af8cbd9dd564d4534f25cd63a48d02d"},"headline":"Digitally Signing Excel Macro Project Using Code Signing","datePublished":"2025-08-10T05:53:23+00:00","dateModified":"2026-07-24T13:38:31+00:00","mainEntityOfPage":{"@id":"https:\/\/codesigncert.com\/blog\/digitally-sign-excel-macro-using-code-signing"},"wordCount":657,"articleSection":["Code Signing"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/codesigncert.com\/blog\/digitally-sign-excel-macro-using-code-signing","url":"https:\/\/codesigncert.com\/blog\/digitally-sign-excel-macro-using-code-signing","name":"How to Digitally Sign an Excel Macro Project","isPartOf":{"@id":"https:\/\/codesigncert.com\/blog\/#website"},"datePublished":"2025-08-10T05:53:23+00:00","dateModified":"2026-07-24T13:38:31+00:00","author":{"@id":"https:\/\/codesigncert.com\/blog\/#\/schema\/person\/9af8cbd9dd564d4534f25cd63a48d02d"},"description":"Learn how to digitally sign VBA macros in Excel using a code signing certificate so users aren't blocked by unsigned macro warnings.","breadcrumb":{"@id":"https:\/\/codesigncert.com\/blog\/digitally-sign-excel-macro-using-code-signing#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codesigncert.com\/blog\/digitally-sign-excel-macro-using-code-signing"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/codesigncert.com\/blog\/digitally-sign-excel-macro-using-code-signing#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codesigncert.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Digitally Signing Excel Macro Project Using Code Signing"}]},{"@type":"WebSite","@id":"https:\/\/codesigncert.com\/blog\/#website","url":"https:\/\/codesigncert.com\/blog\/","name":"CodeSignCert","description":"All in One Code Signing Certificate Store","alternateName":"Code Sign Cert","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codesigncert.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/codesigncert.com\/blog\/#\/schema\/person\/9af8cbd9dd564d4534f25cd63a48d02d","name":"Jessica Foster","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/540326c0491587e08522922cbd7c078549e5cafa48300998cdd9613a30e2fec4?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/540326c0491587e08522922cbd7c078549e5cafa48300998cdd9613a30e2fec4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/540326c0491587e08522922cbd7c078549e5cafa48300998cdd9613a30e2fec4?s=96&d=mm&r=g","caption":"Jessica Foster"},"description":"Jessica Foster is a contributing writer for the CodeSignCert blog, covering code signing, software security, and certificate management topics. She has 10 years of experience helping developers and businesses secure their software through code signing and related PKI solutions.","sameAs":["https:\/\/codesigncert.com"],"url":"https:\/\/codesigncert.com\/blog\/author\/jessicafoster"}]}},"_links":{"self":[{"href":"https:\/\/codesigncert.com\/blog\/wp-json\/wp\/v2\/posts\/30","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codesigncert.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codesigncert.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codesigncert.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/codesigncert.com\/blog\/wp-json\/wp\/v2\/comments?post=30"}],"version-history":[{"count":1,"href":"https:\/\/codesigncert.com\/blog\/wp-json\/wp\/v2\/posts\/30\/revisions"}],"predecessor-version":[{"id":99,"href":"https:\/\/codesigncert.com\/blog\/wp-json\/wp\/v2\/posts\/30\/revisions\/99"}],"wp:attachment":[{"href":"https:\/\/codesigncert.com\/blog\/wp-json\/wp\/v2\/media?parent=30"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codesigncert.com\/blog\/wp-json\/wp\/v2\/categories?post=30"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codesigncert.com\/blog\/wp-json\/wp\/v2\/tags?post=30"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}