exclude metatags
does anybody know how to exclude metatags -
this way does not work:
any ideas welcome
tomas
hi charter,
thanks again for your fast response - setting both vars to = ""
works fine :-)
tomas I've got the same situation and wanted to clarify which vars you set to "".
Was it like this:
if (is_array($tags)) {
if (isset($tags['description'])) {
$page_desc = "";
}
if (isset($tags['keywords'])) {
$page_keywords = "";
}
}
I appreciate your help
thanks again for your fast response - setting both vars to = ""
works fine :-)
tomas
define('APPEND_TITLE_META',false);
yep - that will work.
kind regards
tomas
if (is_array($tags)) {
if (isset($tags['description'])) {
$page_desc = phpdigCleanHtml($tags['description']);
}
if (isset($tags['keywords'])) {
$page_keywords = phpdigCleanHtml($tags['keywords']);
}
}
#If you have any other info about this subject , Please add it free.# |
