Skip to content

Instantly share code, notes, and snippets.

@cliftonc0613
Forked from Alipio123/functions.php
Created October 15, 2019 12:02
Show Gist options
  • Save cliftonc0613/c479f352edb093b6e440cd2ed24172e6 to your computer and use it in GitHub Desktop.
Save cliftonc0613/c479f352edb093b6e440cd2ed24172e6 to your computer and use it in GitHub Desktop.
Elementor heading line height will inherit the theme astra customizer. Paste the code under functions.php
<?php
/**
* Custom Style that is base from the theme/
* Cons: Doesnt show real time edit in the customizer
*/
add_action('wp_head', 'custom_style_base_theme' );
function custom_style_base_theme() {
ob_start();
$output = "";
//you can replace the `astra_get_option` with your Theme GET Customizer Option. Wordpress example: get_theme_mod('header_color', '#000000');
//API Link https://codex.wordpress.org/Theme_Customization_API
//Astra Customize get option
$h1_lineheight = astra_get_option('line-height-h1');
$h2_lineheight = astra_get_option('line-height-h2');
$h3_lineheight = astra_get_option('line-height-h3');
$h4_lineheight = astra_get_option('line-height-h4');
$h5_lineheight = astra_get_option('line-height-h5');
$h6_lineheight = astra_get_option('line-height-h6');
?>
<style type="text/css">
.elementor-widget-heading h1.elementor-heading-title {
line-height: <?php echo $h1_lineheight; ?>;
}
.elementor-widget-heading h2.elementor-heading-title {
line-height: <?php echo $h2_lineheight; ?>;
}
.elementor-widget-heading h3.elementor-heading-title {
line-height: <?php echo $h3_lineheight; ?>;
}
.elementor-widget-heading h4.elementor-heading-title {
line-height: <?php echo $h4_lineheight; ?>;
}
.elementor-widget-heading h5.elementor-heading-title {
line-height: <?php echo $h5_lineheight; ?>;
}
.elementor-widget-heading h6.elementor-heading-title {
line-height: <?php echo $h6_lineheight; ?>;
}
</style>
<?php
$output = ob_get_clean();
//It will print the code in <head>
echo $output;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment