function vbseo_process_content_area($text)
{
global $seo_preg_replace;
if($seo_preg_replace && VBSEO_ACRONYMS_IN_CONTENT)
{
$text = '<z>'.$text;
$text = preg_replace(array_keys($seo_preg_replace), $seo_preg_replace, $text);
$text = substr($text, 3);
}
$text = vbseo_google_ad_section($text);
return $text;
}