Filter for user custom CSS
Parameters
- css – string with user custom CSS code
Usage
<?php
function change_berocket_pp_custom_css ( $css ) {
//your code here
return $css;
}
add_filter( 'berocket_pp_custom_css', 'change_berocket_pp_custom_css' );
?>