/ Published in: PHP
Expand |
Embed | Plain Text
//Set Default Template on IE 6 add_filter('template', 'serve_default_to_iesix'); add_filter('option_template', 'serve_default_to_iesix'); add_filter('option_stylesheet', 'serve_default_to_iesix'); function serve_default_to_iesix($theme) { $theme = 'default'; return $theme; }
You need to login to post a comment.
