admin管理员组文章数量:1130349
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!
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!
本文标签: How to add custom PHP code in post header
版权声明:本文标题:How to add custom PHP code in post header? 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://it.en369.cn/questions/1749214584a2333948.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。


发表评论