overrides of style.css to give the custom look as defined by the user.
*/
global $options;
$options = get_option('admired_theme_options');
global $admired_themename, $admired_shortname, $version, $admired_settings, $admired_option_group, $admired_option_name; // need these globals
// Google Fonts
if ( isset ($options['admired_head_font_select'])&& ($options['admired_content_font_select']) && ($options['admired_head_font_select'] !="web-safe") && ($options['admired_content_font_select']) !="web-safe" ) { ?>
|' rel='stylesheet' type='text/css'>
' rel='stylesheet' type='text/css'>
' rel='stylesheet' type='text/css'>
'."\n";
$output .= $options['admired_header_css'] . "\n";
$output .= ''."\n";
echo stripslashes($output);
}
//* Superfish
if ( isset ($options['admired_remove_superfish']) && ($options['admired_remove_superfish']!="") ) {
echo ' ';}
else {
echo("\n");
}
echo("\n\n");
}
add_action('wp_head', 'admired_wp_head'); /* action for post wp_head */
?>