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

后端 未结 7 822
自闭症患者
自闭症患者 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
    }
    

提交回复
热议问题