function checkCookie2()
{
var username=getCookie("username");
if (username!=null && username!="")
{
document.getElementById('intro').style.visibility = "hidden";
}
else
{
document.getElementById('intro').style.visibility = "visible";
}
}
</script>
<body <?php body_class(); ?> onLoad="checkCookie2()">
<?php if(is_front_page()) { ?>
<div id="intro" style="visibility:hidden;">
<img src="wp-content/themes/theme/images/intro_play_btn.jpg" onClick="setCookie('username',username,365);checkCookie2()">
</div>
<?php } ?>
сделал вот так но картинка не пропадает