From: Laury GvR Date: Mon, 28 Sep 2015 17:17:33 +0000 (-0400) Subject: Content now equal to shortcode in functions, attempt to fix 500 on dev55 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=ab23367af9df40e1f26f3028739ccf93b782b40f;p=WP-Themes%2Fglmthemes%2Fmountpleasant-theme.git Content now equal to shortcode in functions, attempt to fix 500 on dev55 --- diff --git a/functions.php b/functions.php index 0d8b7e5..ba2c2ef 100644 --- a/functions.php +++ b/functions.php @@ -427,7 +427,7 @@ function custom_content($content) { && in_array( 'glm-members-list', $matches[2] ) ) { $shortcode = $matches[0][0]; - $content = do_shortcode($shortcode); + $content = $shortcode; return $content; } else { $content=str_replace($matches[0],"",$content);