Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Homepage other than Activity or Admin Blog (or a WP page)


Andrea Rennick
Participant

@andrea_r

You have to wrap what you want to show in a function.

They both have to be in the SAME PAGE.

<?php
if ( is_user_logged_in() ) {
echo 'Welcome, registered user!';
} else {
echo 'Welcome, visitor!';
};
?>

Don;t paste this code directly in a post. you’ll have to put it in a page template.

Skip to toolbar