Replace the 'META DESCRIPTION' Content? option is disabled. I've been using this option as a manual edit in the headerinclude template.
Example:
What's the if conditional for the blog entries (messages)?HTML Code:<if condition="$show['threadinfo']"> <meta name="keywords" content="something" /> <meta name="description" content="something: <!--VBSEO_RR_1-->" /> <else />
I found the related code in functions_vbseo.php file but couldn't find the working one...PHP Code:if(VBSEO_REWRITE_META_DESCRIPTION && $desc_content = $GLOBALS['blog']['message'])
{
$desc_content = preg_replace('#(<.*?>)+#s', ' ', $desc_content);
$vbseo_fp = $desc_content = trim($desc_content);
}
if(VBSEO_REWRITE_META_KEYWORDS && ($tbits = $GLOBALS['blog']['title']))
{
if((VBSEO_FILTER_STOPWORDS != 0) && VBSEO_STOPWORDS)
{
$tbits = preg_replace('#\b('.VBSEO_STOPWORDS.')\b#is', '', $tbits);
}
preg_match_all('#([a-zA-Z0-9_\x80-\xff]+)#s', $tbits, $ptext);
$kw_content = implode(',', $ptext[1]);
}
break;


LinkBack URL
About LinkBacks





Reply With Quote
