Skip to content

Instantly share code, notes, and snippets.

@jeherve
Created January 14, 2013 10:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeherve/4529187 to your computer and use it in GitHub Desktop.
Save jeherve/4529187 to your computer and use it in GitHub Desktop.
[Jetpack] How to disable the sidebar in Jetpack Mobile Theme http://i.wpne.ws/M9qL
<?php
/*
* Plugin Name: Jetpack Deactivate Mobile Theme Sidebar
* Plugin URI: http://wordpress.org/extend/plugins/jetpack/
* Description: Deactivate the sidebar in Jetpack's Mobile Theme
* Author: Jeremy Herve
* Version: 1.0
* Author URI: http://jeremyherve.com
* License: GPL2+
*/
function jeherve_rm_minileven_sidebar() {
if ( 'pub/minileven' == wp_get_theme () ) {
unregister_sidebar( 'sidebar-1' );
}
}
add_action( 'widgets_init', 'jeherve_rm_minileven_sidebar', 11 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment