Site logo

Archived topic

Remove Sidebar on Mobile but not dislay none

3 replies · Started by Gopi on February 23, 2020

Viewing posts 1–4 of 4

Hi there,

try this PHP snippet:

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.

Thanks

Glad to be of help

This archived topic is closed to new replies.