I've discovered that is_home()
and is_front_page()
don't deliver what's expected for multisites. My workaround using built in PHP goodies:
if($_SERVER['REQUEST_URI'] == '/') { // you must be on the home page}
As mentioned in the comments, this approach will not work for WP instances installed in subdirectories of the web root. Use at your discretion.