{"id":346,"date":"2020-12-11T18:29:26","date_gmt":"2020-12-11T10:29:26","guid":{"rendered":"https:\/\/blog.alyssachan.space\/uncategorized\/site-health-recommended-security-headers\/"},"modified":"2025-07-31T15:26:21","modified_gmt":"2025-07-31T07:26:21","slug":"site-health-recommended-security-headers","status":"publish","type":"post","link":"https:\/\/blog.alyssachan.space\/en\/site-health-recommended-security-headers\/","title":{"rendered":"Adding SSL Security Headers"},"content":{"rendered":"\r\n<p>Recently upgraded to WordPress 5.6, and I found that there is an SSL error in Site Health: Not all recommended security headers are installed. It can be resolved by adding a few lines to .htaccess.<\/p>\r\n\r\n\r\n\r\n<!--more-->\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">Contents<\/h2>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\"><li><a href=\"#site-health-error\">SSL Error in Site Health of WordPress<\/a><\/li><li><a href=\"#edit-htaccess\">Editing .htaccess<\/a><\/li><li><a href=\"#reference\">References<\/a><\/li><\/ul>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\" id=\"site-health-error\">SSL Error in Site Health of WordPress<\/h2>\r\n\r\n\r\n\r\n<p>If you found the below error, you can follow this tutorial to resolve it.<\/p>\r\n\r\n\r\n\r\n<p><strong>Not all recommended security headers are installed<\/strong><\/p>\r\n\r\n\r\n\r\n<p>Your <code>.htaccess<\/code> file does not contain all recommended security headers.<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\"><li>HTTP Strict Transport Security<\/li><li>Content Security Policy: Upgrade Insecure Requests<\/li><li>X-XSS protection<\/li><li>X-Content Type Options<\/li><li>Referrer-Policy<\/li><li>Expect-CT<\/li><\/ul>\r\n\r\n\r\n\r\n<p>The security headers are:<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\"><li><strong>HSTS<\/strong>&nbsp;(HTTP Strict Transport Security) \u2013 a browser will do all requests to your site over HTTPS from then on when this header is set on your domain.<\/li><li><strong>CSP: Upgrade Insecure Requests<\/strong> \u2013 directive instructs user agents to treat all of a site&#8217;s insecure URLs (those served over HTTP) as though they have been replaced with secure URLs (those served over HTTPS). This directive is intended for web sites with large numbers of insecure legacy URLs that need to be rewritten.<\/li><li><strong>X-XSS protection<\/strong>&nbsp;\u2013 will stop pages from loading if a reflected cross-site scripting (XSS) attack is detected.<\/li><li><strong>X-Content Type Options<\/strong>&nbsp;\u2013 will force the browser not to \u201cguess\u201d what kind of data is passed. If the extension is \u201c.doc\u201d, the browser should get a .doc file, not something else (a .exe).<\/li><li><strong>Referrer-Policy<\/strong>&nbsp;\u2013 only sets a referrer when going from the same protocol and not when downgrading (HTTPS -&gt; HTTP).<\/li><li><strong>Expect-CT<\/strong> (Certificate Transparency) \u2013 a Certificate Authority (the issuer of the SSL certificate) needs to log the certificates that are issued in a separate log, the CT framework., preventing fraud.<\/li><\/ul>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\" id=\"edit-htaccess\">Editing <code>.htaccess<\/code> <\/h2>\r\n\r\n\r\n\r\n<p>If you have FTP access, find the <code>.htaccess<\/code> under root directory and add the below <code>Recommended security headers<\/code> above <code># BEGIN WordPress<\/code>.<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code># Recommended security headers\r\nHeader always set Strict-Transport-Security: \"max-age=31536000\" env=HTTPS\r\nHeader always set Content-Security-Policy \"upgrade-insecure-requests;\"\r\nHeader always set X-XSS-Protection \"1; mode=block\"\r\nHeader always set X-Content-Type-Options \"nosniff\"\r\nHeader always set Referrer-Policy: \"no-referrer-when-downgrade\"\r\nHeader always set Expect-CT \"max-age=7776000, enforce\"\r\n# End Recommended security headers<\/code><\/pre>\r\n\r\n\r\n\r\n<p>The final <code>.htaccess<\/code>:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code># Recommended security headers\r\nHeader always set Strict-Transport-Security: \"max-age=31536000\" env=HTTPS\r\nHeader always set Content-Security-Policy \"upgrade-insecure-requests;\"\r\nHeader always set X-XSS-Protection \"1; mode=block\"\r\nHeader always set X-Content-Type-Options \"nosniff\"\r\nHeader always set Referrer-Policy: \"no-referrer-when-downgrade\"\r\nHeader always set Expect-CT \"max-age=7776000, enforce\"\r\n# End Recommended security headers\r\n\r\n# BEGIN WordPress\r\n...\r\n<\/code><\/pre>\r\n\r\n\r\n\r\n<p>Notes: To remove HSTS. Keep the line, but set max-age to zero. Or  <code>\"max-age=0\"<\/code>\u3002<\/p>\r\n\r\n\r\n\r\n<p>Scan the Site Health again.<\/p>\r\n\r\n\r\n\r\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img decoding=\"async\" src=\"https:\/\/1.bp.blogspot.com\/-D7W43yZtwwY\/X9NJvk4XDOI\/AAAAAAAAuoQ\/arwx-9XYDAwsR4lFjAHqZBWUJ8oGuCI4QCLcBGAsYHQ\/s2048\/site-health-good.png\" alt=\"\"\/><figcaption>Great job! Everything is running smoothly here.<\/figcaption><\/figure><\/div>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\" id=\"reference\">References<\/h2>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\"><li><a href=\"https:\/\/really-simple-ssl.com\/site-health-recommended-security-headers\/\">Manually adding recommended security headers &#8211; Really Simple SSL<\/a><\/li><li><a href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/HTTP\/Headers\/Content-Security-Policy\/upgrade-insecure-requests\">CSP: upgrade-insecure-requests &#8211; MDN<\/a><\/li><li><a href=\"https:\/\/gist.github.com\/jacobovidal\/ef5015e4e05905c6ec684425cf30bc9b\">Upgrade Insecure Requests via .htaccess or meta tag to prevent mixed content &#8211; Jacobo Vidal<\/a><\/li><\/ul>\r\n","protected":false},"excerpt":{"rendered":"<p>Recently upgraded to WordPress 5.6, and I found that there is an SSL error in Site Health: Not all recommended security headers are installed. It can be resolved by adding a few lines to .htaccess.<\/p>\n","protected":false},"author":1,"featured_media":754,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[63,78],"tags":[249,250,251],"class_list":["post-346","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-web-development","category-wordpress-tutorial","tag-security-headers","tag-ssl","tag-wordpress","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Adding SSL Security Headers - WordPress Tutorial - Lennett Chan<\/title>\n<meta name=\"description\" content=\"Recently upgraded to WordPress 5.6, and I found that there is an SSL error in Site Health: Not all recommended security headers are installed. It can be resolved by adding a few lines to .htaccess.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blog.alyssachan.space\/en\/site-health-recommended-security-headers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Adding SSL Security Headers - WordPress Tutorial - Lennett Chan\" \/>\n<meta property=\"og:description\" content=\"Recently upgraded to WordPress 5.6, and I found that there is an SSL error in Site Health: Not all recommended security headers are installed. It can be resolved by adding a few lines to .htaccess.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.alyssachan.space\/site-health-recommended-security-headers\/\" \/>\n<meta property=\"og:site_name\" content=\"Lennett Chan\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/lennett725\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/lennett725\" \/>\n<meta property=\"article:published_time\" content=\"2020-12-11T10:29:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-31T07:26:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.alyssachan.space\/wp-content\/uploads\/wordpress-tutorial-en.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"\u6ceb\u7fbd Lennett\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lennettchan\" \/>\n<meta name=\"twitter:site\" content=\"@lennettchan\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u6ceb\u7fbd Lennett\" \/>\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:\/\/blog.alyssachan.space\/site-health-recommended-security-headers\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/blog.alyssachan.space\/en\/site-health-recommended-security-headers\/\"},\"author\":{\"name\":\"\u6ceb\u7fbd Lennett\",\"@id\":\"https:\/\/blog.alyssachan.space\/en\/#\/schema\/person\/9923cea57b71cad7b1397d70b2231eee\"},\"headline\":\"Adding SSL Security Headers\",\"datePublished\":\"2020-12-11T10:29:26+00:00\",\"dateModified\":\"2025-07-31T07:26:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/blog.alyssachan.space\/en\/site-health-recommended-security-headers\/\"},\"wordCount\":360,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/blog.alyssachan.space\/en\/#\/schema\/person\/9923cea57b71cad7b1397d70b2231eee\"},\"image\":{\"@id\":\"https:\/\/blog.alyssachan.space\/site-health-recommended-security-headers\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blog.alyssachan.space\/wp-content\/uploads\/wordpress-tutorial-en.png\",\"keywords\":[\"security headers\",\"SSL\",\"WordPress\"],\"articleSection\":[\"Web Development\",\"WordPress Tutorial\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/blog.alyssachan.space\/site-health-recommended-security-headers\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/blog.alyssachan.space\/en\/site-health-recommended-security-headers\/\",\"url\":\"https:\/\/blog.alyssachan.space\/site-health-recommended-security-headers\/\",\"name\":\"Adding SSL Security Headers - WordPress Tutorial - Lennett Chan\",\"isPartOf\":{\"@id\":\"https:\/\/blog.alyssachan.space\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/blog.alyssachan.space\/site-health-recommended-security-headers\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/blog.alyssachan.space\/site-health-recommended-security-headers\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blog.alyssachan.space\/wp-content\/uploads\/wordpress-tutorial-en.png\",\"datePublished\":\"2020-12-11T10:29:26+00:00\",\"dateModified\":\"2025-07-31T07:26:21+00:00\",\"description\":\"Recently upgraded to WordPress 5.6, and I found that there is an SSL error in Site Health: Not all recommended security headers are installed. It can be resolved by adding a few lines to .htaccess.\",\"breadcrumb\":{\"@id\":\"https:\/\/blog.alyssachan.space\/site-health-recommended-security-headers\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/blog.alyssachan.space\/site-health-recommended-security-headers\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/blog.alyssachan.space\/site-health-recommended-security-headers\/#primaryimage\",\"url\":\"https:\/\/blog.alyssachan.space\/wp-content\/uploads\/wordpress-tutorial-en.png\",\"contentUrl\":\"https:\/\/blog.alyssachan.space\/wp-content\/uploads\/wordpress-tutorial-en.png\",\"width\":1920,\"height\":1080,\"caption\":\"Adding SSL Security Headers\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/blog.alyssachan.space\/site-health-recommended-security-headers\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/blog.alyssachan.space\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Adding SSL Security Headers\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blog.alyssachan.space\/en\/#website\",\"url\":\"https:\/\/blog.alyssachan.space\/en\/\",\"name\":\"Lennett Chan\",\"description\":\"Let&#039;s Grow Together\",\"publisher\":{\"@id\":\"https:\/\/blog.alyssachan.space\/en\/#\/schema\/person\/9923cea57b71cad7b1397d70b2231eee\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blog.alyssachan.space\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/blog.alyssachan.space\/en\/#\/schema\/person\/9923cea57b71cad7b1397d70b2231eee\",\"name\":\"\u6ceb\u7fbd Lennett\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/1cc0132135a1d718be766318ccd8ec51fc7ab33270a9d08fe5f0b42914d0c1d8?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1cc0132135a1d718be766318ccd8ec51fc7ab33270a9d08fe5f0b42914d0c1d8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1cc0132135a1d718be766318ccd8ec51fc7ab33270a9d08fe5f0b42914d0c1d8?s=96&d=mm&r=g\",\"caption\":\"\u6ceb\u7fbd Lennett\"},\"logo\":{\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/1cc0132135a1d718be766318ccd8ec51fc7ab33270a9d08fe5f0b42914d0c1d8?s=96&d=mm&r=g\"},\"sameAs\":[\"https:\/\/lennett.cc\",\"https:\/\/www.facebook.com\/lennett725\",\"https:\/\/www.instagram.com\/lennettchan\",\"https:\/\/www.linkedin.com\/in\/lennett\",\"https:\/\/www.pinterest.com\/lennettchan\",\"https:\/\/x.com\/lennettchan\",\"https:\/\/www.youtube.com\/channel\/UCVcY0oInOCDO0QOKgj7g7WQ?sub_confirmation=1\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Adding SSL Security Headers - WordPress Tutorial - Lennett Chan","description":"Recently upgraded to WordPress 5.6, and I found that there is an SSL error in Site Health: Not all recommended security headers are installed. It can be resolved by adding a few lines to .htaccess.","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:\/\/blog.alyssachan.space\/en\/site-health-recommended-security-headers\/","og_locale":"en_US","og_type":"article","og_title":"Adding SSL Security Headers - WordPress Tutorial - Lennett Chan","og_description":"Recently upgraded to WordPress 5.6, and I found that there is an SSL error in Site Health: Not all recommended security headers are installed. It can be resolved by adding a few lines to .htaccess.","og_url":"https:\/\/blog.alyssachan.space\/site-health-recommended-security-headers\/","og_site_name":"Lennett Chan","article_publisher":"https:\/\/www.facebook.com\/lennett725","article_author":"https:\/\/www.facebook.com\/lennett725","article_published_time":"2020-12-11T10:29:26+00:00","article_modified_time":"2025-07-31T07:26:21+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/blog.alyssachan.space\/wp-content\/uploads\/wordpress-tutorial-en.png","type":"image\/png"}],"author":"\u6ceb\u7fbd Lennett","twitter_card":"summary_large_image","twitter_creator":"@lennettchan","twitter_site":"@lennettchan","twitter_misc":{"Written by":"\u6ceb\u7fbd Lennett","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.alyssachan.space\/site-health-recommended-security-headers\/#article","isPartOf":{"@id":"https:\/\/blog.alyssachan.space\/en\/site-health-recommended-security-headers\/"},"author":{"name":"\u6ceb\u7fbd Lennett","@id":"https:\/\/blog.alyssachan.space\/en\/#\/schema\/person\/9923cea57b71cad7b1397d70b2231eee"},"headline":"Adding SSL Security Headers","datePublished":"2020-12-11T10:29:26+00:00","dateModified":"2025-07-31T07:26:21+00:00","mainEntityOfPage":{"@id":"https:\/\/blog.alyssachan.space\/en\/site-health-recommended-security-headers\/"},"wordCount":360,"commentCount":0,"publisher":{"@id":"https:\/\/blog.alyssachan.space\/en\/#\/schema\/person\/9923cea57b71cad7b1397d70b2231eee"},"image":{"@id":"https:\/\/blog.alyssachan.space\/site-health-recommended-security-headers\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.alyssachan.space\/wp-content\/uploads\/wordpress-tutorial-en.png","keywords":["security headers","SSL","WordPress"],"articleSection":["Web Development","WordPress Tutorial"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blog.alyssachan.space\/site-health-recommended-security-headers\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blog.alyssachan.space\/en\/site-health-recommended-security-headers\/","url":"https:\/\/blog.alyssachan.space\/site-health-recommended-security-headers\/","name":"Adding SSL Security Headers - WordPress Tutorial - Lennett Chan","isPartOf":{"@id":"https:\/\/blog.alyssachan.space\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blog.alyssachan.space\/site-health-recommended-security-headers\/#primaryimage"},"image":{"@id":"https:\/\/blog.alyssachan.space\/site-health-recommended-security-headers\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.alyssachan.space\/wp-content\/uploads\/wordpress-tutorial-en.png","datePublished":"2020-12-11T10:29:26+00:00","dateModified":"2025-07-31T07:26:21+00:00","description":"Recently upgraded to WordPress 5.6, and I found that there is an SSL error in Site Health: Not all recommended security headers are installed. It can be resolved by adding a few lines to .htaccess.","breadcrumb":{"@id":"https:\/\/blog.alyssachan.space\/site-health-recommended-security-headers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.alyssachan.space\/site-health-recommended-security-headers\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.alyssachan.space\/site-health-recommended-security-headers\/#primaryimage","url":"https:\/\/blog.alyssachan.space\/wp-content\/uploads\/wordpress-tutorial-en.png","contentUrl":"https:\/\/blog.alyssachan.space\/wp-content\/uploads\/wordpress-tutorial-en.png","width":1920,"height":1080,"caption":"Adding SSL Security Headers"},{"@type":"BreadcrumbList","@id":"https:\/\/blog.alyssachan.space\/site-health-recommended-security-headers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blog.alyssachan.space\/en\/"},{"@type":"ListItem","position":2,"name":"Adding SSL Security Headers"}]},{"@type":"WebSite","@id":"https:\/\/blog.alyssachan.space\/en\/#website","url":"https:\/\/blog.alyssachan.space\/en\/","name":"Lennett Chan","description":"Let&#039;s Grow Together","publisher":{"@id":"https:\/\/blog.alyssachan.space\/en\/#\/schema\/person\/9923cea57b71cad7b1397d70b2231eee"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.alyssachan.space\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/blog.alyssachan.space\/en\/#\/schema\/person\/9923cea57b71cad7b1397d70b2231eee","name":"\u6ceb\u7fbd Lennett","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1cc0132135a1d718be766318ccd8ec51fc7ab33270a9d08fe5f0b42914d0c1d8?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1cc0132135a1d718be766318ccd8ec51fc7ab33270a9d08fe5f0b42914d0c1d8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1cc0132135a1d718be766318ccd8ec51fc7ab33270a9d08fe5f0b42914d0c1d8?s=96&d=mm&r=g","caption":"\u6ceb\u7fbd Lennett"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/1cc0132135a1d718be766318ccd8ec51fc7ab33270a9d08fe5f0b42914d0c1d8?s=96&d=mm&r=g"},"sameAs":["https:\/\/lennett.cc","https:\/\/www.facebook.com\/lennett725","https:\/\/www.instagram.com\/lennettchan","https:\/\/www.linkedin.com\/in\/lennett","https:\/\/www.pinterest.com\/lennettchan","https:\/\/x.com\/lennettchan","https:\/\/www.youtube.com\/channel\/UCVcY0oInOCDO0QOKgj7g7WQ?sub_confirmation=1"]}]}},"meta_box":[],"_links":{"self":[{"href":"https:\/\/blog.alyssachan.space\/en\/wp-json\/wp\/v2\/posts\/346","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.alyssachan.space\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.alyssachan.space\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.alyssachan.space\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.alyssachan.space\/en\/wp-json\/wp\/v2\/comments?post=346"}],"version-history":[{"count":0,"href":"https:\/\/blog.alyssachan.space\/en\/wp-json\/wp\/v2\/posts\/346\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.alyssachan.space\/en\/wp-json\/wp\/v2\/media\/754"}],"wp:attachment":[{"href":"https:\/\/blog.alyssachan.space\/en\/wp-json\/wp\/v2\/media?parent=346"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.alyssachan.space\/en\/wp-json\/wp\/v2\/categories?post=346"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.alyssachan.space\/en\/wp-json\/wp\/v2\/tags?post=346"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}