Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 7th, 2012  |  syntax: None  |  size: 0.32 KB  |  hits: 19  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Wordpress mobile pages
  2. add_filter('option_template', 'mobileTheme');
  3. add_filter('template', 'mobileTheme');
  4. add_filter('option_template', 'mobileTheme');
  5. add_filter('option_stylesheet', 'mobileTheme');
  6.  
  7. function mobileTheme($theme) {
  8.     global $mobile;
  9.  
  10.     if($mobile)
  11.         $theme = 'mobile_theme';
  12.  
  13.     return $theme;
  14. }