diff --git a/config.php b/config.php
index 3738f5c..5c80f3c 100644
--- a/config.php
+++ b/config.php
@@ -95,13 +95,13 @@ return [
"shortcodes" => [
"vc_row" => function ($attr, $content) {
- return "
".$content."
".PHP_EOL;
+ return "".do_shortcode($content)."
".PHP_EOL;
},
"vc_column" => function ($attr, $content) {
- return "".$content."
".PHP_EOL;
+ return "".do_shortcode($content)."
".PHP_EOL;
},
"vc_column_text" => function ($attr, $content) {
- return "".$content."
".PHP_EOL;
+ return "".do_shortcode($content)."
".PHP_EOL;
},
"vc_single_image" => function ($attr) {
$imageID = $attr["image"] ?? "";