Skip to content

Instantly share code, notes, and snippets.

@adczk
Created January 20, 2022 10:44
Show Gist options
  • Select an option

  • Save adczk/847ef4dea710a5315bb3649df76fc258 to your computer and use it in GitHub Desktop.

Select an option

Save adczk/847ef4dea710a5315bb3649df76fc258 to your computer and use it in GitHub Desktop.
Allow inline of CSS files bigger than 4kb
<?php
/**************************
*
* Hummingibrd - allow "inline" of CSS larger than default 4kb
*
* Tested with Hummingbird 3.3.0 only
*
* use as MU plugin
***************************/
add_filter( 'wphb_inline_limit_kb', 'wphb_custom_inline_limit_kb' );
function wphb_custom_inline_limit_kb() {
$limit = 130; // value in kb
return $limit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment