modules/custom-css/custom-css-in-customizer.php 1 location
|
@@ 221-222 (lines=2) @@
|
218 |
|
if ( $custom_content_width <= 0 && ! empty( $GLOBALS['content_width'] ) ) |
219 |
|
$custom_content_width = $GLOBALS['content_width']; |
220 |
|
|
221 |
|
if ( ! $custom_content_width || ( isset( $GLOBALS['content_width'] ) && $custom_content_width == $GLOBALS['content_width'] ) ) |
222 |
|
$custom_content_width = ''; |
223 |
|
|
224 |
|
return array( |
225 |
|
'css' => Jetpack_Custom_CSS::get_css(), |
modules/custom-css/custom-css.php 1 location
|
@@ 1031-1032 (lines=2) @@
|
1028 |
|
if ( $custom_content_width <= 0 && ! empty( $GLOBALS['content_width'] ) ) |
1029 |
|
$custom_content_width = $GLOBALS['content_width']; |
1030 |
|
|
1031 |
|
if ( ! $custom_content_width || ( isset( $GLOBALS['content_width'] ) && $custom_content_width == $GLOBALS['content_width'] ) ) |
1032 |
|
$custom_content_width = ''; |
1033 |
|
|
1034 |
|
?> |
1035 |
|
<div class="misc-pub-section"> |