{"id":48789,"date":"2025-07-24T12:12:08","date_gmt":"2025-07-24T12:12:08","guid":{"rendered":"https:\/\/crocoblock.com\/knowledge-base\/?post_type=article&#038;p=48789"},"modified":"2025-07-24T12:13:15","modified_gmt":"2025-07-24T12:13:15","slug":"searching-by-custom-woocommerce-attributes-in-ajax-search","status":"publish","type":"article","link":"https:\/\/crocoblock.com\/knowledge-base\/jetsearch\/searching-by-custom-woocommerce-attributes-in-ajax-search\/","title":{"rendered":"How to Search by Custom WooCommerce Attributes in Ajax Search"},"content":{"rendered":"\n<p>Attributes are categorized into two types: global and specific. Global attributes are available for the <a href=\"https:\/\/crocoblock.com\/widgets\/ajax-search\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Ajax Search<\/strong><\/a> by default. However, to support attributes for individual products, the <em>Search by Custom Attributes<\/em> addon is required. It allows you to add custom attributes to the <strong>Search in taxonomy terms<\/strong> option of the <strong>Ajax Search<\/strong> manually using a filter.<\/p>\n\n\n\n<p>For more details, you can refer to the <a href=\"https:\/\/crocoblock.com\/blog\/woocommerce-product-attributes-explained\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>WooCommerce Product<\/strong> <strong>Attributes Explained: Features,<\/strong> <strong>Possibilities, Use Cases<\/strong><\/a> article.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"create-a-custom-attribute\">Create a Custom Attribute<\/h2>\n\n\n\n<p>To set a specific attribute to an individual product, go to the <strong><em>WordPress Dashboard &gt; Products &gt; All Products<\/em><\/strong> tab and select the product you want to edit.<\/p>\n\n\n\n<p>Scroll down to the <strong>Product Data<\/strong> section and click the <strong>Attributes<\/strong> tab. Here, press the \u201c<strong>Add new<\/strong>\u201d button and enter the attribute <strong>Name<\/strong> (e.g., \u201cSeason\u201d, \u201cBrand\u201d, etc.).<\/p>\n\n\n\n<p>Enter the <strong>Value(s)<\/strong> for this product (e.g., \u201cFall, Spring\u201d). Optionally, check the boxes to make the attribute visible on the product page or to use it for variations. Then, save the product.<\/p>\n\n\n\n<div class=\"wp-block-image size-large\"><a href=\"https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/adding-custom-attributes-to-an-individual-product.webp\"><img loading=\"lazy\" decoding=\"async\" width=\"1824\" height=\"1100\" src=\"https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/adding-custom-attributes-to-an-individual-product.webp\" alt=\"adding custom attributes to an individual product\" class=\"wp-image-48790\" srcset=\"https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/adding-custom-attributes-to-an-individual-product.webp 1824w, https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/adding-custom-attributes-to-an-individual-product-300x181.webp 300w, https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/adding-custom-attributes-to-an-individual-product-1024x618.webp 1024w, https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/adding-custom-attributes-to-an-individual-product-768x463.webp 768w, https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/adding-custom-attributes-to-an-individual-product-1536x926.webp 1536w, https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/adding-custom-attributes-to-an-individual-product-600x362.webp 600w\" sizes=\"(max-width: 1824px) 100vw, 1824px\" \/><\/a><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"add-a-snippet\">Add a Snippet<\/h2>\n\n\n\n<p>To include a custom attribute in the search results, you should add code either via a custom code snippets plugin (like <a href=\"https:\/\/uk.wordpress.org\/plugins\/code-snippets\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\"><em>Code Snippets<\/em><\/a>) or directly in your theme\u2019s <strong>functions.php<\/strong> file (preferably a child theme to prevent overwrite on updates).<\/p>\n\n\n\n<p>For example, we install and activate the <em>Code Snippets <\/em>plugin, then proceed to the <strong><em>WordPress Dashboard > Snippets<\/em><\/strong> tab and click the \u201c<strong>Add New<\/strong>\u201d button.<\/p>\n\n\n\n<p>We type the hook name into the title bar (e.g., \u201cAdding custom attribute in the search result\u201d) and enter such code into the <strong>Functions (PHP) <\/strong>textarea:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>add_filter( 'jet_search\/custom_attributes_list', function() {\r\n    return &#91;\r\n        'season' => 'Custom: Season',\r\n    ];\r\n} );\r<\/code><\/pre>\n\n\n\n<p>where \u201cseason\u201d is the attribute <strong>Name <\/strong>and \u201cCustom: Season\u201d is a label that will be displayed in the <strong>Ajax Search <\/strong>widget\/block\/element settings.<\/p>\n\n\n\n<p>Add a piece of code for every custom attribute and press the \u201c<strong>Save Changes and Activate<\/strong>\u201d button to save the snippet.<\/p>\n\n\n\n<div class=\"wp-block-image size-large\"><a href=\"https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/adding-custom-attribute-in-the-search-result-via-code-snippet.webp\"><img loading=\"lazy\" decoding=\"async\" width=\"1824\" height=\"1100\" src=\"https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/adding-custom-attribute-in-the-search-result-via-code-snippet.webp\" alt=\"adding custom attribute in the search result via code snippet\" class=\"wp-image-48793\" srcset=\"https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/adding-custom-attribute-in-the-search-result-via-code-snippet.webp 1824w, https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/adding-custom-attribute-in-the-search-result-via-code-snippet-300x181.webp 300w, https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/adding-custom-attribute-in-the-search-result-via-code-snippet-1024x618.webp 1024w, https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/adding-custom-attribute-in-the-search-result-via-code-snippet-768x463.webp 768w, https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/adding-custom-attribute-in-the-search-result-via-code-snippet-1536x926.webp 1536w, https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/adding-custom-attribute-in-the-search-result-via-code-snippet-600x362.webp 600w\" sizes=\"(max-width: 1824px) 100vw, 1824px\" \/><\/a><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"adjust-the-ajax-search-widgetblockelement\">Adjust the Ajax Search widget\/block\/element<\/h2>\n\n\n\n<p>Open a page or template with the <strong>Ajax Search<\/strong> widget\/block\/element. In our case, we edit a site <a href=\"https:\/\/crocoblock.com\/knowledge-base\/jetsearch\/how-to-add-an-ajax-search-to-websites-header-with-jetsearch\/\" target=\"_blank\" rel=\"noreferrer noopener\">header<\/a> in the Elementor editor.<\/p>\n\n\n\n<p>In the widget settings, we expand the <strong>Search Query <\/strong>tab and enable the <strong>Search in taxonomy terms<\/strong> toggle. In the <strong>Taxonomies <\/strong>drop-down menu, we set our \u201cCustom: Season\u201d attribute.<\/p>\n\n\n\n<p>Then, we save the changes by pushing the \u201c<strong>Publish<\/strong>\u201d button.<\/p>\n\n\n\n<div class=\"wp-block-image size-large\"><a href=\"https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/enabling-custom-attributes-in-the-AJAX-search-query.webp\"><img loading=\"lazy\" decoding=\"async\" width=\"1824\" height=\"1100\" src=\"https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/enabling-custom-attributes-in-the-AJAX-search-query.webp\" alt=\"enabling custom attributes in the AJAX search query\" class=\"wp-image-48791\" srcset=\"https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/enabling-custom-attributes-in-the-AJAX-search-query.webp 1824w, https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/enabling-custom-attributes-in-the-AJAX-search-query-300x181.webp 300w, https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/enabling-custom-attributes-in-the-AJAX-search-query-1024x618.webp 1024w, https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/enabling-custom-attributes-in-the-AJAX-search-query-768x463.webp 768w, https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/enabling-custom-attributes-in-the-AJAX-search-query-1536x926.webp 1536w, https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/enabling-custom-attributes-in-the-AJAX-search-query-600x362.webp 600w\" sizes=\"(max-width: 1824px) 100vw, 1824px\" \/><\/a><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"check-the-result\">Check the Result<\/h2>\n\n\n\n<p>Finally, we navigate to the front end and enter a custom attribute <strong>Value <\/strong>in the search bar (\u201cFall\u201d in our case). It shows the product associated with it in the search results.<\/p>\n\n\n\n<div class=\"wp-block-image size-large\"><a href=\"https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/woocommerce-product-with-the-custom-attribute-value-shown-in-the-AJAX-search-results.webp\"><img loading=\"lazy\" decoding=\"async\" width=\"1824\" height=\"1100\" src=\"https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/woocommerce-product-with-the-custom-attribute-value-shown-in-the-AJAX-search-results.webp\" alt=\"woocommerce product with the custom attribute value shown in the AJAX search results\" class=\"wp-image-48792\" srcset=\"https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/woocommerce-product-with-the-custom-attribute-value-shown-in-the-AJAX-search-results.webp 1824w, https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/woocommerce-product-with-the-custom-attribute-value-shown-in-the-AJAX-search-results-300x181.webp 300w, https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/woocommerce-product-with-the-custom-attribute-value-shown-in-the-AJAX-search-results-1024x618.webp 1024w, https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/woocommerce-product-with-the-custom-attribute-value-shown-in-the-AJAX-search-results-768x463.webp 768w, https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/woocommerce-product-with-the-custom-attribute-value-shown-in-the-AJAX-search-results-1536x926.webp 1536w, https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/woocommerce-product-with-the-custom-attribute-value-shown-in-the-AJAX-search-results-600x362.webp 600w\" sizes=\"(max-width: 1824px) 100vw, 1824px\" \/><\/a><\/div>\n\n\n\n<p>That\u2019s all. Now you know how to enable Ajax search by custom <em>WooCommerce<\/em> attributes using the <em>JetSearch<\/em> WordPress plugin and the <em>Search by Custom Attributes<\/em> addon.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Learn how to enable Ajax search by custom WooCommerce attributes using the JetSearch WordPress plugin and the Search by Custom Attributes addon.<\/p>\n","protected":false},"author":8,"featured_media":0,"template":"","format":"standard","builder-category":[],"article-category":[430],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Search by Custom WooCommerce Attributes in Ajax Search \u2014 JetSearch | Crocoblock<\/title>\n<meta name=\"description\" content=\"Learn how to enable Ajax search by custom WooCommerce attributes using the JetSearch WordPress plugin and Search by Custom Attributes addon. Register the custom attributes via the code snippet.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/crocoblock.com\/knowledge-base\/jetsearch\/searching-by-custom-woocommerce-attributes-in-ajax-search\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Search by Custom WooCommerce Attributes in Ajax Search \u2014 JetSearch | Crocoblock\" \/>\n<meta property=\"og:description\" content=\"Learn how to enable Ajax search by custom WooCommerce attributes using the JetSearch WordPress plugin and Search by Custom Attributes addon. Register the custom attributes via the code snippet.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/crocoblock.com\/knowledge-base\/jetsearch\/searching-by-custom-woocommerce-attributes-in-ajax-search\/\" \/>\n<meta property=\"og:site_name\" content=\"Help Center\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-24T12:13:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/adding-custom-attributes-to-an-individual-product.webp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/crocoblock.com\/knowledge-base\/jetsearch\/searching-by-custom-woocommerce-attributes-in-ajax-search\/\",\"url\":\"https:\/\/crocoblock.com\/knowledge-base\/jetsearch\/searching-by-custom-woocommerce-attributes-in-ajax-search\/\",\"name\":\"How to Search by Custom WooCommerce Attributes in Ajax Search \u2014 JetSearch | Crocoblock\",\"isPartOf\":{\"@id\":\"https:\/\/crocoblock.com\/knowledge-base\/#website\"},\"datePublished\":\"2025-07-24T12:12:08+00:00\",\"dateModified\":\"2025-07-24T12:13:15+00:00\",\"description\":\"Learn how to enable Ajax search by custom WooCommerce attributes using the JetSearch WordPress plugin and Search by Custom Attributes addon. Register the custom attributes via the code snippet.\",\"breadcrumb\":{\"@id\":\"https:\/\/crocoblock.com\/knowledge-base\/jetsearch\/searching-by-custom-woocommerce-attributes-in-ajax-search\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/crocoblock.com\/knowledge-base\/jetsearch\/searching-by-custom-woocommerce-attributes-in-ajax-search\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/crocoblock.com\/knowledge-base\/jetsearch\/searching-by-custom-woocommerce-attributes-in-ajax-search\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/crocoblock.com\/knowledge-base\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Articles\",\"item\":\"https:\/\/crocoblock.com\/knowledge-base\/articles\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Search by Custom WooCommerce Attributes in Ajax Search\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/crocoblock.com\/knowledge-base\/#website\",\"url\":\"https:\/\/crocoblock.com\/knowledge-base\/\",\"name\":\"Help Center\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/crocoblock.com\/knowledge-base\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/crocoblock.com\/knowledge-base\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/crocoblock.com\/knowledge-base\/#organization\",\"name\":\"Help Center\",\"url\":\"https:\/\/crocoblock.com\/knowledge-base\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/crocoblock.com\/knowledge-base\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/04\/invert-crocoblock-logo.svg\",\"contentUrl\":\"https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/04\/invert-crocoblock-logo.svg\",\"caption\":\"Help Center\"},\"image\":{\"@id\":\"https:\/\/crocoblock.com\/knowledge-base\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Search by Custom WooCommerce Attributes in Ajax Search \u2014 JetSearch | Crocoblock","description":"Learn how to enable Ajax search by custom WooCommerce attributes using the JetSearch WordPress plugin and Search by Custom Attributes addon. Register the custom attributes via the code snippet.","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:\/\/crocoblock.com\/knowledge-base\/jetsearch\/searching-by-custom-woocommerce-attributes-in-ajax-search\/","og_locale":"en_US","og_type":"article","og_title":"How to Search by Custom WooCommerce Attributes in Ajax Search \u2014 JetSearch | Crocoblock","og_description":"Learn how to enable Ajax search by custom WooCommerce attributes using the JetSearch WordPress plugin and Search by Custom Attributes addon. Register the custom attributes via the code snippet.","og_url":"https:\/\/crocoblock.com\/knowledge-base\/jetsearch\/searching-by-custom-woocommerce-attributes-in-ajax-search\/","og_site_name":"Help Center","article_modified_time":"2025-07-24T12:13:15+00:00","og_image":[{"url":"https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/07\/adding-custom-attributes-to-an-individual-product.webp"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/crocoblock.com\/knowledge-base\/jetsearch\/searching-by-custom-woocommerce-attributes-in-ajax-search\/","url":"https:\/\/crocoblock.com\/knowledge-base\/jetsearch\/searching-by-custom-woocommerce-attributes-in-ajax-search\/","name":"How to Search by Custom WooCommerce Attributes in Ajax Search \u2014 JetSearch | Crocoblock","isPartOf":{"@id":"https:\/\/crocoblock.com\/knowledge-base\/#website"},"datePublished":"2025-07-24T12:12:08+00:00","dateModified":"2025-07-24T12:13:15+00:00","description":"Learn how to enable Ajax search by custom WooCommerce attributes using the JetSearch WordPress plugin and Search by Custom Attributes addon. Register the custom attributes via the code snippet.","breadcrumb":{"@id":"https:\/\/crocoblock.com\/knowledge-base\/jetsearch\/searching-by-custom-woocommerce-attributes-in-ajax-search\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/crocoblock.com\/knowledge-base\/jetsearch\/searching-by-custom-woocommerce-attributes-in-ajax-search\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/crocoblock.com\/knowledge-base\/jetsearch\/searching-by-custom-woocommerce-attributes-in-ajax-search\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/crocoblock.com\/knowledge-base\/"},{"@type":"ListItem","position":2,"name":"Articles","item":"https:\/\/crocoblock.com\/knowledge-base\/articles\/"},{"@type":"ListItem","position":3,"name":"How to Search by Custom WooCommerce Attributes in Ajax Search"}]},{"@type":"WebSite","@id":"https:\/\/crocoblock.com\/knowledge-base\/#website","url":"https:\/\/crocoblock.com\/knowledge-base\/","name":"Help Center","description":"","publisher":{"@id":"https:\/\/crocoblock.com\/knowledge-base\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/crocoblock.com\/knowledge-base\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/crocoblock.com\/knowledge-base\/#organization","name":"Help Center","url":"https:\/\/crocoblock.com\/knowledge-base\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/crocoblock.com\/knowledge-base\/#\/schema\/logo\/image\/","url":"https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/04\/invert-crocoblock-logo.svg","contentUrl":"https:\/\/crocoblock.com\/knowledge-base\/wp-content\/uploads\/2025\/04\/invert-crocoblock-logo.svg","caption":"Help Center"},"image":{"@id":"https:\/\/crocoblock.com\/knowledge-base\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/crocoblock.com\/knowledge-base\/wp-json\/wp\/v2\/article\/48789"}],"collection":[{"href":"https:\/\/crocoblock.com\/knowledge-base\/wp-json\/wp\/v2\/article"}],"about":[{"href":"https:\/\/crocoblock.com\/knowledge-base\/wp-json\/wp\/v2\/types\/article"}],"author":[{"embeddable":true,"href":"https:\/\/crocoblock.com\/knowledge-base\/wp-json\/wp\/v2\/users\/8"}],"wp:attachment":[{"href":"https:\/\/crocoblock.com\/knowledge-base\/wp-json\/wp\/v2\/media?parent=48789"}],"wp:term":[{"taxonomy":"builder-category","embeddable":true,"href":"https:\/\/crocoblock.com\/knowledge-base\/wp-json\/wp\/v2\/builder-category?post=48789"},{"taxonomy":"article-category","embeddable":true,"href":"https:\/\/crocoblock.com\/knowledge-base\/wp-json\/wp\/v2\/article-category?post=48789"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}