{"id":1599,"date":"2025-12-04T20:34:16","date_gmt":"2025-12-04T23:34:16","guid":{"rendered":"https:\/\/neoloshop.com\/tutorials\/?p=1599"},"modified":"2025-12-04T20:57:43","modified_gmt":"2025-12-04T23:57:43","slug":"how-to-add-additional-css-classes-to-blocks-in-wordpress","status":"publish","type":"post","link":"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/","title":{"rendered":"How to add additional CSS classes to blocks in WordPress"},"content":{"rendered":"\n<p><strong>Adding additional CSS classes to WordPress blocks<\/strong> is the simplest and cleanest way to <strong>customize the design of your <\/strong><a href=\"https:\/\/www.neolo.com\/usa\/website-builder\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>website<\/strong><\/a><strong> without touching complicated code<\/strong>. All you need is one click in the editor and you&#8217;re done: total control over colors, spacing, animations, and more.<\/p>\n\n\n\n<p>Have you ever wanted a button to be bigger, a column to have a rounded background, or text to stand out only on mobile? The solution lies in the <strong>additional CSS classes in the block editor <\/strong>(Gutenberg). I&#8217;ll explain it step by step.<\/p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a89b3969 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/www.neolo.com\/usa\/web-hosting\/\" target=\"_blank\" rel=\"noreferrer noopener\">RECOMMENDED WEB HOSTING<\/a><\/div>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why do you need to add additional CSS classes?<\/strong><\/h2>\n\n\n\n<p><strong>WordPress themes <\/strong>already come with basic styles, but often they are not enough. With extra classes, you decide exactly how each block looks without creating new files or installing heavy plugins.<\/p>\n\n\n\n<p>It&#8217;s fast, doesn&#8217;t break anything when you update the theme, and works perfectly with any block theme.<\/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 loading=\"lazy\" title=\"How to add the Additional CSS Class to your Custom Block Templates\" width=\"500\" height=\"281\" src=\"https:\/\/www.youtube.com\/embed\/BqoblByDSuc?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><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step by step: how to add a CSS class to any block<\/strong><\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Open the page or post in the <strong>WordPress<\/strong> editor.<\/li>\n\n\n\n<li>Click on the block you want to modify (a paragraph, image, button, column, etc.).<\/li>\n\n\n\n<li>In the right sidebar, look for the <strong>Advanced<\/strong> section (if you don&#8217;t see it, click on the three dots in the upper right corner and activate \u201cSettings Panel\u201d).<\/li>\n\n\n\n<li>In the <strong>Additional CSS Classes<\/strong> field, enter the name of your class (without the period). Example: my-red-button<\/li>\n\n\n\n<li>Update or publish the page.<\/li>\n<\/ol>\n\n\n\n<p>That&#8217;s it! Now you just need to create the style in your theme.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Where to put the CSS code once you have the class<\/strong><\/h2>\n\n\n\n<p>You have three easy and safe options:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Appearance \u2192 Customize \u2192 Additional CSS<\/strong> \u2192 (most recommended for beginners)<\/li>\n\n\n\n<li>In your child theme (if you use one) in the style.css file<\/li>\n\n\n\n<li>With a lightweight plugin such as \u201cSimple CSS\u201d or \u201cCustom CSS Pro\u201d<\/li>\n<\/ul>\n\n\n\n<p>Real example of code that you can copy and paste:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>.my-red-button {\n    background-color: #e74c3c !important;\n    padding: 20px 40px !important;\n    border-radius: 50px !important;\n    font-size: 18px !important;\n    transition: all 0.3s;\n}\n\n.my-red-button:hover {\n    background-color: #c0392b !important;\n    transform: scale(1.05);\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Tip 1: Use multiple classes in the same block<\/strong><\/h3>\n\n\n\n<p>You can put several separated by spaces: large-button soft-shadow slow-animation This way you can reuse styles throughout the site.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Tip 2: Classes according to screen size<\/strong><\/h3>\n\n\n\n<p>Create classes for mobile or desktop only:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/* Only applies on screens smaller than 768px *\/\n@media (max-width: 767px) {\n    .hide-on-mobile { display: none !important; }\n    .big-text-mobile { font-size: 32px !important; }\n}<\/code><\/pre>\n\n\n\n<p>And add the hide-on-mobile class to the block you want to hide on mobile devices.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Tip 3: Automatic classes with \u201cblock styles\u201d<\/strong><\/h3>\n\n\n\n<p>Some themes and plugins already come with predefined styles. For example, the button block has styles such as \u201cPadding,\u201d \u201cOutline,\u201d etc., but you can create your own by registering \u201cblock styles\u201d in functions.php (advanced level).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Real examples you can use today<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Gradient background in only one section: class blue-gradient<\/li>\n\n\n\n<li>Card with shadow and rounded border: class raised-card<\/li>\n\n\n\n<li>Text with fade-in animation: class animate-fade-in<\/li>\n\n\n\n<li>Extra spacing between columns on mobile: class gap-mobile-40<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p><strong>Adding additional CSS classes to blocks<\/strong> is the most powerful and simple tool you have in WordPress to make your site look exactly how you imagine it. You don&#8217;t need to be a programmer: one click + a few lines of CSS and you&#8217;re done.<\/p>\n\n\n\n<p>Start today with a single block and see how easy it is. In less than 5 minutes you&#8217;ll have a <strong>100% customized design.<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>FAQs about CSS in WordPress<\/strong><\/h2>\n\n\n\n<p><strong>Will the classes be lost if I change themes?<\/strong><\/p>\n\n\n\n<p>No, the classes you add to the block are stored in the database. You only lose the style if the new theme doesn&#8217;t have that CSS.<\/p>\n\n\n\n<p><strong>Can I use them with Elementor or Divi?<\/strong><\/p>\n\n\n\n<p>In most cases, yes, because native WordPress blocks still work within those builders.<\/p>\n\n\n\n<p><strong>What if I use Full Site Editing (FSE)?<\/strong><\/p>\n\n\n\n<p>It works exactly the same, even better, because you can create your own block templates with reusable classes.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>All you need is one click in the editor and you&#8217;re done: total control over colors, spacing, animations, and more.<\/p>\n","protected":false},"author":1,"featured_media":1604,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[21],"tags":[],"class_list":["post-1599","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to add additional CSS classes to blocks in WordPress - Neolo Shop Tutorials<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to add additional CSS classes to blocks in WordPress - Neolo Shop Tutorials\" \/>\n<meta property=\"og:description\" content=\"All you need is one click in the editor and you&#039;re done: total control over colors, spacing, animations, and more.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/\" \/>\n<meta property=\"og:site_name\" content=\"Neolo Shop Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-04T23:34:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-04T23:57:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/neoloshop.com\/tutorials\/wp-content\/uploads\/2025\/12\/pexels-pixabay-265667.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1919\" \/>\n\t<meta property=\"og:image:height\" content=\"1239\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"neoloadmin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/\"},\"author\":{\"name\":\"neoloadmin\",\"@id\":\"https:\/\/neoloshop.com\/tutorials\/#\/schema\/person\/c5791d3e737334e7afed9afbf976ac1c\"},\"headline\":\"How to add additional CSS classes to blocks in WordPress\",\"datePublished\":\"2025-12-04T23:34:16+00:00\",\"dateModified\":\"2025-12-04T23:57:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/\"},\"wordCount\":620,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/neoloshop.com\/tutorials\/#organization\"},\"image\":{\"@id\":\"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/neoloshop.com\/tutorials\/wp-content\/uploads\/2025\/12\/pexels-pixabay-265667.jpg\",\"articleSection\":[\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/\",\"url\":\"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/\",\"name\":\"How to add additional CSS classes to blocks in WordPress - Neolo Shop Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/neoloshop.com\/tutorials\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/neoloshop.com\/tutorials\/wp-content\/uploads\/2025\/12\/pexels-pixabay-265667.jpg\",\"datePublished\":\"2025-12-04T23:34:16+00:00\",\"dateModified\":\"2025-12-04T23:57:43+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/#primaryimage\",\"url\":\"https:\/\/neoloshop.com\/tutorials\/wp-content\/uploads\/2025\/12\/pexels-pixabay-265667.jpg\",\"contentUrl\":\"https:\/\/neoloshop.com\/tutorials\/wp-content\/uploads\/2025\/12\/pexels-pixabay-265667.jpg\",\"width\":1919,\"height\":1239},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/neoloshop.com\/tutorials\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to add additional CSS classes to blocks in WordPress\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/neoloshop.com\/tutorials\/#website\",\"url\":\"https:\/\/neoloshop.com\/tutorials\/\",\"name\":\"Neolo Shop Tutorials\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/neoloshop.com\/tutorials\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/neoloshop.com\/tutorials\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/neoloshop.com\/tutorials\/#organization\",\"name\":\"Neolo Shop Tutorials\",\"url\":\"https:\/\/neoloshop.com\/tutorials\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/neoloshop.com\/tutorials\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/neoloshop.com\/tutorials\/wp-content\/uploads\/2025\/10\/logo_neolo.png\",\"contentUrl\":\"https:\/\/neoloshop.com\/tutorials\/wp-content\/uploads\/2025\/10\/logo_neolo.png\",\"width\":150,\"height\":32,\"caption\":\"Neolo Shop Tutorials\"},\"image\":{\"@id\":\"https:\/\/neoloshop.com\/tutorials\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/neoloshop.com\/tutorials\/#\/schema\/person\/c5791d3e737334e7afed9afbf976ac1c\",\"name\":\"neoloadmin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/neoloshop.com\/tutorials\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/be2ddbb78a94586fb8cedbc90457b8b1ba4a3f2f08d58c3b805f869930c10877?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/be2ddbb78a94586fb8cedbc90457b8b1ba4a3f2f08d58c3b805f869930c10877?s=96&d=mm&r=g\",\"caption\":\"neoloadmin\"},\"sameAs\":[\"http:\/\/neoloshop.com\/tutorials\"],\"url\":\"https:\/\/neoloshop.com\/tutorials\/author\/neoloadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to add additional CSS classes to blocks in WordPress - Neolo Shop Tutorials","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:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/","og_locale":"en_US","og_type":"article","og_title":"How to add additional CSS classes to blocks in WordPress - Neolo Shop Tutorials","og_description":"All you need is one click in the editor and you're done: total control over colors, spacing, animations, and more.","og_url":"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/","og_site_name":"Neolo Shop Tutorials","article_published_time":"2025-12-04T23:34:16+00:00","article_modified_time":"2025-12-04T23:57:43+00:00","og_image":[{"width":1919,"height":1239,"url":"https:\/\/neoloshop.com\/tutorials\/wp-content\/uploads\/2025\/12\/pexels-pixabay-265667.jpg","type":"image\/jpeg"}],"author":"neoloadmin","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/#article","isPartOf":{"@id":"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/"},"author":{"name":"neoloadmin","@id":"https:\/\/neoloshop.com\/tutorials\/#\/schema\/person\/c5791d3e737334e7afed9afbf976ac1c"},"headline":"How to add additional CSS classes to blocks in WordPress","datePublished":"2025-12-04T23:34:16+00:00","dateModified":"2025-12-04T23:57:43+00:00","mainEntityOfPage":{"@id":"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/"},"wordCount":620,"commentCount":0,"publisher":{"@id":"https:\/\/neoloshop.com\/tutorials\/#organization"},"image":{"@id":"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/#primaryimage"},"thumbnailUrl":"https:\/\/neoloshop.com\/tutorials\/wp-content\/uploads\/2025\/12\/pexels-pixabay-265667.jpg","articleSection":["WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/","url":"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/","name":"How to add additional CSS classes to blocks in WordPress - Neolo Shop Tutorials","isPartOf":{"@id":"https:\/\/neoloshop.com\/tutorials\/#website"},"primaryImageOfPage":{"@id":"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/#primaryimage"},"image":{"@id":"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/#primaryimage"},"thumbnailUrl":"https:\/\/neoloshop.com\/tutorials\/wp-content\/uploads\/2025\/12\/pexels-pixabay-265667.jpg","datePublished":"2025-12-04T23:34:16+00:00","dateModified":"2025-12-04T23:57:43+00:00","breadcrumb":{"@id":"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/#primaryimage","url":"https:\/\/neoloshop.com\/tutorials\/wp-content\/uploads\/2025\/12\/pexels-pixabay-265667.jpg","contentUrl":"https:\/\/neoloshop.com\/tutorials\/wp-content\/uploads\/2025\/12\/pexels-pixabay-265667.jpg","width":1919,"height":1239},{"@type":"BreadcrumbList","@id":"https:\/\/neoloshop.com\/tutorials\/how-to-add-additional-css-classes-to-blocks-in-wordpress\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/neoloshop.com\/tutorials\/"},{"@type":"ListItem","position":2,"name":"How to add additional CSS classes to blocks in WordPress"}]},{"@type":"WebSite","@id":"https:\/\/neoloshop.com\/tutorials\/#website","url":"https:\/\/neoloshop.com\/tutorials\/","name":"Neolo Shop Tutorials","description":"","publisher":{"@id":"https:\/\/neoloshop.com\/tutorials\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/neoloshop.com\/tutorials\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/neoloshop.com\/tutorials\/#organization","name":"Neolo Shop Tutorials","url":"https:\/\/neoloshop.com\/tutorials\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/neoloshop.com\/tutorials\/#\/schema\/logo\/image\/","url":"https:\/\/neoloshop.com\/tutorials\/wp-content\/uploads\/2025\/10\/logo_neolo.png","contentUrl":"https:\/\/neoloshop.com\/tutorials\/wp-content\/uploads\/2025\/10\/logo_neolo.png","width":150,"height":32,"caption":"Neolo Shop Tutorials"},"image":{"@id":"https:\/\/neoloshop.com\/tutorials\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/neoloshop.com\/tutorials\/#\/schema\/person\/c5791d3e737334e7afed9afbf976ac1c","name":"neoloadmin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/neoloshop.com\/tutorials\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/be2ddbb78a94586fb8cedbc90457b8b1ba4a3f2f08d58c3b805f869930c10877?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/be2ddbb78a94586fb8cedbc90457b8b1ba4a3f2f08d58c3b805f869930c10877?s=96&d=mm&r=g","caption":"neoloadmin"},"sameAs":["http:\/\/neoloshop.com\/tutorials"],"url":"https:\/\/neoloshop.com\/tutorials\/author\/neoloadmin\/"}]}},"_links":{"self":[{"href":"https:\/\/neoloshop.com\/tutorials\/wp-json\/wp\/v2\/posts\/1599","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/neoloshop.com\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/neoloshop.com\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/neoloshop.com\/tutorials\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/neoloshop.com\/tutorials\/wp-json\/wp\/v2\/comments?post=1599"}],"version-history":[{"count":7,"href":"https:\/\/neoloshop.com\/tutorials\/wp-json\/wp\/v2\/posts\/1599\/revisions"}],"predecessor-version":[{"id":1614,"href":"https:\/\/neoloshop.com\/tutorials\/wp-json\/wp\/v2\/posts\/1599\/revisions\/1614"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/neoloshop.com\/tutorials\/wp-json\/wp\/v2\/media\/1604"}],"wp:attachment":[{"href":"https:\/\/neoloshop.com\/tutorials\/wp-json\/wp\/v2\/media?parent=1599"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/neoloshop.com\/tutorials\/wp-json\/wp\/v2\/categories?post=1599"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/neoloshop.com\/tutorials\/wp-json\/wp\/v2\/tags?post=1599"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}