spacepaste

  1.  
  2. add_action ( 'init', 'mobile_redirect' );
  3. function mobile_redirect() {
  4. if ( is_page( 'Download' )) {
  5. require_once( get_template_directory() . '/mobile_detect/Mobile_Detect.php');
  6. if ( class_exists( 'Mobile_Detect' ) ) {
  7. $detect = new Mobile_Detect;
  8. if ( $detect->isiOS() ) {
  9. wp_redirect( 'https://itunes.apple.com/au/app/stashd/id714814803?mt=8');
  10. exit(0);
  11. }
  12. }
  13. }
  14. }
  15.