Increase the inline CSS limit in Hummingbird

Increase the inline CSS limit in Hummingbird on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'wphb_inline_limit_kb', 'adjust_inline_limits' );
function adjust_inline_limits( $value ) {
return 50.0; // Set any value in Kb.
}