| |
| |
|
|
|
|
| |
|
| |
|
| :: |
| Author |
Message |
belka15
Joined: 07 Oct 2008 Posts: 1
|
Posted: Tue Oct 07, 2008 11:09 pm Post subject: [META] how to remove the title tag of mod? |
|
|
Nice mod.
I want to leave only description and keywords generation from this mod.
What should be deleted from the code?
Thanks. |
|
|
| Back to top |
|
 |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15242
|
Posted: Sat Oct 11, 2008 9:53 am Post subject: Re: [META] how to remove the title tag of mod? |
|
|
in includes/functions.php, replace :
| Code: | | $this->meta['meta_tpl'] = '<meta name="title" content="%s" />' . "\n" . '<meta name="description" lang="%s" content="%s" />' . "\n" . '<meta name="keywords" content="%s" />' . "\n" . '<meta name="category" content="%s" />' . "\n" . '<meta name="robots" content="%s" />'. "\n" . '<meta name="distribution" content="%s" />' . "\n" . '<meta name="resource-type" content="%s" />' . "\n" . '<meta name="copyright" content="%s" />' . "\n"; |
with :
| Code: |
$this->meta['meta_tpl'] = '<meta name="description" lang="%s" content="%s" />' . "\n" . '<meta name="keywords" content="%s" />' . "\n"; |
and :
| Code: | return sprintf( $this->meta['meta_tpl'], $this->meta['meta_title'], $this->meta['meta_lang'], $this->meta['meta_desc'], $this->meta['keywords'], $this->meta['meta_cat'], $this->meta['meta_robots'], $this->meta['meta_distrib'], $this->meta['meta_restype'], $this->meta['meta_copy'] );
|
with :
| Code: | | return sprintf( $this->meta['meta_tpl'], $this->meta['meta_lang'], $this->meta['meta_desc'], $this->meta['keywords'] ); |
But you may still want to play with the meta robots tag, it can be handy to disallow some content.
++ |
_________________ Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________
Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche |
|
| Back to top |
|
 |
|
| Navigation |
Similar Topics |
|
|
|
|
|
|
|
| |
|
|
|
|
| |
|
|
|
|
| |