Skip to content

Instantly share code, notes, and snippets.

@jmarreros
Last active February 27, 2017 15:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmarreros/83bd390a2ac5600bf6c31e358aca3530 to your computer and use it in GitHub Desktop.
Save jmarreros/83bd390a2ac5600bf6c31e358aca3530 to your computer and use it in GitHub Desktop.
Para colocar código html en la descripción de categoría
<?php
// Unfilter Description
foreach ( array( 'pre_term_description' ) as $filter ) {
remove_filter( $filter, 'wp_filter_kses' );
}
foreach ( array( 'term_description' ) as $filter ) {
remove_filter( $filter, 'wp_kses_data' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment