Is this a bug in WordPress?
When I am the blog index page:
http://mysite/blog/
var_dump(is_home()); // bool(true) --> correct
But when I am still on the blog index page with pagination:
http://mysite/blog/page/3
var_dump(is_home()); // bool(false) --> incorrect!!
It should be true
because I am still on the blog page!
Any ideas how I can get around to this?