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

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

    For me is_front_page() and is_home() doesn't work in ways I need to check the homepage, so instead I write this condition:

    global $wp;  
    $current_url = home_url(add_query_arg(array($_GET), $wp->request));
    if ($current_url==get_site_url()) { 
        // code for homepage 
    }
    

提交回复
热议问题