{"id":6302,"date":"2025-08-13T13:41:20","date_gmt":"2025-08-13T11:41:20","guid":{"rendered":"https:\/\/www.open-user-map.com\/?post_type=ht_kb&#038;p=6302"},"modified":"2025-08-13T13:41:20","modified_gmt":"2025-08-13T11:41:20","slug":"how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor","status":"publish","type":"ht_kb","link":"https:\/\/www.open-user-map.com\/es\/knowledge-base\/how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor\/","title":{"rendered":"C\u00f3mo mostrar las categor\u00edas de marcadores como una lista de casillas de verificaci\u00f3n en el editor de WordPress"},"content":{"rendered":"<p>Por defecto, el <strong>\"Categor\u00edas de marcadores\"<\/strong> taxonom\u00eda (<code data-no-translation=\"\" data-no-auto-translation=\"\">oum-type<\/code>) utilizado en <strong>Open User Map<\/strong> no es jer\u00e1rquico, lo que significa que se comporta como las etiquetas, mostr\u00e1ndose como un campo de entrada de texto en el editor donde puede escribir y separar los elementos con comas.<\/p>\n\n\n\n<p>Sin embargo, en algunos casos, es m\u00e1s f\u00e1cil mostrar un <strong>lista de casillas<\/strong>como el est\u00e1ndar de WordPress <strong>Categor\u00edas<\/strong> interfaz. Esta gu\u00eda le muestra c\u00f3mo forzar WordPress para mostrar el <code data-no-translation=\"\" data-no-auto-translation=\"\">oum-type<\/code> taxonom\u00eda como <strong>lista de casillas<\/strong>sin cambiar la estructura subyacente de su taxonom\u00eda ni modificar el plugin.<\/p>\n\n\n\n<div style=\"height:75px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83e\udde9 C\u00f3mo ponerlo en pr\u00e1ctica<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Abra el tema activo <code data-no-translation=\"\" data-no-auto-translation=\"\">functions.php<\/code> archivo<br>(o mejor: utilice un <strong>plugin de fragmentos de c\u00f3digo<\/strong> para que los cambios sean seguros e independientes del tema).<br><\/li>\n\n\n\n<li>A\u00f1ade el siguiente c\u00f3digo:<\/li>\n<\/ol>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\" data-code-block-pro-font-family=\"Code-Pro-JetBrains-Mono\" style=\"font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#f6f6f4;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)\" data-no-translation=\"\" data-no-auto-translation=\"\"><span style=\"display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#333545;color:#ebebe6\">PHP<\/span><pre class=\"shiki dracula-soft\" style=\"background-color: #282A36\" tabindex=\"0\"><code data-no-translation=\"\" data-no-auto-translation=\"\"><span class=\"line\"><span style=\"color: #F286C4\">function<\/span><span style=\"color: #F6F6F4\"> <\/span><span style=\"color: #62E884\">oum_force_checkbox_ui_for_oum_type_taxonomy<\/span><span style=\"color: #F6F6F4\">() {<\/span><\/span>\n<span class=\"line\"><span style=\"color: #F6F6F4\">    <\/span><span style=\"color: #F286C4\">global<\/span><span style=\"color: #F6F6F4\"> $wp_taxonomies;<\/span><\/span>\n<span class=\"line\"><\/span>\n<span class=\"line\"><span style=\"color: #F6F6F4\">    <\/span><span style=\"color: #F286C4\">if<\/span><span style=\"color: #F6F6F4\"> (<\/span><span style=\"color: #62E884\">taxonomy_exists<\/span><span style=\"color: #F6F6F4\">(<\/span><span style=\"color: #DEE492\">&#39;<\/span><span style=\"color: #E7EE98\">oum-type<\/span><span style=\"color: #DEE492\">&#39;<\/span><span style=\"color: #F6F6F4\">)) {<\/span><\/span>\n<span class=\"line\"><span style=\"color: #F6F6F4\">        $wp_taxonomies&#91;<\/span><span style=\"color: #DEE492\">&#39;<\/span><span style=\"color: #E7EE98\">oum-type<\/span><span style=\"color: #DEE492\">&#39;<\/span><span style=\"color: #F6F6F4\">&#93;<\/span><span style=\"color: #F286C4\">-&gt;<\/span><span style=\"color: #F6F6F4\">hierarchical <\/span><span style=\"color: #F286C4\">=<\/span><span style=\"color: #F6F6F4\"> <\/span><span style=\"color: #BF9EEE\">true<\/span><span style=\"color: #F6F6F4\">;<\/span><\/span>\n<span class=\"line\"><span style=\"color: #F6F6F4\">    }<\/span><\/span>\n<span class=\"line\"><span style=\"color: #F6F6F4\">}<\/span><\/span>\n<span class=\"line\"><span style=\"color: #62E884\">add_action<\/span><span style=\"color: #F6F6F4\">(<\/span><span style=\"color: #DEE492\">&#39;<\/span><span style=\"color: #E7EE98\">init<\/span><span style=\"color: #DEE492\">&#39;<\/span><span style=\"color: #F6F6F4\">,<\/span><span style=\"color: #62E884\"> <\/span><span style=\"color: #DEE492\">&#39;<\/span><span style=\"color: #E7EE98\">oum_force_checkbox_ui_for_oum_type_taxonomy<\/span><span style=\"color: #DEE492\">&#39;<\/span><span style=\"color: #F6F6F4\">);<\/span><\/span><\/code><\/pre><\/div>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udd01 \u00bfQu\u00e9 hace esto?<\/h2>\n\n\n\n<p>Este fragmento <strong>anula el comportamiento de la interfaz de usuario<\/strong> de la <code data-no-translation=\"\" data-no-auto-translation=\"\">oum-type<\/code> taxonom\u00eda dici\u00e9ndole a WordPress que la trate como una taxonom\u00eda jer\u00e1rquica - <strong>s\u00f3lo para exposici\u00f3n<\/strong>.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Tus datos siguen siendo los mismos.<\/li>\n\n\n\n<li>La taxonom\u00eda sigue comport\u00e1ndose como un sistema de etiquetas (plana, no anidada).<\/li>\n\n\n\n<li>En el editor de entradas, ahora ver\u00e1s una lista de casillas de verificaci\u00f3n en lugar de una entrada de forma libre.<\/li>\n<\/ul>","protected":false},"excerpt":{"rendered":"<p>Por defecto, la taxonom\u00eda \"Categor\u00edas de marcadores\" (oum-type) utilizada en Open User Map no es jer\u00e1rquica, lo que significa que se comporta como las etiquetas, mostr\u00e1ndose como un campo de entrada de texto en el editor donde puedes escribir y separar los elementos con comas. Sin embargo, en algunos casos, es m\u00e1s f\u00e1cil mostrar una lista de casillas de verificaci\u00f3n, como ... <a href=\"https:\/\/www.open-user-map.com\/es\/knowledge-base\/how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor\/\">Contin\u00faa en<\/a><\/p>","protected":false},"author":50,"comment_status":"closed","ping_status":"closed","template":"","format":"standard","meta":{"footnotes":""},"ht-kb-category":[53],"ht-kb-tag":[117,179,58,178,57],"class_list":["post-6302","ht_kb","type-ht_kb","status-publish","format-standard","hentry","ht_kb_category-faq","ht_kb_tag-categories","ht_kb_tag-checkbox","ht_kb_tag-custom","ht_kb_tag-hierarchical","ht_kb_tag-style"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Display the Marker Categories as a Checkbox List in the WordPress Editor - Open User Map<\/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:\/\/www.open-user-map.com\/es\/knowledge-base\/how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Display the Marker Categories as a Checkbox List in the WordPress Editor - Open User Map\" \/>\n<meta property=\"og:description\" content=\"By default, the &#8220;Marker Categories&#8221; taxonomy (oum-type) used in Open User Map is non-hierarchical \u2014 this means it behaves like tags, showing up as a text input field in the editor where you can type and separate items with commas. However, in some cases, it&#8217;s more user-friendly to show a checkbox list, like the standard &hellip; Continued\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.open-user-map.com\/es\/knowledge-base\/how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor\/\" \/>\n<meta property=\"og:site_name\" content=\"Open User Map\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minuto\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\/\/www.open-user-map.com\/knowledge-base\/how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.open-user-map.com\/knowledge-base\/how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor\/\"},\"author\":{\"name\":\"Daniel Sch\u00f6nherr\",\"@id\":\"https:\/\/www.open-user-map.com\/#\/schema\/person\/d9c8cbe470ae2702b6de61e0f73a7402\"},\"headline\":\"How to Display the Marker Categories as a Checkbox List in the WordPress Editor\",\"datePublished\":\"2025-08-13T11:41:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.open-user-map.com\/knowledge-base\/how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor\/\"},\"wordCount\":186,\"publisher\":{\"@id\":\"https:\/\/www.open-user-map.com\/#organization\"},\"inLanguage\":\"es\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.open-user-map.com\/knowledge-base\/how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor\/\",\"url\":\"https:\/\/www.open-user-map.com\/knowledge-base\/how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor\/\",\"name\":\"How to Display the Marker Categories as a Checkbox List in the WordPress Editor - Open User Map\",\"isPartOf\":{\"@id\":\"https:\/\/www.open-user-map.com\/#website\"},\"datePublished\":\"2025-08-13T11:41:20+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.open-user-map.com\/knowledge-base\/how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.open-user-map.com\/knowledge-base\/how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.open-user-map.com\/knowledge-base\/how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.open-user-map.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Display the Marker Categories as a Checkbox List in the WordPress Editor\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.open-user-map.com\/#website\",\"url\":\"https:\/\/www.open-user-map.com\/\",\"name\":\"Open User Map\",\"description\":\"WordPress Map Plugin\",\"publisher\":{\"@id\":\"https:\/\/www.open-user-map.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.open-user-map.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.open-user-map.com\/#organization\",\"name\":\"Open User Map\",\"url\":\"https:\/\/www.open-user-map.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/www.open-user-map.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.open-user-map.com\/wp-content\/uploads\/2023\/09\/icon-256x256-1.png\",\"contentUrl\":\"https:\/\/www.open-user-map.com\/wp-content\/uploads\/2023\/09\/icon-256x256-1.png\",\"width\":256,\"height\":256,\"caption\":\"Open User Map\"},\"image\":{\"@id\":\"https:\/\/www.open-user-map.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.open-user-map.com\/#\/schema\/person\/d9c8cbe470ae2702b6de61e0f73a7402\",\"name\":\"Daniel Sch\u00f6nherr\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"C\u00f3mo mostrar las categor\u00edas de marcador como una lista de casillas de verificaci\u00f3n en el editor de WordPress - Open User Map","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:\/\/www.open-user-map.com\/es\/knowledge-base\/how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor\/","og_locale":"es_ES","og_type":"article","og_title":"How to Display the Marker Categories as a Checkbox List in the WordPress Editor - Open User Map","og_description":"By default, the &#8220;Marker Categories&#8221; taxonomy (oum-type) used in Open User Map is non-hierarchical \u2014 this means it behaves like tags, showing up as a text input field in the editor where you can type and separate items with commas. However, in some cases, it&#8217;s more user-friendly to show a checkbox list, like the standard &hellip; Continued","og_url":"https:\/\/www.open-user-map.com\/es\/knowledge-base\/how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor\/","og_site_name":"Open User Map","twitter_card":"summary_large_image","twitter_misc":{"Tiempo de lectura":"1 minuto"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/www.open-user-map.com\/knowledge-base\/how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor\/#article","isPartOf":{"@id":"https:\/\/www.open-user-map.com\/knowledge-base\/how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor\/"},"author":{"name":"Daniel Sch\u00f6nherr","@id":"https:\/\/www.open-user-map.com\/#\/schema\/person\/d9c8cbe470ae2702b6de61e0f73a7402"},"headline":"How to Display the Marker Categories as a Checkbox List in the WordPress Editor","datePublished":"2025-08-13T11:41:20+00:00","mainEntityOfPage":{"@id":"https:\/\/www.open-user-map.com\/knowledge-base\/how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor\/"},"wordCount":186,"publisher":{"@id":"https:\/\/www.open-user-map.com\/#organization"},"inLanguage":"es"},{"@type":"WebPage","@id":"https:\/\/www.open-user-map.com\/knowledge-base\/how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor\/","url":"https:\/\/www.open-user-map.com\/knowledge-base\/how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor\/","name":"C\u00f3mo mostrar las categor\u00edas de marcador como una lista de casillas de verificaci\u00f3n en el editor de WordPress - Open User Map","isPartOf":{"@id":"https:\/\/www.open-user-map.com\/#website"},"datePublished":"2025-08-13T11:41:20+00:00","breadcrumb":{"@id":"https:\/\/www.open-user-map.com\/knowledge-base\/how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.open-user-map.com\/knowledge-base\/how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.open-user-map.com\/knowledge-base\/how-to-display-the-marker-categories-as-a-checkbox-list-in-the-wordpress-editor\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.open-user-map.com\/"},{"@type":"ListItem","position":2,"name":"How to Display the Marker Categories as a Checkbox List in the WordPress Editor"}]},{"@type":"WebSite","@id":"https:\/\/www.open-user-map.com\/#website","url":"https:\/\/www.open-user-map.com\/","name":"Open User Map","description":"Plugin de mapas de WordPress","publisher":{"@id":"https:\/\/www.open-user-map.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.open-user-map.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/www.open-user-map.com\/#organization","name":"Open User Map","url":"https:\/\/www.open-user-map.com\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.open-user-map.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.open-user-map.com\/wp-content\/uploads\/2023\/09\/icon-256x256-1.png","contentUrl":"https:\/\/www.open-user-map.com\/wp-content\/uploads\/2023\/09\/icon-256x256-1.png","width":256,"height":256,"caption":"Open User Map"},"image":{"@id":"https:\/\/www.open-user-map.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.open-user-map.com\/#\/schema\/person\/d9c8cbe470ae2702b6de61e0f73a7402","name":"Daniel Sch\u00f6nherr"}]}},"_links":{"self":[{"href":"https:\/\/www.open-user-map.com\/es\/wp-json\/wp\/v2\/ht-kb\/6302","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.open-user-map.com\/es\/wp-json\/wp\/v2\/ht-kb"}],"about":[{"href":"https:\/\/www.open-user-map.com\/es\/wp-json\/wp\/v2\/types\/ht_kb"}],"author":[{"embeddable":true,"href":"https:\/\/www.open-user-map.com\/es\/wp-json\/wp\/v2\/users\/50"}],"replies":[{"embeddable":true,"href":"https:\/\/www.open-user-map.com\/es\/wp-json\/wp\/v2\/comments?post=6302"}],"version-history":[{"count":1,"href":"https:\/\/www.open-user-map.com\/es\/wp-json\/wp\/v2\/ht-kb\/6302\/revisions"}],"predecessor-version":[{"id":6303,"href":"https:\/\/www.open-user-map.com\/es\/wp-json\/wp\/v2\/ht-kb\/6302\/revisions\/6303"}],"wp:attachment":[{"href":"https:\/\/www.open-user-map.com\/es\/wp-json\/wp\/v2\/media?parent=6302"}],"wp:term":[{"taxonomy":"ht_kb_category","embeddable":true,"href":"https:\/\/www.open-user-map.com\/es\/wp-json\/wp\/v2\/ht-kb-category?post=6302"},{"taxonomy":"ht_kb_tag","embeddable":true,"href":"https:\/\/www.open-user-map.com\/es\/wp-json\/wp\/v2\/ht-kb-tag?post=6302"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}