astra_can_add_styling_for_hr()

Check whether user is exising or new to override the hr tag styling for elementor


Description


Return

(boolean)


Source

File: inc/extras.php

function astra_can_add_styling_for_hr() {
	$astra_settings                       = get_option( ASTRA_THEME_SETTINGS );
	$astra_settings['add-styling-for-hr'] = isset( $astra_settings['add-styling-for-hr'] ) ? false : true;
	return apply_filters( 'astra_highlight_elementor_hr_tag', $astra_settings['add-styling-for-hr'] );
}

Changelog

Changelog
Version Description
4.3.0 Introduced.


User Contributed Notes

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