astra_fb_widget_dynamic_css( string $dynamic_css, string $dynamic_css_filtered = '' )
Dynamic CSS
Description
Parameters
- $dynamic_css
-
(string) (Required) Astra Dynamic CSS.
- $dynamic_css_filtered
-
(string) (Optional) Astra Dynamic CSS Filters.
Default value: ''
Return
(String) Generated dynamic CSS for Heading Colors.
Source
File: inc/builder/type/footer/widget/dynamic-css/dynamic.css.php
function astra_fb_widget_dynamic_css( $dynamic_css, $dynamic_css_filtered = '' ) {
for ( $index = 1; $index <= Astra_Builder_Helper::$num_of_footer_widgets; $index++ ) {
if ( ! Astra_Builder_Helper::is_component_loaded( 'widget-' . $index, 'footer' ) ) {
continue;
}
$selector = '.footer-widget-area[data-section="sidebar-widgets-footer-widget-' . $index . '"]';
$alignment = astra_get_option( 'footer-widget-alignment-' . $index );
$desktop_alignment = ( isset( $alignment['desktop'] ) ) ? $alignment['desktop'] : '';
$tablet_alignment = ( isset( $alignment['tablet'] ) ) ? $alignment['tablet'] : '';
$mobile_alignment = ( isset( $alignment['mobile'] ) ) ? $alignment['mobile'] : '';
/**
* Widget CSS.
*/
if ( Astra_Builder_Helper::apply_flex_based_css() ) {
$footer_widget_selector = $selector . '.footer-widget-area-inner';
} else {
$footer_widget_selector = $selector . ' .footer-widget-area-inner';
}
$css_output_desktop = array(
$footer_widget_selector => array(
'text-align' => $desktop_alignment,
),
);
$css_output_tablet = array(
$footer_widget_selector => array(
'text-align' => $tablet_alignment,
),
);
$css_output_mobile = array(
$footer_widget_selector => array(
'text-align' => $mobile_alignment,
),
);
if ( is_support_footer_widget_right_margin() ) {
$css_output_desktop['.footer-widget-area.widget-area.site-footer-focus-item'] = array(
'width' => 'auto',
);
}
/* Parse CSS from array() */
$css_output = astra_parse_css( $css_output_desktop );
$css_output .= astra_parse_css( $css_output_tablet, '', astra_get_tablet_breakpoint() );
$css_output .= astra_parse_css( $css_output_mobile, '', astra_get_mobile_breakpoint() );
$dynamic_css .= $css_output;
$dynamic_css .= Astra_Widget_Component_Dynamic_CSS::astra_widget_dynamic_css( 'footer' );
}
return $dynamic_css;
}
Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |