astra_addon_typography_anchors_in_css_selectors_heading()

Check if CSS selectors in Headings should use anchors.


Description


Return

(boolean) true if it should include anchors, False if not.


Source

File: addons/typography/classes/dynamic.css.php

function astra_addon_typography_anchors_in_css_selectors_heading() {

	if ( true == astra_get_option( 'include-headings-in-typography' ) &&
		true === apply_filters(
			'astra_include_achors_in_headings_typography',
			true
		) ) {

			return true;
	} else {

		return false;
	}

}

Changelog

Changelog
Version Description
1.5.0 Introduced.


User Contributed Notes

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