In header.php i want to add :
1. For home page :
link rel="alternate" href="/fr/" hreflang="fr-FR"
2. For custom single post :
link rel="alternate" href="/fr/category/post-name/" hreflang="fr-FR"
What code will be use for this ?
In header.php i want to add :
1. For home page :
link rel="alternate" href="/fr/" hreflang="fr-FR"
2. For custom single post :
link rel="alternate" href="/fr/category/post-name/" hreflang="fr-FR"
What code will be use for this ?
Please try like
if ( is_front_page() || is_home() ) {
//IF HOME PAGE
}
if ( is_singular('YOUR-CUSTOM-POST-TYPE-HERE') ) {
// FOR SINGLE PAGE STUFF
}
Please make sure you have to replace YOUR-CUSTOM-POST-TYPE-HERE with your Custom post type.
Please let me know if any query.
Thanks!