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

后端 未结 7 736
自闭症患者
自闭症患者 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:45

    from outside the loop:

    if(get_option("page_on_front") == $post->ID){
        //do front page stuff here
    }
    
    0 讨论(0)
提交回复
热议问题