alfredomejia
Member
Posted 16 years ago #
Hi,
Im thinking the possibility to have a site with the same theme but with different headers, banners, colors, etc.
I was thinking if there is a way to get the theme to selec a specific stylesheet according to the URL or blogID...
I found and example on how to do it by season, but my php knowledge is really basic and i cant figure out how to apply it on my situation...
thanks in advance
here what i found so far.. http://wordpress.org/support/topic/156012
Hmmm, I'm not a php major but I know a bit.
Okay so...
What you want to do is change what you found at that link to something like this
$result = get_blog_details($blogId)->blog_id;
if($result = 1){
$user_css = 'user1';
}
elseif($result = 2){
$user_css = 'user2';
}
<link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('template_directory'); ?>/<?php echo $user_css; ?>.css" />
Continue for as many blogs as you have.
Not positive if this works but worth trying.`
Depends on if you have certain criteria for each blog.
Otherwise, I'd just make a theme that had the custom header option plus changeable stylesheets from the backend.