{"id":50,"date":"2024-10-16T22:51:36","date_gmt":"2024-10-17T02:51:36","guid":{"rendered":"http:\/\/localhost:4000\/?p=50"},"modified":"2024-11-14T20:30:59","modified_gmt":"2024-11-15T01:30:59","slug":"stop-using-px-for-font-size","status":"publish","type":"post","link":"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/","title":{"rendered":"Stop using &#8216;px&#8217; for font-size"},"content":{"rendered":"\n<p>Here\u2019s a summary of <strong>how to stop using <code>px<\/code> for font-size<\/strong> and why it\u2019s recommended to switch to <strong>relative units like <code>rem<\/code> or <code>em<\/code><\/strong>.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why You Should Stop Using Pixels (px) for Font Sizes<\/strong><\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Accessibility:<\/strong><\/li>\n<\/ol>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Pixels are <strong>absolute units<\/strong> and don\u2019t respect browser settings for users who need larger text sizes.<\/li>\n\n\n\n<li>Many users with limited vision set larger base font sizes in their browsers, but pixel-based fonts won&#8217;t scale accordingly.<\/li>\n<\/ul>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Relative Units Are Better:<\/strong><\/li>\n<\/ol>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><code>rem<\/code><\/strong> (root em) and <strong><code>em<\/code><\/strong> are <strong>relative units<\/strong> that adjust based on the root font size of the browser or parent element.<\/li>\n\n\n\n<li>They allow the entire website to scale proportionally when users adjust their browser\u2019s default font size.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How to Transition from Pixels (px) to Rems (rem) for Font Sizes<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. <strong>Understand <code>rem<\/code> Basics<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>1 rem<\/strong> equals the <strong>root font size<\/strong> (default is 16px in most browsers).<br>Example:<\/li>\n\n\n\n<li><code>2rem<\/code> = <code>2 * 16px = 32px<\/code><\/li>\n\n\n\n<li>If the browser\u2019s base font size changes to 24px, <code>2rem<\/code> = <code>2 * 24px = 48px<\/code>.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">2. <strong>Convert Pixels to Rems<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Formula:<\/strong> <code>rem = px \/ 16<\/code><br>Example:<\/li>\n\n\n\n<li>16px = <code>1rem<\/code><\/li>\n\n\n\n<li>24px = <code>1.5rem<\/code><\/li>\n\n\n\n<li>32px = <code>2rem<\/code><\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">3. <strong>Using CSS Custom Properties to Simplify Conversion<\/strong><\/h3>\n\n\n\n<p>Define your pixel-to-rem conversions as <strong>CSS custom properties<\/strong> in the <code>:root<\/code> selector to avoid repeated calculations.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>:root {\n  --fs-16px: 1rem;      \/* 16px *\/\n  --fs-24px: 1.5rem;    \/* 24px *\/\n  --fs-32px: 2rem;      \/* 32px *\/\n}<\/code><\/pre>\n\n\n\n<p>Now, use these properties for font sizes:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>h1 {\n  font-size: var(--fs-32px);\n}\np {\n  font-size: var(--fs-16px);\n}<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">4. <strong>Switching to SCSS (or Sass) Functions<\/strong><\/h3>\n\n\n\n<p>If you use <strong>Sass<\/strong>, create a function to convert pixels to rems automatically:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>@function rem($px) {\n  @return #{$px \/ 16}rem;\n}<\/code><\/pre>\n\n\n\n<p>Usage example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>h1 {\n  font-size: rem(32);  \/\/ Compiles to 2rem\n}\np {\n  font-size: rem(16);  \/\/ Compiles to 1rem\n}<\/code><\/pre>\n\n\n\n<p>This saves time and avoids manual calculations.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">5. <strong>Updating Media Queries with Relative Units<\/strong><\/h3>\n\n\n\n<p>Instead of using <code>px<\/code> in media queries, switch to <code>em<\/code> or <code>rem<\/code>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>@media (max-width: 62.5em) { \/* 1000px \/ 16 = 62.5em *\/\n  body {\n    display: block;\n  }\n}<\/code><\/pre>\n\n\n\n<p><strong>Why?<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Relative units ensure that media queries adapt if the user changes the base font size.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">6. <strong>Avoid the 62.5% Font Size Hack<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>In the past, developers used the <strong>62.5% trick<\/strong> to set the <code>html<\/code> element\u2019s font size to <strong>10px<\/strong> (62.5% of 16px) to make calculations easier.<\/li>\n\n\n\n<li><strong>Problem:<\/strong> It breaks compatibility with third-party libraries that expect a 16px base font size.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">7. <strong>Summary Workflow for Transitioning from Pixels to Rems<\/strong><\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Replace <code>px<\/code> values with calculated <code>rem<\/code> values<\/strong> (divide by 16).<\/li>\n\n\n\n<li>Use <strong>CSS custom properties<\/strong> or <strong>Sass functions<\/strong> to simplify your workflow.<\/li>\n\n\n\n<li>Avoid using <code>px<\/code> in <strong>media queries<\/strong>; switch to <code>em<\/code> or <code>rem<\/code>.<\/li>\n\n\n\n<li>Test your website with different <strong>browser font size settings<\/strong> to ensure accessibility.<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Benefits of Using Rems Over Pixels<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Scales with User Preferences:<\/strong> Users can adjust browser font sizes, and your website will scale smoothly.<\/li>\n\n\n\n<li><strong>Improved Accessibility:<\/strong> Easier to meet <strong>WCAG guidelines<\/strong> for text resizing.<\/li>\n\n\n\n<li><strong>Future-Proof Layouts:<\/strong> Your layouts remain consistent even with third-party libraries.<\/li>\n<\/ul>\n\n\n\n<p>By making these changes, your website will become more accessible, adaptable, and maintainable.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe title=\"Please stop using px for font-size.\" width=\"500\" height=\"281\" src=\"https:\/\/www.youtube.com\/embed\/xCSw6bPXZks?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><figcaption class=\"wp-element-caption\">Stop using &#8216;px&#8217; for font-size<\/figcaption><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>Here\u2019s a summary of how to stop using px for font-size and why it\u2019s recommended to switch to relative units like rem or em. Why You Should Stop Using Pixels (px) for Font Sizes How to Transition from Pixels (px) to Rems (rem) for Font Sizes 1. Understand rem Basics 2. Convert Pixels to Rems [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":75,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[26,21,24,25,22,19],"class_list":["post-50","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tech","tag-accessibility","tag-css","tag-em","tag-font","tag-html","tag-web-design"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Stop using &#039;px&#039; for font-size - My Tech Talks with ChatGPT<\/title>\n<meta name=\"description\" content=\"Here\u2019s a summary of how to stop using px for font-size and why it\u2019s recommended to switch to relative units like rem or em.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Stop using &#039;px&#039; for font-size - My Tech Talks with ChatGPT\" \/>\n<meta property=\"og:description\" content=\"Here\u2019s a summary of how to stop using px for font-size and why it\u2019s recommended to switch to relative units like rem or em.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/\" \/>\n<meta property=\"og:site_name\" content=\"My Tech Talks with ChatGPT\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-17T02:51:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-15T01:30:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/stopfontpx-2.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"adminwp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"adminwp\" \/>\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:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/\"},\"author\":{\"name\":\"adminwp\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580\"},\"headline\":\"Stop using &#8216;px&#8217; for font-size\",\"datePublished\":\"2024-10-17T02:51:36+00:00\",\"dateModified\":\"2024-11-15T01:30:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/\"},\"wordCount\":406,\"publisher\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580\"},\"image\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/stopfontpx-2.jpg\",\"keywords\":[\"accessibility\",\"css\",\"em\",\"font\",\"html\",\"web design\"],\"articleSection\":[\"Technology\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/\",\"url\":\"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/\",\"name\":\"Stop using 'px' for font-size - My Tech Talks with ChatGPT\",\"isPartOf\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/stopfontpx-2.jpg\",\"datePublished\":\"2024-10-17T02:51:36+00:00\",\"dateModified\":\"2024-11-15T01:30:59+00:00\",\"description\":\"Here\u2019s a summary of how to stop using px for font-size and why it\u2019s recommended to switch to relative units like rem or em.\",\"breadcrumb\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/#primaryimage\",\"url\":\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/stopfontpx-2.jpg\",\"contentUrl\":\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/stopfontpx-2.jpg\",\"width\":1280,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/zenteno.org\/tech-talks\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Stop using &#8216;px&#8217; for font-size\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#website\",\"url\":\"https:\/\/zenteno.org\/tech-talks\/\",\"name\":\"My Tech Talks with ChatGPT\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/zenteno.org\/tech-talks\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580\",\"name\":\"adminwp\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/IMG_1739.jpg\",\"contentUrl\":\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/IMG_1739.jpg\",\"width\":512,\"height\":512,\"caption\":\"adminwp\"},\"logo\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/image\/\"},\"sameAs\":[\"http:\/\/localhost:4000\"],\"url\":\"https:\/\/zenteno.org\/tech-talks\/author\/adminwp\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Stop using 'px' for font-size - My Tech Talks with ChatGPT","description":"Here\u2019s a summary of how to stop using px for font-size and why it\u2019s recommended to switch to relative units like rem or em.","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:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/","og_locale":"en_US","og_type":"article","og_title":"Stop using 'px' for font-size - My Tech Talks with ChatGPT","og_description":"Here\u2019s a summary of how to stop using px for font-size and why it\u2019s recommended to switch to relative units like rem or em.","og_url":"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/","og_site_name":"My Tech Talks with ChatGPT","article_published_time":"2024-10-17T02:51:36+00:00","article_modified_time":"2024-11-15T01:30:59+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/stopfontpx-2.jpg","type":"image\/jpeg"}],"author":"adminwp","twitter_card":"summary_large_image","twitter_misc":{"Written by":"adminwp","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/#article","isPartOf":{"@id":"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/"},"author":{"name":"adminwp","@id":"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580"},"headline":"Stop using &#8216;px&#8217; for font-size","datePublished":"2024-10-17T02:51:36+00:00","dateModified":"2024-11-15T01:30:59+00:00","mainEntityOfPage":{"@id":"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/"},"wordCount":406,"publisher":{"@id":"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580"},"image":{"@id":"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/#primaryimage"},"thumbnailUrl":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/stopfontpx-2.jpg","keywords":["accessibility","css","em","font","html","web design"],"articleSection":["Technology"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/","url":"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/","name":"Stop using 'px' for font-size - My Tech Talks with ChatGPT","isPartOf":{"@id":"https:\/\/zenteno.org\/tech-talks\/#website"},"primaryImageOfPage":{"@id":"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/#primaryimage"},"image":{"@id":"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/#primaryimage"},"thumbnailUrl":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/stopfontpx-2.jpg","datePublished":"2024-10-17T02:51:36+00:00","dateModified":"2024-11-15T01:30:59+00:00","description":"Here\u2019s a summary of how to stop using px for font-size and why it\u2019s recommended to switch to relative units like rem or em.","breadcrumb":{"@id":"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/#primaryimage","url":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/stopfontpx-2.jpg","contentUrl":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/stopfontpx-2.jpg","width":1280,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/zenteno.org\/tech-talks\/stop-using-px-for-font-size\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zenteno.org\/tech-talks\/"},{"@type":"ListItem","position":2,"name":"Stop using &#8216;px&#8217; for font-size"}]},{"@type":"WebSite","@id":"https:\/\/zenteno.org\/tech-talks\/#website","url":"https:\/\/zenteno.org\/tech-talks\/","name":"My Tech Talks with ChatGPT","description":"","publisher":{"@id":"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zenteno.org\/tech-talks\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580","name":"adminwp","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/image\/","url":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/IMG_1739.jpg","contentUrl":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/IMG_1739.jpg","width":512,"height":512,"caption":"adminwp"},"logo":{"@id":"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/image\/"},"sameAs":["http:\/\/localhost:4000"],"url":"https:\/\/zenteno.org\/tech-talks\/author\/adminwp\/"}]}},"_links":{"self":[{"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/posts\/50","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/comments?post=50"}],"version-history":[{"count":3,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/posts\/50\/revisions"}],"predecessor-version":[{"id":155,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/posts\/50\/revisions\/155"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/media\/75"}],"wp:attachment":[{"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/media?parent=50"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/categories?post=50"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/tags?post=50"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}