Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@Kaiderella
Created January 2, 2015 07:09
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 Kaiderella/813dd991ac4d2025f771 to your computer and use it in GitHub Desktop.
Save Kaiderella/813dd991ac4d2025f771 to your computer and use it in GitHub Desktop.
Ẩn sidebar trong Genesis khi ở giao diện mobile
//* Ẩn sidebar trong Genesis khi ở giao diện mobile
add_action( 'get_header', 'remove_sidebars_mobile' );
function remove_sidebars_mobile() {
if ( wp_is_mobile() ) {
# Force full width content
add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment