From e1387d2592616c06e9d02b9ad0f0f5e1821434f6 Mon Sep 17 00:00:00 2001 From: Marco Antonio Vivas <103132707+markovivas@users.noreply.github.com> Date: Wed, 3 Sep 2025 19:17:22 -0300 Subject: [PATCH] Update functions.php --- functions.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/functions.php b/functions.php index 7b94f4c..6c4c1e1 100644 --- a/functions.php +++ b/functions.php @@ -75,4 +75,12 @@ if (!function_exists('estimated_reading_time')) { } } -?> \ No newline at end of file +// Reset de CSS - Shortcode +add_filter('do_shortcode_tag', function($output, $tag) { + if ($tag === 'mostra-calendario') { + return '
' . $output . '
'; + } + return $output; +}, 10, 2); + +?>