Well, adding few repeated content in the meta tags should not hurt if you do not add to many and unrelated content.
This mean that doing so, you should only add few and general content.
The difference would mostly be cosmetic given the importance of meta tags nowadays, but here is how to do it, in includes/function.php find :
- Code: Select all
$this->meta['meta_desc'] = ( !empty($this->meta['meta_desc']) ) ? $this->meta['meta_desc'] : $this->meta_filter_txt($page_title . ' : ' . $this->meta['meta_desc_def']);
$this->meta['keywords'] = ( !empty($this->meta['keywords']) ) ? $this->meta['keywords'] : $this->make_keywords( $page_title . ' ' . $this->meta['meta_keywords_def']);
and replace it with :
- Code: Select all
$extra_desc = "my extra description that will be added to the regular ones";
$extra_keywords = "coma,separated,list,of,addtional,keywords";
$this->meta['meta_desc'] = ( !empty($this->meta['meta_desc']) ) ? $this->meta['meta_desc'] . " $extra_desc" : $this->meta_filter_txt($page_title . ' : ' . $this->meta['meta_desc_def']);
$this->meta['keywords'] = ( !empty($this->meta['keywords']) ) ? $this->meta['keywords'] . ",$extra_keywords" : $this->make_keywords( $page_title . ' ' . $this->meta['meta_keywords_def']);
Just make sure you only add few words in $extra_desc and $extra_keywords
++