modules/custom-css/custom-css-4.7.php 1 location
|
@@ 865-868 (lines=4) @@
|
862 |
|
return $args; |
863 |
|
} |
864 |
|
|
865 |
|
if ( isset( $preprocessors[ $preprocessor ] ) ) { |
866 |
|
$args['post_content_filtered'] = $css; |
867 |
|
$args['post_content'] = call_user_func( $preprocessors[ $preprocessor ]['callback'], $css ); |
868 |
|
} |
869 |
|
|
870 |
|
return $args; |
871 |
|
} |
modules/custom-css/custom-css.php 1 location
|
@@ 1338-1345 (lines=8) @@
|
1335 |
|
if ( ! $css ) |
1336 |
|
return ''; |
1337 |
|
|
1338 |
|
if ( $preprocessor ) { |
1339 |
|
/** This filter is documented in modules/custom-css/custom-css.php */ |
1340 |
|
$preprocessors = apply_filters( 'jetpack_custom_css_preprocessors', array() ); |
1341 |
|
|
1342 |
|
if ( isset( $preprocessors[$preprocessor] ) ) { |
1343 |
|
$css = call_user_func( $preprocessors[$preprocessor]['callback'], $css ); |
1344 |
|
} |
1345 |
|
} |
1346 |
|
|
1347 |
|
safecss_class(); |
1348 |
|
$csstidy = new csstidy(); |