I'm trying to do a php include that changes with each blog in MU based on blog id number.
Same theme used for all blogs.
This prospective php code would be hardcoded into the sidebar template.
What I would like in simplified form is:
If blog-id=1 display
<?php
@ini_set('expose_php', 'Off');
@include "/var/www/html/domain/site_templates/site_1_1.php";
?>
else if blog-id=2 display
<?php
@ini_set('expose_php', 'Off');
@include "/var/www/html/domain/site_templates/site_1_2.php";
?>
else if blog-id=3 display
<?php
@ini_set('expose_php', 'Off');
@include "/var/www/html/domain/site_templates/site_1_3.php";
?>
So the include changes by blog.
Is it possible to do that? How would something like that be coded?