Skip to content

Instantly share code, notes, and snippets.

@scottopolis
Created July 23, 2015 17:17
Show Gist options
  • Save scottopolis/f38c09ed4dba11eaadd2 to your computer and use it in GitHub Desktop.
Save scottopolis/f38c09ed4dba11eaadd2 to your computer and use it in GitHub Desktop.
Disable WP Touch for AppPresser
add_filter( 'wptouch_should_init_pro', 'appp_disable_wptouch' );
function appp_disable_wptouch( $value ) {
if( class_exists( 'AppPresser' ) && AppPresser::is_app() ) {
$value = false;
}
return $value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment