How to boost loading of the page header
Do you need to fill the keywords meta tag and how to use it
What is meta keywords
The SEO specialists used this feature for their own benefit; they tried to enter a lot of keywords. Often the keys specified in meta keywords didn't match the content of the page.
As a result of overusing keywords, the meaning of the tag is completely lost. The tag wasn't a useful signal when ranking websites, which affected the reputation of the search engines themselves.
Soon, search algorithms started to apply sanctions to websites for the excessive use of keywords. If the algorithm found many non-related keys in the keywords tag on the page, the page dropped down in the search results and was subject to sanctions.
The syntax for the keywords meta tag looks like this:
<html>
<head>
<meta name="keywords" content="keyword 1, keyword 2, keyword 3" />
</head>
</html>
Should meta keywords be used for SEO promotion in 2019?
How to fill the keywords meta tag in 2019
Filling rules for keywords
How to quickly fill in meta keywords for SEO
In Joomla, you can do the same:

- go to the database through the hosting panel and add the script:
ALTER TABLE `oc_information_description` ADD `meta_description` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL ,
ADD `meta_keyword` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL
- make changes to the admin/controller/catalog/information.php file after the line 270:
$this->data['entry_meta_keyword'] = $this->language->get('entry_meta_keyword');
$this->data['entry_meta_description'] = $this->language->get('entry_meta_description');
- add a section of code to the file admin/view/template/catalog/information_form.tpl:
<tr>
<td><?php echo $entry_meta_description; ?></td>
<td><textarea name="information_description[<?php echo $language['language_id']; ?>][meta_description]" cols="40" rows="5"><?php echo isset($information_description[$language['language_id']]) ? $information_description[$language['language_id']]['meta_description'] : ''; ?></textarea></td>
</tr>
<tr>
<td><?php echo $entry_meta_keyword; ?></td>
<td><textarea name="information_description[<?php echo $language['language_id']; ?>][meta_keyword]" cols="40" rows="5"><?php echo isset($information_description[$language['language_id']]) ? $information_description[$language['language_id']]['meta_keyword'] : ''; ?></textarea></td>
</tr>
- add the following code in the file admin/model/catalog/information.php after line 147:
'meta_keyword' => $result['meta_keyword'],
'meta_description' => $result['meta_description'],
meta_keyword = '" . $this->db->escape($value['meta_keyword']) . "', meta_description = '" . $this->db->escape($value['meta_description']) . "',
- add the following in the file admin/language/english/catalog/information.php after line 14
$_['entry_meta_keyword'] = 'Meta Tag Keywords:';
$_['entry_meta_description'] = 'Meta Tag Description:';
You need to write a list of high-frequency queries in one field and click Enter. After that, you will see a new list of low-frequency keywords that can be distributed on different pages.

Conclusion
Google believes that keywords meta tag is not required, therefore, the search engine doesn't analyze it.
Learn how to get the most out of Serpstat
Want to get a personal demo, trial period or bunch of successful use cases?
Send a request and our expert will contact you ;)
Recommended posts
Cases, lifehacks, researches and useful articles
Don’t you have time to follow the news? No worries!
Our editor Stacy will choose articles that will definitely help you with your work. Join our cozy community :)
By clicking the button, you agree to our privacy policy.
Comments