leech Posted September 12, 2015 Share Posted September 12, 2015 Witam, od firmy pozycjonującej dostałem polecenie dodania do meta-tagu title numeru strony wg takiego schematu: <title>[nazwa kategori] – str [numer strony]</title> Rozwiązałem to za pomocą funkcji GET w classes/tools.php: Podmieniłem: /* Categories specifics meta tags */ elseif ($id_category = self::getValue('id_category')) { $row = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow(' SELECT `name`, `meta_title`, `meta_description`, `meta_keywords`, `description` FROM `'._DB_PREFIX_.'category_lang` WHERE id_lang = '.(int)($id_lang).' AND id_category = '.(int)($id_category)); if ($row) { if (empty($row['meta_description'])) $row['meta_description'] = strip_tags($row['description']); return self::completeMetaTags($row, $row['name']); } } na: /* Categories specifics meta tags */ elseif ($id_category = self::getValue('id_category')) { $row = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow(' SELECT `name`, `meta_title`, `meta_description`, `meta_keywords`, `description` FROM `'._DB_PREFIX_.'category_lang` WHERE id_lang = '.(int)($id_lang).' AND id_category = '.(int)($id_category)); if ($row) { if (empty($row['meta_description'])) $row['meta_description'] = strip_tags($row['description']); if (isset($_GET['p'])) return self::completeMetaTags($row, $row['name'].$_GET['p']); else return self::completeMetaTags($row, $row['name']); } } Czy taki sposób jest prawidłowy i bezpieczny? Link to comment Share on other sites More sharing options...
Question
leech
Witam,
od firmy pozycjonującej dostałem polecenie dodania do meta-tagu title numeru strony wg takiego schematu:
<title>[nazwa kategori] – str [numer strony]</title>
Rozwiązałem to za pomocą funkcji GET w classes/tools.php:
Podmieniłem:
na:
Czy taki sposób jest prawidłowy i bezpieczny?
Link to comment
Share on other sites
0 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now