{"id":16008,"date":"2021-04-22T12:53:02","date_gmt":"2021-04-22T10:53:02","guid":{"rendered":"https:\/\/fran.cosmobuzz.es\/?p=16008"},"modified":"2022-07-18T17:22:34","modified_gmt":"2022-07-18T15:22:34","slug":"habilitar-edicion-html-en-las-descripciones","status":"publish","type":"post","link":"https:\/\/fran.cosmobuzz.es\/en\/habilitar-edicion-html-en-las-descripciones\/","title":{"rendered":"Habilitar edici\u00f3n HTML en las descripciones"},"content":{"rendered":"<h2 class=\"has-text-align-center wp-block-heading\">\u00bfC\u00f3mo habilitar la edici\u00f3n HTML en las descripciones de las categor\u00edas?<\/h2>\n\n\n\n<p>Algunas veces ya sea por versiones de WordPress, temas, entre otras, la edici\u00f3n de la descripci\u00f3n de las categor\u00edas no acepta html, pero podemos ampliar o recuperar dicha funci\u00f3n con un simple c\u00f3digo.<\/p>\n\n\n\n<p>Para poder editar las descripciones de las categor\u00edas en HTML debemos implementar el  siguiente fragmento:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/**\n * Permitir HTML en (category, tag) descripciones\n *\/\nforeach ( array( 'pre_term_description' ) as $filter ) {\n\tremove_filter( $filter, 'wp_filter_kses' );\n\tif ( ! current_user_can( 'unfiltered_html' ) ) {\n\t\tadd_filter( $filter, 'wp_filter_post_kses' );\n\t}\n}\n \nforeach ( array( 'term_description' ) as $filter ) {\n\tremove_filter( $filter, 'wp_kses_data' );\n}<\/code><\/pre>\n\n\n\n<p>Puedes incrustarlo en tu WP con <a href=\"https:\/\/es.wordpress.org\/plugins\/code-snippets\/\" target=\"_blank\" rel=\"noreferrer noopener sponsored nofollow\">Code Snippets<\/a> o mediante tu <a href=\"https:\/\/fran.cosmobuzz.es\/en\/crear-un-plugin-en-wordpress\/\">plugin personalizado<\/a>. Una vez activado se te habilitar\u00e1 la edici\u00f3n en HTML.<\/p>\n\n\n\n<p>Pero podemos hacer algo m\u00e1s:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/Permitir shortcodes en descripciones \n\nadd_filter( 'term_description', 'do_shortcode' );<\/code><\/pre>\n\n\n\n<p>Ahora tambi\u00e9n podremos insertar Shortcodes como por ejemplo los generados por Elementor Pro y <a href=\"https:\/\/es.wordpress.org\/plugins\/anywhere-elementor\/\" target=\"_blank\" rel=\"noreferrer noopener sponsored nofollow\">AnyWhere Elementor<\/a>. Los dos c\u00f3digos activan dichos recursos tanto en las categor\u00edas como en las etiquetas.<\/p>\n\n\n\n<p>La secuencia completa quedar\u00eda as\u00ed:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/**\n * Permitir HTML en (category, tag) descripciones\n *\/\nforeach ( array( 'pre_term_description' ) as $filter ) {\n\tremove_filter( $filter, 'wp_filter_kses' );\n\tif ( ! current_user_can( 'unfiltered_html' ) ) {\n\t\tadd_filter( $filter, 'wp_filter_post_kses' );\n\t}\n}\n \nforeach ( array( 'term_description' ) as $filter ) {\n\tremove_filter( $filter, 'wp_kses_data' );\n}\n\n\/\/Permitir shortcodes en descripciones \n\nadd_filter( 'term_description', 'do_shortcode' );<\/code><\/pre>\n\n\n\n<p>Espero te sirva y hasta la pr\u00f3xima. <\/p>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":16012,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[196],"tags":[195,222],"_links":{"self":[{"href":"https:\/\/fran.cosmobuzz.es\/en\/wp-json\/wp\/v2\/posts\/16008"}],"collection":[{"href":"https:\/\/fran.cosmobuzz.es\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fran.cosmobuzz.es\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fran.cosmobuzz.es\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fran.cosmobuzz.es\/en\/wp-json\/wp\/v2\/comments?post=16008"}],"version-history":[{"count":0,"href":"https:\/\/fran.cosmobuzz.es\/en\/wp-json\/wp\/v2\/posts\/16008\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/fran.cosmobuzz.es\/en\/wp-json\/wp\/v2\/media\/16012"}],"wp:attachment":[{"href":"https:\/\/fran.cosmobuzz.es\/en\/wp-json\/wp\/v2\/media?parent=16008"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fran.cosmobuzz.es\/en\/wp-json\/wp\/v2\/categories?post=16008"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fran.cosmobuzz.es\/en\/wp-json\/wp\/v2\/tags?post=16008"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}