';
}
// Load different css
function wrthemes_wp_head() {
//Styles
$style = $_REQUEST[style];
if ($style != '') {
echo ''."\n";
} else {
$stylesheet = get_option('wr_alt_stylesheet');
if($stylesheet != ''){
echo ''."\n";
}
}
// Favicon
if(get_option('wr_custom_favicon') != ''){
echo ''."\n";
}
$custom_css = get_option('wr_custom_css');
if($custom_css != '')
{
$output = ''."\n";
echo $output;
}
}
// legacy comments on versions before WP 2.7
add_filter('comments_template', 'legacy_comments');
function legacy_comments($file) {
if(!function_exists('wp_list_comments')) : // check for WP 2.7-only
$file = TEMPLATEPATH . '/comments-legacy.php';
endif;
return $file;
}
function wr_option_output(){
}
add_action('wp_footer','wr_option_output');
?>