projects/plugins/jetpack/modules/custom-css/custom-css-4.7.php 1 location
|
@@ 895-898 (lines=4) @@
|
892 |
|
return $args; |
893 |
|
} |
894 |
|
|
895 |
|
if ( isset( $preprocessors[ $preprocessor ] ) ) { |
896 |
|
$args['post_content_filtered'] = $css; |
897 |
|
$args['post_content'] = call_user_func( $preprocessors[ $preprocessor ]['callback'], $css ); |
898 |
|
} |
899 |
|
|
900 |
|
return $args; |
901 |
|
} |
projects/plugins/jetpack/modules/custom-css/custom-css.php 1 location
|
@@ 1386-1393 (lines=8) @@
|
1383 |
|
if ( ! $css ) |
1384 |
|
return ''; |
1385 |
|
|
1386 |
|
if ( $preprocessor ) { |
1387 |
|
/** This filter is documented in modules/custom-css/custom-css.php */ |
1388 |
|
$preprocessors = apply_filters( 'jetpack_custom_css_preprocessors', array() ); |
1389 |
|
|
1390 |
|
if ( isset( $preprocessors[$preprocessor] ) ) { |
1391 |
|
$css = call_user_func( $preprocessors[$preprocessor]['callback'], $css ); |
1392 |
|
} |
1393 |
|
} |
1394 |
|
|
1395 |
|
safecss_class(); |
1396 |
|
$csstidy = new csstidy(); |