summaryrefslogtreecommitdiff
path: root/inc/addons/heading-colors/dynamic-css/dynamic.css.php
diff options
context:
space:
mode:
authorZach van Rijn <me@zv.io>2021-07-21 14:54:07 -0500
committerZach van Rijn <me@zv.io>2021-07-21 14:54:07 -0500
commit9d4123cee1867ee7199b06bdc92d40611f547ecc (patch)
tree6d864e2725242863afed1f8ba12d9c7a9bc63a69 /inc/addons/heading-colors/dynamic-css/dynamic.css.php
downloadblog-ng-9d4123cee1867ee7199b06bdc92d40611f547ecc.tar.gz
blog-ng-9d4123cee1867ee7199b06bdc92d40611f547ecc.tar.bz2
blog-ng-9d4123cee1867ee7199b06bdc92d40611f547ecc.tar.xz
blog-ng-9d4123cee1867ee7199b06bdc92d40611f547ecc.zip
Initial unmodified import from Astra (Version: 3.6.5) @ /wp-content/themes/astra/.
Diffstat (limited to 'inc/addons/heading-colors/dynamic-css/dynamic.css.php')
-rw-r--r--inc/addons/heading-colors/dynamic-css/dynamic.css.php54
1 files changed, 54 insertions, 0 deletions
diff --git a/inc/addons/heading-colors/dynamic-css/dynamic.css.php b/inc/addons/heading-colors/dynamic-css/dynamic.css.php
new file mode 100644
index 0000000..e591b9c
--- /dev/null
+++ b/inc/addons/heading-colors/dynamic-css/dynamic.css.php
@@ -0,0 +1,54 @@
+<?php
+/**
+ * Heading Colors - Dynamic CSS
+ *
+ * @package Astra
+ * @since 2.1.4
+ */
+
+if ( ! defined( 'ABSPATH' ) ) {
+ exit; // Exit if accessed directly.
+}
+
+/**
+ * Heading Colors
+ */
+add_filter( 'astra_dynamic_theme_css', 'astra_heading_colors_section_dynamic_css' );
+
+/**
+ * Dynamic CSS
+ *
+ * @param string $dynamic_css Astra Dynamic CSS.
+ * @param string $dynamic_css_filtered Astra Dynamic CSS Filters.
+ * @return String Generated dynamic CSS for Heading Colors.
+ *
+ * @since 2.1.4
+ */
+function astra_heading_colors_section_dynamic_css( $dynamic_css, $dynamic_css_filtered = '' ) {
+
+ /**
+ * Heading Colors - h1 - h6.
+ */
+ $heading_base_color = astra_get_option( 'heading-base-color' );
+
+ /**
+ * Normal Colors without reponsive option.
+ * [1]. Heading Colors
+ */
+ $css_output = array(
+
+ /**
+ * Content base heading color.
+ */
+ 'h1, .entry-content h1, h2, .entry-content h2, h3, .entry-content h3, h4, .entry-content h4, h5, .entry-content h5, h6, .entry-content h6' => array(
+ 'color' => esc_attr( $heading_base_color ),
+ ),
+ );
+
+ /* Parse CSS from array() */
+ $css_output = astra_parse_css( $css_output );
+
+ $dynamic_css .= $css_output;
+
+ return $dynamic_css;
+}