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
}