| 1 |
<?php |
| 2 |
// phpcs:disable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound -- view template receives variables via extract(); prefixing is impractical. |
| 3 |
|
| 4 |
if ( ! defined( 'ABSPATH' ) ) { |
| 5 |
exit; |
| 6 |
} |
| 7 |
if ( ! $show_description || empty( $description ) ) { |
| 8 |
return; |
| 9 |
} |
| 10 |
?> |
| 11 |
<p class="betterdocs-category-description"> |
| 12 |
<?php |
| 13 |
if ( isset( $widget_type ) && $widget_type === 'category_box' ) { |
| 14 |
$allowed_tags = [ 'strong', 'em', 'b', 'code', 'i' ]; |
| 15 |
echo wp_kses( $description, $allowed_tags ); |
| 16 |
} else { |
| 17 |
echo wp_kses_post( $description ); |
| 18 |
} |
| 19 |
?> |
| 20 |
</p> |
| 21 |
|