I'm trying to automatically change the theme on my site based on the value of a variable.
I tried inserting the following into the template-loader.php file:
if ($coun == 1) {
$template = "starsandstripes";
}
This is before this code:
if ( $template = apply_filters( 'template_include', $template ) )
include( $template );
return;
Does anyone know what I'm doing wrong and/or have a link to the solution?