Astra_Dynamic_CSS::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: inc/class-astra-dynamic-css.php

		public static function 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;
			}

			return false;
		}

Changelog

Changelog
Version Description
1.4.9 Introduced.


User Contributed Notes

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