{"id":294245,"date":"2026-04-22T16:27:09","date_gmt":"2026-04-22T16:27:09","guid":{"rendered":"https:\/\/de.wordpress.org\/plugins\/responsive-productcategory-slider-for-woo\/"},"modified":"2026-04-23T20:26:53","modified_gmt":"2026-04-23T20:26:53","slug":"amitry-product-category-slider","status":"publish","type":"plugin","link":"https:\/\/test.wordpress.org\/plugins\/amitry-product-category-slider\/","author":23468925,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_crdt_document":"","version":"3.0.2","stable_tag":"3.0.2","tested":"6.9.4","requires":"6.3","requires_php":"8.0","requires_plugins":null,"header_name":"Amitry Product & Category Slider for WooCommerce","header_author":"Daniel & Yuzay","header_description":"Display WooCommerce product categories or products as a responsive slider.","assets_banners_color":"9192bc","last_updated":"2026-04-23 20:26:53","external_support_url":"","external_repository_url":"","donate_link":"https:\/\/www.paypal.com\/donate\/?hosted_button_id=D8JUQG5NJ4AXS","header_plugin_uri":"https:\/\/amitry.de\/amitry-product-category-slider\/","header_author_uri":"https:\/\/amitry.de","rating":5,"author_block_rating":0,"active_installs":0,"downloads":151,"num_ratings":1,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","faq","changelog"],"tags":{"3.0.1":{"tag":"3.0.1","author":"amitry","date":"2026-04-22 21:39:12"},"3.0.2":{"tag":"3.0.2","author":"amitry","date":"2026-04-23 20:26:53"}},"upgrade_notice":{"3.0.1":"<p>Renamed to &quot;Amitry Product &amp; Category Slider for WooCommerce&quot; with new slug. Includes title styling, category sorting, overlay gradient, and &quot;View All&quot; button. Swiper updated to 12.1.3.<\/p>","3.0.0":"<p>Major update: adds a Product Slider mode alongside the Category Slider. Switch between modes in the block inspector. Swiper is now bundled locally.<\/p>","2.0.0":"<p>Adds a dashboard settings page, language packs, and a live editor preview.<\/p>","1.0.0":"<p>Initial release.<\/p>"},"ratings":{"1":0,"2":0,"3":0,"4":0,"5":1},"assets_icons":{"icon-128x128.png":{"filename":"icon-128x128.png","revision":3513252,"resolution":"128x128","location":"assets","locale":"","width":128,"height":128},"icon-256x256.png":{"filename":"icon-256x256.png","revision":3513252,"resolution":"256x256","location":"assets","locale":"","width":256,"height":256}},"assets_banners":{"banner-1544x500.png":{"filename":"banner-1544x500.png","revision":3513252,"resolution":"1544x500","location":"assets","locale":"","width":1544,"height":500},"banner-772x250.png":{"filename":"banner-772x250.png","revision":3513242,"resolution":"772x250","location":"assets","locale":"","width":772,"height":250}},"assets_blueprints":{"blueprint.json":{"filename":"blueprint.json","revision":3515438,"resolution":false,"location":"assets","locale":"","contents":"{\"$schema\":\"https:\\\/\\\/playground.wordpress.net\\\/blueprint-schema.json\",\"landingPage\":\"\\\/amitry-slider-demo\\\/\",\"preferredVersions\":{\"php\":\"8.2\",\"wp\":\"latest\"},\"phpExtensionBundles\":[\"kitchen-sink\"],\"features\":{\"networking\":true},\"steps\":[{\"step\":\"login\"},{\"step\":\"installPlugin\",\"pluginData\":{\"resource\":\"wordpress.org\\\/plugins\",\"slug\":\"woocommerce\"},\"options\":{\"activate\":true}},{\"step\":\"installPlugin\",\"pluginData\":{\"resource\":\"wordpress.org\\\/plugins\",\"slug\":\"amitry-product-category-slider\"},\"options\":{\"activate\":true}},{\"step\":\"runPHP\",\"code\":\"<?php require '\\\/wordpress\\\/wp-load.php'; require_once ABSPATH.'wp-admin\\\/includes\\\/image.php'; update_option('woocommerce_store_address','Demo Street 1'); update_option('woocommerce_store_city','Cologne'); update_option('woocommerce_default_country','DE'); update_option('woocommerce_currency','EUR'); $old=get_page_by_path('amitry-slider-demo'); if($old){ wp_delete_post($old->ID,true); } function amitry_img($name,$text,$w,$h,$hex){ $upload=wp_upload_dir(); $dir=$upload['path']; $url=$upload['url']; $file=$dir.'\\\/'.$name.'.png'; $im=imagecreatetruecolor($w,$h); $r=hexdec(substr($hex,0,2)); $g=hexdec(substr($hex,2,2)); $b=hexdec(substr($hex,4,2)); $bg=imagecolorallocate($im,$r,$g,$b); imagefilledrectangle($im,0,0,$w,$h,$bg); $white=imagecolorallocate($im,255,255,255); imagestring($im,5,($w\\\/2)-40,($h\\\/2)-8,$text,$white); imagepng($im,$file); imagedestroy($im); $att=array('post_mime_type'=>'image\\\/png','post_title'=>$name,'post_content'=>'','post_status'=>'inherit'); $id=wp_insert_attachment($att,$file); $meta=wp_generate_attachment_metadata($id,$file); wp_update_attachment_metadata($id,$meta); return $id; } $cats=array('Sneakers','Hoodies','Accessories','Bags','Watches','Summer Sale'); $colors=array('ef476f','06d6a0','118ab2','ffd166','8338ec','fb8500'); $cat_ids=array(); foreach($cats as $i=>$cat){ $term=term_exists($cat,'product_cat'); if(!$term){ $term=wp_insert_term($cat,'product_cat'); } if(!is_wp_error($term)){ $term_id=(int)$term['term_id']; $cat_ids[]=$term_id; $img_id=amitry_img('amitry-category-'.$i,substr($cat,0,2),900,500,$colors[$i]); update_term_meta($term_id,'thumbnail_id',$img_id); } } for($i=1;$i<=12;$i++){ $price=rand(29,99); $post_id=wp_insert_post(array('post_title'=>'Demo Product '.$i,'post_type'=>'product','post_status'=>'publish','post_content'=>'Demo product for Amitry slider preview.')); update_post_meta($post_id,'_regular_price',$price); update_post_meta($post_id,'_price',$price); update_post_meta($post_id,'_stock_status','instock'); update_post_meta($post_id,'_visibility','visible'); if(!empty($cat_ids)){ wp_set_object_terms($post_id,array($cat_ids[$i % count($cat_ids)]),'product_cat'); } $img_id=amitry_img('amitry-product-'.$i,'P'.$i,900,900,$colors[$i % count($colors)]); set_post_thumbnail($post_id,$img_id); } $content='<!-- wp:group {\\\"align\\\":\\\"full\\\",\\\"layout\\\":{\\\"type\\\":\\\"constrained\\\",\\\"contentSize\\\":\\\"1400px\\\"},\\\"style\\\":{\\\"spacing\\\":{\\\"padding\\\":{\\\"top\\\":\\\"40px\\\",\\\"bottom\\\":\\\"70px\\\",\\\"left\\\":\\\"24px\\\",\\\"right\\\":\\\"24px\\\"}}}} --><div class=\\\"wp-block-group alignfull\\\" style=\\\"padding-top:40px;padding-right:24px;padding-bottom:70px;padding-left:24px\\\"><!-- wp:paragraph {\\\"align\\\":\\\"center\\\",\\\"style\\\":{\\\"typography\\\":{\\\"fontSize\\\":\\\"20px\\\"},\\\"spacing\\\":{\\\"margin\\\":{\\\"bottom\\\":\\\"55px\\\"}}}} --><p class=\\\"has-text-align-center\\\" style=\\\"margin-bottom:55px;font-size:20px\\\">WooCommerce demo products and categories are loaded automatically.<\\\/p><!-- \\\/wp:paragraph --><!-- wp:heading {\\\"textAlign\\\":\\\"center\\\",\\\"level\\\":2} --><h2 class=\\\"wp-block-heading has-text-align-center\\\">Shop Categories<\\\/h2><!-- \\\/wp:heading --><!-- wp:amitry-product-category-slider\\\/slider {\\\"sliderType\\\":\\\"categories\\\",\\\"maxCategories\\\":8,\\\"slidesPerViewDesktop\\\":4,\\\"slidesPerViewTablet\\\":2,\\\"slidesPerViewMobile\\\":1,\\\"spaceBetween\\\":24,\\\"showArrows\\\":true,\\\"showTitle\\\":true,\\\"showCount\\\":true,\\\"showImage\\\":true} \\\/--><!-- wp:spacer {\\\"height\\\":\\\"60px\\\"} --><div style=\\\"height:60px\\\" aria-hidden=\\\"true\\\" class=\\\"wp-block-spacer\\\"><\\\/div><!-- \\\/wp:spacer --><!-- wp:heading {\\\"textAlign\\\":\\\"center\\\",\\\"level\\\":2} --><h2 class=\\\"wp-block-heading has-text-align-center\\\">Featured Products<\\\/h2><!-- \\\/wp:heading --><!-- wp:amitry-product-category-slider\\\/slider {\\\"sliderType\\\":\\\"products\\\",\\\"productCount\\\":8,\\\"slidesPerViewDesktop\\\":4,\\\"slidesPerViewTablet\\\":2,\\\"slidesPerViewMobile\\\":1,\\\"spaceBetween\\\":24,\\\"showArrows\\\":true,\\\"showTitle\\\":true,\\\"showImage\\\":true} \\\/--><\\\/div><!-- \\\/wp:group -->'; wp_insert_post(array('post_title'=>'Amitry Slider Demo','post_name'=>'amitry-slider-demo','post_type'=>'page','post_status'=>'publish','post_content'=>$content)); ?>\"}]}"}},"all_blocks":{"amitry-product-category-slider\/slider":{"$schema":"https:\/\/schemas.wp.org\/trunk\/block.json","apiVersion":3,"name":"amitry-product-category-slider\/slider","version":"3.0.1","title":"Amitry Product & Category Slider for WooCommerce","category":"widgets","icon":"images-alt2","description":"Display WooCommerce product categories or products as a responsive slider.","textdomain":"amitry-product-category-slider","editorScript":"file:.\/index.js","editorStyle":"file:.\/index.css","style":"file:.\/style-index.css","example":{"viewportWidth":1200,"attributes":{"slidesPerViewDesktop":3,"slidesPerViewTablet":3,"slidesPerViewMobile":3}},"supports":{"html":false,"align":["wide","full"],"anchor":true,"customClassName":true},"attributes":{"sliderType":{"type":"string","default":"categories"},"productFilter":{"type":"string","default":"newest"},"productSortBy":{"type":"string","default":"newest"},"selectedProducts":{"type":"array","default":[]},"productCount":{"type":"number","default":12},"showPaginationDots":{"type":"boolean","default":false},"selectedCategories":{"type":"array","default":[]},"excludeCategories":{"type":"array","default":[]},"onlyParent":{"type":"boolean","default":false},"hideEmpty":{"type":"boolean","default":true},"maxCategories":{"type":"number","default":12},"categorySortBy":{"type":"string","default":"name","enum":["name","count","menu_order"]},"slidesPerViewDesktop":{"type":"number","default":4},"slidesPerViewTablet":{"type":"number","default":2},"slidesPerViewMobile":{"type":"number","default":1},"spaceBetween":{"type":"number","default":24},"autoplay":{"type":"boolean","default":false},"autoplayDelay":{"type":"number","default":3000},"loop":{"type":"boolean","default":false},"pauseOnHover":{"type":"boolean","default":true},"touchEnabled":{"type":"boolean","default":true},"mouseDrag":{"type":"boolean","default":true},"showArrows":{"type":"boolean","default":true},"showTitle":{"type":"boolean","default":true},"showCount":{"type":"boolean","default":true},"showImage":{"type":"boolean","default":true},"imageShape":{"type":"string","default":"rounded"},"imageSize":{"type":"string","default":"medium"},"styleVariant":{"type":"string","default":"premium-card"},"cardRadius":{"type":"number","default":16},"cardBackgroundColor":{"type":"string","default":"#ffffff"},"shadowIntensity":{"type":"string","default":"soft"},"cardPadding":{"type":"number","default":20},"titleColor":{"type":"string","default":""},"titleBackgroundColor":{"type":"string","default":""},"showOverlayGradient":{"type":"boolean","default":false},"showViewAllButton":{"type":"boolean","default":false},"viewAllUrl":{"type":"string","default":""},"viewAllText":{"type":"string","default":""},"viewAllBgColor":{"type":"string","default":"#111827"},"viewAllTextColor":{"type":"string","default":"#ffffff"},"viewAllFontSize":{"type":"number","default":14},"viewAllStyle":{"type":"string","default":"filled"},"viewAllIcon":{"type":"string","default":"arrow"},"viewAllIconPosition":{"type":"string","default":"right"},"viewAllBorderRadius":{"type":"number","default":6},"viewAllPaddingV":{"type":"number","default":10},"viewAllPaddingH":{"type":"number","default":24},"arrowColor":{"type":"string","default":"#111827"},"arrowBgColor":{"type":"string","default":"#ffffff"},"arrowSize":{"type":"number","default":40}}}},"tagged_versions":["3.0.1","3.0.2"],"block_files":[],"assets_screenshots":{"screenshot-1.png":{"filename":"screenshot-1.png","revision":3513242,"resolution":"1","location":"assets","locale":"","width":1392,"height":571},"screenshot-2.png":{"filename":"screenshot-2.png","revision":3513242,"resolution":"2","location":"assets","locale":"","width":1882,"height":787},"screenshot-3.png":{"filename":"screenshot-3.png","revision":3513804,"resolution":"3","location":"assets","locale":"","width":1883,"height":701},"screenshot-4.png":{"filename":"screenshot-4.png","revision":3514055,"resolution":"4","location":"assets","locale":"","width":1610,"height":813}},"screenshots":{"1":"The category slider on the front end with a \"Premium Card\" style.","2":"The product slider showing price, rating stars, and sale badge.","3":"The block inspector panel in the Elementor editor with live preview.","4":"Overview from an existing online shop after publication"},"jetpack_post_was_ever_published":false},"plugin_section":[],"plugin_tags":[786,76538,148076,611,286],"plugin_category":[45,50,57],"plugin_contributors":[260954],"plugin_business_model":[],"class_list":["post-294245","plugin","type-plugin","status-publish","hentry","plugin_tags-carousel","plugin_tags-elementor","plugin_tags-gutenberg","plugin_tags-slider","plugin_tags-woocommerce","plugin_category-ecommerce","plugin_category-media","plugin_category-taxonomy","plugin_contributors-amitry","plugin_committers-amitry"],"banners":{"banner":"https:\/\/ps.w.org\/amitry-product-category-slider\/assets\/banner-772x250.png?rev=3513242","banner_2x":"https:\/\/ps.w.org\/amitry-product-category-slider\/assets\/banner-1544x500.png?rev=3513252","banner_rtl":false,"banner_2x_rtl":false},"icons":{"svg":false,"icon":"https:\/\/ps.w.org\/amitry-product-category-slider\/assets\/icon-128x128.png?rev=3513252","icon_2x":"https:\/\/ps.w.org\/amitry-product-category-slider\/assets\/icon-256x256.png?rev=3513252","generated":false},"screenshots":[{"src":"https:\/\/ps.w.org\/amitry-product-category-slider\/assets\/screenshot-1.png?rev=3513242","caption":"The category slider on the front end with a \"Premium Card\" style."},{"src":"https:\/\/ps.w.org\/amitry-product-category-slider\/assets\/screenshot-2.png?rev=3513242","caption":"The product slider showing price, rating stars, and sale badge."},{"src":"https:\/\/ps.w.org\/amitry-product-category-slider\/assets\/screenshot-3.png?rev=3513804","caption":"The block inspector panel in the Elementor editor with live preview."},{"src":"https:\/\/ps.w.org\/amitry-product-category-slider\/assets\/screenshot-4.png?rev=3514055","caption":"Overview from an existing online shop after publication"}],"raw_content":"<!--section=description-->\n<p>Amitry Product &amp; Category Slider for WooCommerce provides a native Gutenberg block AND an Elementor widget that let you showcase your WooCommerce product categories or products as a smooth, modern, fully configurable carousel \u2014 without shortcodes, and without compromising on design quality.<\/p>\n\n<p><strong>Key Features<\/strong><\/p>\n\n<ul>\n<li><strong>Two Slider Modes:<\/strong> Categories or Products<\/li>\n<li><strong>Works in Gutenberg AND Elementor:<\/strong> Same output, same settings, your choice<\/li>\n<li><strong>Category Sorting:<\/strong> Sort by name, product count, or menu order<\/li>\n<li><strong>Title Styling:<\/strong> Custom text color and background color for titles<\/li>\n<li><strong>Customizable \"View All\" Button:<\/strong> Style (filled\/ghost), icon (arrow\/chevron\/plus), position, radius, padding<\/li>\n<li><strong>Overlay Gradient:<\/strong> Subtle gradient over images for better text readability<\/li>\n<li>Native Gutenberg block \u2014 drag, drop, configure<\/li>\n<li>Elementor widget \u2014 drag into any page or section<\/li>\n<li>Server-side rendered for reliable WooCommerce data<\/li>\n<li>Responsive: up to 4 slides per view with per-breakpoint control<\/li>\n<li>Autoplay, loop, touch\/swipe, mouse drag<\/li>\n<li>Configurable arrow navigation<\/li>\n<li>Category filtering: include, exclude, parent-only, hide empty<\/li>\n<li>Product display: price, rating stars, sale badge<\/li>\n<li>Image shape: circle, rounded, square<\/li>\n<li>Image size: small, medium, large, original<\/li>\n<li>Shadow, radius, and padding controls<\/li>\n<li>HTML anchor and custom CSS class support<\/li>\n<li>Accessible markup with ARIA labels<\/li>\n<li>Live preview in editor with interactive scroll slider<\/li>\n<li>Assets loaded only when the block is on the page<\/li>\n<li>Fully scoped CSS \u2014 no theme conflicts<\/li>\n<li>Translated into German, English and French<\/li>\n<li>Dashboard settings page with quick-start guide<\/li>\n<\/ul>\n\n<!--section=installation-->\n<ol>\n<li>Make sure WooCommerce is installed and active<\/li>\n<li>Upload the plugin folder to <code>\/wp-content\/plugins\/<\/code><\/li>\n<li>Activate the plugin through the <strong>Plugins<\/strong> menu in WordPress<\/li>\n<li>In the block editor, search for <strong>Amitry Product &amp; Category Slider<\/strong> and insert the block<\/li>\n<li>Choose \"Categories\" or \"Products\" mode and configure in the Inspector panel<\/li>\n<\/ol>\n\n<!--section=faq-->\n<dl>\n<dt id=\"does%20this%20plugin%20require%20woocommerce%3F\"><h3>Does this plugin require WooCommerce?<\/h3><\/dt>\n<dd><p>Yes. WooCommerce must be installed and active. The plugin displays WooCommerce product categories and products, so it cannot function without it.<\/p><\/dd>\n<dt id=\"can%20i%20use%20the%20plugin%20with%20any%20theme%3F\"><h3>Can I use the plugin with any theme?<\/h3><\/dt>\n<dd><p>Yes. The plugin ships with fully scoped CSS that does not conflict with your theme styles. It works with block themes and classic themes alike.<\/p><\/dd>\n<dt id=\"does%20the%20plugin%20work%20with%20page%20builders%3F\"><h3>Does the plugin work with page builders?<\/h3><\/dt>\n<dd><p>The plugin is primarily built as a native Gutenberg block. Most page builders allow you to embed Gutenberg blocks, so it should work in most environments.<\/p><\/dd>\n<dt id=\"how%20many%20slides%20can%20i%20show%20per%20view%3F\"><h3>How many slides can I show per view?<\/h3><\/dt>\n<dd><p>Up to 4 slides per view in the free version, with separate settings for desktop, tablet, and mobile.<\/p><\/dd>\n<dt id=\"are%20the%20plugin%20assets%20loaded%20on%20every%20page%3F\"><h3>Are the plugin assets loaded on every page?<\/h3><\/dt>\n<dd><p>No. CSS and JavaScript are only loaded on pages that actually contain the block. This keeps the rest of your site fast.<\/p><\/dd>\n<dt id=\"does%20the%20plugin%20support%20translations%3F\"><h3>Does the plugin support translations?<\/h3><\/dt>\n<dd><p>Yes. The plugin ships with German, English, and French translations. The text domain is <code>amitry-product-category-slider<\/code>.<\/p><\/dd>\n<dt id=\"is%20the%20plugin%20compatible%20with%20woocommerce%20hpos%3F\"><h3>Is the plugin compatible with WooCommerce HPOS?<\/h3><\/dt>\n<dd><p>Yes. The plugin declares compatibility with both High-Performance Order Storage (HPOS) and the Cart\/Checkout Blocks.<\/p><\/dd>\n<dt id=\"where%20can%20i%20report%20a%20bug%20or%20request%20a%20feature%3F\"><h3>Where can I report a bug or request a feature?<\/h3><\/dt>\n<dd><p>Please use the plugin support forum on WordPress.org or contact us at info@amitry.de.<\/p><\/dd>\n\n<\/dl>\n\n<!--section=changelog-->\n<h4>3.0.2<\/h4>\n\n<ul>\n<li>Updated readme<\/li>\n<li>Minor improvements<\/li>\n<\/ul>\n\n<h4>3.0.1<\/h4>\n\n<ul>\n<li>NEW: Title styling \u2014 custom text color and background color for category\/product titles<\/li>\n<li>NEW: Category sorting - sort by name, product count, or menu order<\/li>\n<li>NEW: Overlay gradient on images for improved text readability<\/li>\n<li>NEW: \"View all\" button - optional link below the slider to your shop or category page<\/li>\n<li>NEW: \"Entdecke Pro\" tab on settings page<\/li>\n<li>Renamed to \"Amitry Product &amp; Category Slider for WooCommerce\"<\/li>\n<li>New slug: amitry-product-category-slider<\/li>\n<li>Swiper updated to 12.1.3<\/li>\n<li>All WordPress Plugin Check errors resolved<\/li>\n<li>Escaping improvements throughout<\/li>\n<\/ul>\n\n<h4>3.0.0<\/h4>\n\n<ul>\n<li>NEW: Product Slider mode - display newest products<\/li>\n<li>NEW: Product cards with price, star rating, and sale badge<\/li>\n<li>NEW: REST API endpoint for products (\/wcsp\/v1\/products)<\/li>\n<li>Slider type selector in editor: Categories or Products<\/li>\n<li>WooCommerce HPOS and Cart\/Checkout Blocks compatibility declared<\/li>\n<li>Swiper bundled locally (WordPress.org compliance)<\/li>\n<\/ul>\n\n<h4>2.0.0<\/h4>\n\n<ul>\n<li>Dashboard settings page, language packs, live editor preview<\/li>\n<\/ul>\n\n<h4>1.0.0<\/h4>\n\n<ul>\n<li>Initial release<\/li>\n<\/ul>","raw_excerpt":"A native Gutenberg block for displaying WooCommerce product categories or products as a responsive, fully configurable carousel.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/test.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/294245","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/test.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/test.wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/test.wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=294245"}],"author":[{"embeddable":true,"href":"https:\/\/test.wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/amitry"}],"wp:attachment":[{"href":"https:\/\/test.wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=294245"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/test.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=294245"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/test.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=294245"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/test.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=294245"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/test.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=294245"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/test.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=294245"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}