Disable mobile theme only for one page
-
I have a page with id 40 which shouldn’t display the Jetpack’s mobile theme on smartphones, while all other pages should. How do I do this?
I found this filter but maybe I’m using it incorrectly, or it doesn’t work in my functions.php:
// define the jetpack_check_mobile callback function filter_jetpack_check_mobile( $is_mobile ) { if(is_page(40)) { $is_mobile = false; } return $is_mobile; }; // add the filter add_filter( 'jetpack_check_mobile', 'filter_jetpack_check_mobile', 10, 1 );
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Disable mobile theme only for one page’ is closed to new replies.