Created
November 7, 2012 15:45
-
-
Save mjangda/4032363 to your computer and use it in GitHub Desktop.
Override Jetpack's mobile theme by loading your own.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'jetpack_mobile_stylesheet', function( $stylesheet, $theme ) { | |
return 'vip/mytheme-mobile'; | |
} ); | |
add_filter( 'jetpack_mobile_template', function ( $template, $theme ) { | |
return 'vip/mytheme-mobile'; | |
// if our mobile theme is a child theme, we should return the parent: | |
// return 'pub/myparenttheme-mobile'; | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment