{"id":12896,"date":"2023-04-07T20:16:32","date_gmt":"2023-04-07T18:16:32","guid":{"rendered":"https:\/\/techmoz.net\/?p=12896"},"modified":"2023-04-07T20:37:48","modified_gmt":"2023-04-07T18:37:48","slug":"customizing-your-wordpress-tag-cloud-widget-how-to-adjust-the-tag-count-displayed","status":"publish","type":"post","link":"https:\/\/techmoz.net\/en\/customizing-your-wordpress-tag-cloud-widget-how-to-adjust-the-tag-count-displayed\/","title":{"rendered":"Customizing Your WordPress Tag Cloud Widget: How to Adjust the Tag Count Displayed"},"content":{"rendered":"<p>In this blog post, we&#8217;ll discuss how to customize the WordPress Tag Cloud widget, a valuable feature that showcases a collection of your most frequently used tags on the sidebar or other widget-supporting areas of WordPress-powered websites. However, as the number of tags increases, the list generated by the Tag Cloud widget may become too lengthy or too brief for your preference.<\/p>\n<h3>The Standard Tag Cloud Widget<\/h3>\n<p>Regrettably, the default Tag Cloud widget does not offer the option to limit or expand the tag count. The default count is 45.<\/p>\n<p>To tailor the number of tags displayed by the Tag Cloud widget, there is currently no direct method provided. Instead, you can include the following code snippet in your active theme&#8217;s functions.php custom functions file to exert control over the tag count:<\/p>\n<pre class=\"brush: php; title: ; notranslate\" title=\"\">\r\n\/*********************************************************\r\n * Adjust the tag count displayed by the Tag Cloud widget *\r\n *********************************************************\/\r\nadd_filter( 'widget_tag_cloud_args', 'mz_tag_cloud_limit' );\r\nfunction mz_tag_cloud_limit($args){ \r\n    \/\/ Verify if the widget's taxonomy option is set to tags\r\n    if ( isset($args&#x5B;'taxonomy']) &amp;&amp; $args&#x5B;'taxonomy'] == 'post_tag' ){\r\n        $args&#x5B;'number'] = 25; \/\/ Set the number of tags to display\r\n    }\r\n    return $args;\r\n}\r\n<\/pre>\n<p>Substitute the tag count in the code with your preferred number. The example above shows 25 tags. By default, WordPress displays up to 45 of the most frequently used tags. You can increase or decrease this number as needed.<\/p>\n<p>If you utilize custom taxonomies and want to showcase them instead of the default tags, replace the post_tag (the standard WordPress taxonomy for tags) in the provided code with the custom taxonomy term.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog post, we&#8217;ll discuss how to customize the WordPress Tag Cloud widget, a valuable feature that showcases a collection of your most frequently used tags on the sidebar or other widget-supporting areas of WordPress-powered websites. However, as the number of tags increases, the list generated by the Tag Cloud widget may become too<\/p>\n","protected":false},"author":2,"featured_media":1,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_dcms_eufi_img":"https:\/\/make.wordpress.org\/core\/files\/2017\/05\/tag-cloud-changes-4-8-frontend-comparison.png","footnotes":"","_links_to":"","_links_to_target":""},"categories":[963,952,1064,1063,1001],"tags":[1132,1127],"class_list":["post-12896","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-articles-2","category-highlights-2","category-tutorials","category-web-development-en","category-wordpress","tag-php","tag-wordpress-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Customizing Your WordPress Tag Cloud Widget: How to Adjust the Tag Count Displayed - Techmoz<\/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:\/\/techmoz.net\/en\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Customizing Your WordPress Tag Cloud Widget: How to Adjust the Tag Count Displayed - Techmoz\" \/>\n<meta property=\"og:description\" content=\"In this blog post, we&#8217;ll discuss how to customize the WordPress Tag Cloud widget, a valuable feature that showcases a collection of your most frequently used tags on the sidebar or other widget-supporting areas of WordPress-powered websites. However, as the number of tags increases, the list generated by the Tag Cloud widget may become too\" \/>\n<meta property=\"og:url\" content=\"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/\" \/>\n<meta property=\"og:site_name\" content=\"Techmoz\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/web.facebook.com\/hostmoz\" \/>\n<meta property=\"article:published_time\" content=\"2023-04-07T18:16:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-04-07T18:37:48+00:00\" \/>\n<meta name=\"author\" content=\"Elisio Leonardo\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@hostmoz\" \/>\n<meta name=\"twitter:site\" content=\"@hostmoz\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Elisio Leonardo\" \/>\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\",\"NewsArticle\"],\"@id\":\"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/\"},\"author\":{\"name\":\"Elisio Leonardo\",\"@id\":\"https:\/\/techmoz.net\/#\/schema\/person\/dcc2c00505441293925f0573bc996b09\"},\"headline\":\"Customizing Your WordPress Tag Cloud Widget: How to Adjust the Tag Count Displayed\",\"datePublished\":\"2023-04-07T18:16:32+00:00\",\"dateModified\":\"2023-04-07T18:37:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/\"},\"wordCount\":280,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/techmoz.net\/#organization\"},\"image\":{\"@id\":\"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/#primaryimage\"},\"thumbnailUrl\":\"\",\"keywords\":[\"PHP\",\"Wordpress\"],\"articleSection\":[\"Articles\",\"Highlights\",\"Tutorials\",\"Web Development\",\"Wordpress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/#respond\"]}],\"copyrightYear\":\"2023\",\"copyrightHolder\":{\"@id\":\"https:\/\/techmoz.net\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/\",\"url\":\"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/\",\"name\":\"Customizing Your WordPress Tag Cloud Widget: How to Adjust the Tag Count Displayed - Techmoz\",\"isPartOf\":{\"@id\":\"https:\/\/techmoz.net\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/#primaryimage\"},\"thumbnailUrl\":\"\",\"datePublished\":\"2023-04-07T18:16:32+00:00\",\"dateModified\":\"2023-04-07T18:37:48+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/#primaryimage\",\"url\":\"\",\"contentUrl\":\"\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/techmoz.net\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Customizing Your WordPress Tag Cloud Widget: How to Adjust the Tag Count Displayed\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/techmoz.net\/#website\",\"url\":\"https:\/\/techmoz.net\/\",\"name\":\"Techmoz\",\"description\":\"O maior Portal de Tecnologia em Mo\u00e7ambique\",\"publisher\":{\"@id\":\"https:\/\/techmoz.net\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/techmoz.net\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/techmoz.net\/#organization\",\"name\":\"Hostmoz,Lda\",\"url\":\"https:\/\/techmoz.net\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/techmoz.net\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/techmoz.test\/wp-content\/uploads\/2023\/01\/techmoz-logo.png?fit=385%2C90&ssl=1\",\"contentUrl\":\"https:\/\/techmoz.test\/wp-content\/uploads\/2023\/01\/techmoz-logo.png?fit=385%2C90&ssl=1\",\"width\":385,\"height\":90,\"caption\":\"Hostmoz,Lda\"},\"image\":{\"@id\":\"https:\/\/techmoz.net\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/web.facebook.com\/hostmoz\",\"https:\/\/x.com\/hostmoz\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/techmoz.net\/#\/schema\/person\/dcc2c00505441293925f0573bc996b09\",\"name\":\"Elisio Leonardo\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/techmoz.net\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/80182e0df20d39fd5938f02fa54113c599d04372d288dc811ea9d480830a94fd?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/80182e0df20d39fd5938f02fa54113c599d04372d288dc811ea9d480830a94fd?s=96&d=mm&r=g\",\"caption\":\"Elisio Leonardo\"},\"description\":\"Elisio Leonardo is an experienced Web Developer, Solutions Architect, Digital Marketing Expert, and content producer with a passion for technology, artificial intelligence, web development, and entertainment. With nearly 15 years of writing engaging content on technology and entertainment, particularly Comic Book Movies, Elisio has become a trusted source of information in the digital landscape.\",\"url\":\"https:\/\/techmoz.net\/en\/author\/backstageel\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Customizing Your WordPress Tag Cloud Widget: How to Adjust the Tag Count Displayed - Techmoz","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:\/\/techmoz.net\/en\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/","og_locale":"en_US","og_type":"article","og_title":"Customizing Your WordPress Tag Cloud Widget: How to Adjust the Tag Count Displayed - Techmoz","og_description":"In this blog post, we&#8217;ll discuss how to customize the WordPress Tag Cloud widget, a valuable feature that showcases a collection of your most frequently used tags on the sidebar or other widget-supporting areas of WordPress-powered websites. However, as the number of tags increases, the list generated by the Tag Cloud widget may become too","og_url":"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/","og_site_name":"Techmoz","article_publisher":"https:\/\/web.facebook.com\/hostmoz","article_published_time":"2023-04-07T18:16:32+00:00","article_modified_time":"2023-04-07T18:37:48+00:00","author":"Elisio Leonardo","twitter_card":"summary_large_image","twitter_creator":"@hostmoz","twitter_site":"@hostmoz","twitter_misc":{"Written by":"Elisio Leonardo","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","NewsArticle"],"@id":"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/#article","isPartOf":{"@id":"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/"},"author":{"name":"Elisio Leonardo","@id":"https:\/\/techmoz.net\/#\/schema\/person\/dcc2c00505441293925f0573bc996b09"},"headline":"Customizing Your WordPress Tag Cloud Widget: How to Adjust the Tag Count Displayed","datePublished":"2023-04-07T18:16:32+00:00","dateModified":"2023-04-07T18:37:48+00:00","mainEntityOfPage":{"@id":"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/"},"wordCount":280,"commentCount":2,"publisher":{"@id":"https:\/\/techmoz.net\/#organization"},"image":{"@id":"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/#primaryimage"},"thumbnailUrl":"","keywords":["PHP","Wordpress"],"articleSection":["Articles","Highlights","Tutorials","Web Development","Wordpress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/#respond"]}],"copyrightYear":"2023","copyrightHolder":{"@id":"https:\/\/techmoz.net\/#organization"}},{"@type":"WebPage","@id":"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/","url":"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/","name":"Customizing Your WordPress Tag Cloud Widget: How to Adjust the Tag Count Displayed - Techmoz","isPartOf":{"@id":"https:\/\/techmoz.net\/#website"},"primaryImageOfPage":{"@id":"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/#primaryimage"},"image":{"@id":"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/#primaryimage"},"thumbnailUrl":"","datePublished":"2023-04-07T18:16:32+00:00","dateModified":"2023-04-07T18:37:48+00:00","breadcrumb":{"@id":"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/#primaryimage","url":"","contentUrl":""},{"@type":"BreadcrumbList","@id":"https:\/\/techmoz.net\/personalizando-o-widget-nuvem-de-tags-do-wordpress-como-ajustar-a-quantidade-de-tags-exibidas\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/techmoz.net\/en\/"},{"@type":"ListItem","position":2,"name":"Customizing Your WordPress Tag Cloud Widget: How to Adjust the Tag Count Displayed"}]},{"@type":"WebSite","@id":"https:\/\/techmoz.net\/#website","url":"https:\/\/techmoz.net\/","name":"Techmoz","description":"O maior Portal de Tecnologia em Mo\u00e7ambique","publisher":{"@id":"https:\/\/techmoz.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/techmoz.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/techmoz.net\/#organization","name":"Hostmoz,Lda","url":"https:\/\/techmoz.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/techmoz.net\/#\/schema\/logo\/image\/","url":"https:\/\/techmoz.test\/wp-content\/uploads\/2023\/01\/techmoz-logo.png?fit=385%2C90&ssl=1","contentUrl":"https:\/\/techmoz.test\/wp-content\/uploads\/2023\/01\/techmoz-logo.png?fit=385%2C90&ssl=1","width":385,"height":90,"caption":"Hostmoz,Lda"},"image":{"@id":"https:\/\/techmoz.net\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/web.facebook.com\/hostmoz","https:\/\/x.com\/hostmoz"]},{"@type":"Person","@id":"https:\/\/techmoz.net\/#\/schema\/person\/dcc2c00505441293925f0573bc996b09","name":"Elisio Leonardo","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/techmoz.net\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/80182e0df20d39fd5938f02fa54113c599d04372d288dc811ea9d480830a94fd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/80182e0df20d39fd5938f02fa54113c599d04372d288dc811ea9d480830a94fd?s=96&d=mm&r=g","caption":"Elisio Leonardo"},"description":"Elisio Leonardo is an experienced Web Developer, Solutions Architect, Digital Marketing Expert, and content producer with a passion for technology, artificial intelligence, web development, and entertainment. With nearly 15 years of writing engaging content on technology and entertainment, particularly Comic Book Movies, Elisio has become a trusted source of information in the digital landscape.","url":"https:\/\/techmoz.net\/en\/author\/backstageel\/"}]}},"_format-video":{"_last_editor_used_jetpack":["classic-editor"],"_edit_lock":["1680893961:2"],"_edit_last":["2"],"_wpml_media_featured":["1"],"_wpml_media_duplicate":["1"],"_syntaxhighlighter_encoded":["1"],"_encloseme":["1"],"post_views_count":["639"],"_post_template_options":["a:1:{s:17:\"single_post_style\";s:0:\"\";}"],"_format-video":["a:1:{s:13:\"embedded_link\";s:0:\"\";}"],"_wpb_vc_js_status":["false"],"_yoast_wpseo_newssitemap-exclude":["off"],"_yoast_wpseo_newssitemap-genre":["a:0:{}"],"_yoast_wpseo_content_score":["60"],"_yoast_wpseo_inclusive_language_score":["90"],"_yoast_wpseo_estimated-reading-time-minutes":["2"],"_yoast_wpseo_wordproof_timestamp":[""],"_dcms_eufi_img":["https:\/\/make.wordpress.org\/core\/files\/2017\/05\/tag-cloud-changes-4-8-frontend-comparison.png"],"_yoast_wpseo_primary_category":["963"]},"_links":{"self":[{"href":"https:\/\/techmoz.net\/en\/wp-json\/wp\/v2\/posts\/12896","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/techmoz.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/techmoz.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/techmoz.net\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/techmoz.net\/en\/wp-json\/wp\/v2\/comments?post=12896"}],"version-history":[{"count":2,"href":"https:\/\/techmoz.net\/en\/wp-json\/wp\/v2\/posts\/12896\/revisions"}],"predecessor-version":[{"id":12902,"href":"https:\/\/techmoz.net\/en\/wp-json\/wp\/v2\/posts\/12896\/revisions\/12902"}],"wp:attachment":[{"href":"https:\/\/techmoz.net\/en\/wp-json\/wp\/v2\/media?parent=12896"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/techmoz.net\/en\/wp-json\/wp\/v2\/categories?post=12896"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/techmoz.net\/en\/wp-json\/wp\/v2\/tags?post=12896"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}