- Wordpress mobile pages
- add_filter('option_template', 'mobileTheme');
- add_filter('template', 'mobileTheme');
- add_filter('option_template', 'mobileTheme');
- add_filter('option_stylesheet', 'mobileTheme');
- function mobileTheme($theme) {
- global $mobile;
- if($mobile)
- $theme = 'mobile_theme';
- return $theme;
- }