Select Page

Filter for user custom CSS

Parameters

  1. 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' );
?>