I’m trying to make a no-user-logged start site with Toutorials videos and somethings like this.
I wrote
( is_user_logged_in() )
I get my normal content
else
I get the splash with Videos,Connect or Sign up
But the problem is that I have to write
if ( is_user_logged_in() )
and when is register page I get the normal content.I was trying something like this
if ( is_user_logged_in() ) || is_page('register')
,but unfortunately nothing.
somebody knows what I make wrong?
Thanks