2010-06-05, 00:13:51
Not tested, but should work:
Add as many "case ... break;" blocks as you need.
Just like my previous example, insert the code almost at the end of /admin/inc/basic.php, just BEFORE this line:
(Line 295 in GS 2.01; around 348 or so in beta 2.02...)
Edit: Of course, you have to create in GetSimple pages with slugs blog1, blog2 and blog3 -or whatever name you want-. No need to put content in those, it won't be displayed.
Code:
switch ($slug) {
case 'blog1':
$url = 'http://first_blog_address';
break;
case 'blog2':
$url = 'http://second_blog_address';
break;
case 'blog3':
$url = 'http://third_blog_address';
break;
}
Add as many "case ... break;" blocks as you need.
Just like my previous example, insert the code almost at the end of /admin/inc/basic.php, just BEFORE this line:
Code:
return $url;
(Line 295 in GS 2.01; around 348 or so in beta 2.02...)
Edit: Of course, you have to create in GetSimple pages with slugs blog1, blog2 and blog3 -or whatever name you want-. No need to put content in those, it won't be displayed.