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 ?
Share Improve this question edited Nov 1, 2018 at 11:45 Pratik Patel 1,1091 gold badge11 silver badges23 bronze badges asked Nov 1, 2018 at 7:34 Sunny K. UjjawalSunny K. Ujjawal 12 bronze badges 1- See here wordpress has some conditional tag that will help you to do what you want codex.wordpress/Conditional_Tags – mlimon Commented Nov 1, 2018 at 7:43
1 Answer
Reset to default 0Please 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!