Created
December 6, 2019 10:00
-
-
Save Balachandark/68b7b9b4e80fe7cf859771c85508b6f4 to your computer and use it in GitHub Desktop.
change_title_tag
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'astra_advanced_header_layout_1_title_tag', 'change_title_tag', 10, 1 ); | |
add_filter( 'astra_advanced_header_layout_2_title_tag', 'change_title_tag', 10, 1 ); | |
function change_title_tag( $tag ) { | |
$tag = 'h6'; | |
return $tag; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment