----
Автор: Vendetta
Заходим в редактор файла
/adm_panel/settings_sys.php
----
Видим строку echo "Ключевые слова (META):<br />\n";
echo "<textarea name='meta_keywords'>$temp_set[meta_keywords]</textarea><br />\n";
---Под этой строкой вставляем
echo "Копирайт (SEO):<br />\n";
echo "<textarea name='meta_copyright'>$temp_set[meta_copyright]</textarea><br />\n";
echo "Автор (SEO):<br />\n";
echo "<textarea name='meta_author'>$temp_set[meta_author]</textarea><br />\n";
----После
$temp_set['meta_description']=esc(stripcslashes(htmlspecialchars($_POST['meta_description'])),1);
----Добавляем
$temp_set['meta_copyright']=esc(stripcslashes(htmlspecialchars($_POST['meta_copyright'])),1);
$temp_set['meta_author']=esc(stripcslashes(htmlspecialchars($_POST['meta_author'])),1);
----
Заходим в редактор файла
/sys/inc/thead.php
---Видим
if ($set['meta_description']!=NULL)
{
function meta_description($str)
{
global $set;
return str_replace('</head>', '<meta name="description" content="'.$set['meta_description'].'" />'."\n</head>", $str);
}
ob_start('meta_description');
}
---Под ней вставляем
if ($set['meta_author']!=NULL)
{
function meta_author($str)
{
global $set;
return str_replace('</head>', '<meta name="author" content="'.$set['meta_author'].'" />'."\n</head>", $str);
}
ob_start('meta_author');
}
if ($set['meta_copyright']!=NULL)
{
function meta_copyright($str)
{
global $set;
return str_replace('</head>', '<meta name="copyright" content="'.$set['meta_copyright'].'" />'."\n</head>", $str);
}
ob_start('meta_copyright');
}
---Сохраняем и всё готово :-)
Теперь вы можете вписывать копирайт и Автора в meta код через админку
//(c) 2012 Vendetta