HI i want to remove sidebar in single post on mobile. I dont want to hide. i want to remove to avoid it from loading.(am using custom site library dispatch)
I have tried like what mentioned in the below code but no success. So pls do the needful.
add_filter( 'generate_sidebar_layout', function( $layout ) {
// If we are viewing single post on mobile, set the sidebar
if ( is_single() && wp_is_mobile() ) {
return 'no-sidebar';
}
// Or else, set the regular layout
return $layout;
} );
Please note – the wp_is_mobile() function has to detect the device is a mobile device, so resizing a desktop browser will not apply.