What are the different ways to detect home page in wordpress?

后端 未结 7 733
自闭症患者
自闭症患者 2021-02-06 04:59

What are the different ways to detect wordpress homepage

except is_front_page() and is_home()

Thanks

7条回答
  •  北恋
    北恋 (楼主)
    2021-02-06 05:35

    I just do the following:

    if ( $_SERVER["REQUEST_URI"] == '/' ) { }
    

    It works and doesn't overcomplicate things, especially as is_front_page() and is_home() don't always work as you'd expect them to.

提交回复
热议问题