This function has been deprecated. Use astra_support_footer_widget_right_margin() instead.

is_support_footer_widget_right_margin()

Deprecating is_support_footer_widget_right_margin function.


Description

Backward managing function based on flag – ‘support-footer-widget-right-margin’ which fixes right margin issue in builder widgets.

See also


Return

(bool) true|false


Source

File: inc/core/deprecated/deprecated-functions.php

function is_support_footer_widget_right_margin() {
	$astra_settings                                       = get_option( ASTRA_THEME_SETTINGS );
	$astra_settings['support-footer-widget-right-margin'] = isset( $astra_settings['support-footer-widget-right-margin'] ) ? false : true;
	return apply_filters( 'astra_apply_right_margin_footer_widget_css', $astra_settings['support-footer-widget-right-margin'] );
}

Changelog

Changelog
Version Description
3.7.4 Introduced.


User Contributed Notes

You must log in before being able to contribute a note or feedback.