Topic: [PunBB 1.4.3] SEO home title
/!\ Only this post is up to date /!\
Hi all,
I'm actually optimizing my PunBB, I'll use this post to share with you what I change.
First thing, the TITLE...
I made this to use board description on home page.
./header.php (Line ~87)
After
// Should we output feed links?
if (FORUM_PAGE == 'index')
{
Add
$forum_head['title'] = '<title>'.htmlentities($forum_config['o_board_desc']).'</title>';
$forum_head['meta'] = '<meta name="description" content="TYPE YOUR BOARD DESCRIPTION HERE">';