Hello Enfold support team,
So i would like to put a H1 tag on my logo.
The function i added on my child theme functions.php works perfectly : https://kriesi.at/support/topic/put-h1-tag-on-logo/
But how could I make this function active only on Home Page ?
Thanks for your help,
Hey ouranos3!
Please change the code to following one
add_filter('avf_logo_headline','avia_new_logo_span');
function avia_new_logo_span(){
if(is_home()){
$output = "h1";
}
return $output;
}
Regards,
Yigit
Thanks Yigit !