This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'wp_head', 'smyles_output_select2_admin_bar_fix' ); | |
function smyles_output_select2_admin_bar_fix() { | |
$type_attr = current_theme_supports( 'html5', 'style' ) ? '' : ' type = "text/css"'; | |
/** | |
* We use ~ here instead of + for any situations where something else ends up attaching to body as well | |
*/ | |
?> | |
<style<?php echo $type_attr; ?> media="screen"> |