siteorigin_panels_general_style_tablet_css

siteorigin_panels_general_style_tablet_css

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: siteorigin-panels.2.31.5

apply_filters('siteorigin_panels_general_style_tablet_css') is found 1 times:

  • /inc/renderer.php line 681
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    $standard_css = apply_filters( 'siteorigin_panels_general_style_css', $standard_css, $style );
     
    $tablet_css = array();
    $tablet_css = siteorigin_panels_setting( 'tablet-layout' ) ? apply_filters( 'siteorigin_panels_' . $name . '_style_tablet_css', $tablet_css, $style ) : '';
    $tablet_css = apply_filters( 'siteorigin_panels_general_style_tablet_css', $tablet_css, $style );
     
    $mobile_css = array();
    $mobile_css = apply_filters( 'siteorigin_panels_' . $name . '_style_mobile_css', $mobile_css, $style );
    $mobile_css = apply_filters( 'siteorigin_panels_general_style_mobile_css', $mobile_css, $style );
     
    // Remove anything we didn't actually use