mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-04 12:22:24 +08:00
4 lines
143 B
Text
4 lines
143 B
Text
add_filter( 'wphb_inline_limit_kb', 'adjust_inline_limits' );
|
|
function adjust_inline_limits( $value ) {
|
|
return 50.0; // Set any value in Kb.
|
|
}
|