Skip to content

Instantly share code, notes, and snippets.

@mjangda
Created November 7, 2012 15:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mjangda/4032363 to your computer and use it in GitHub Desktop.
Save mjangda/4032363 to your computer and use it in GitHub Desktop.
Override Jetpack's mobile theme by loading your own.
<?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