Je souhaite modifier l'affichage des titres.
Actuellement j'ai "nom du forum - titre du sujet"
soit :
- Code: Tout sélectionner
// www.phpBB-SEO.com SEO TOOLKIT BEGIN - TITLE
$extra_title = ($start > 0) ? ' - ' . $user->lang['Page'] . ( floor( ($start / $config['posts_per_page']) ) + 1 ) : '';
page_header($topic_data['forum_name'] . ' - ' . $topic_data['topic_title'] . $extra_title);
// www.phpBB-SEO.com SEO TOOLKIT END - TITLE
Et j'aimerais rajouter le nom du site devant la description
"nom du site - nom du forum - titre du sujet"
Que dois rajouter/modifier ?
Merci pour votre aide !
edit :
J'ai trouvé :
- Code: Tout sélectionner
// www.phpBB-SEO.com SEO TOOLKIT BEGIN - TITLE
$extra_title = ($start > 0) ? ' - ' . $user->lang['Page'] . ( floor( ($start / $config['posts_per_page']) ) + 1 ) : '';
page_header($config['sitename']. ' - ' . $topic_data['forum_name'] . ' - ' . $topic_data['topic_title'] . $extra_title);
// www.phpBB-SEO.com SEO TOOLKIT END - TITLE

Français |
Anglais

