Home › Forums › General Issues › Pull in fields from page with same name as username › Reply To: Pull in fields from page with same name as username
Hi @phil.owen
I think your code is caugin $other_page to be a true|false.
$other_page = is_page( '$current_user->user_login' );
Looks like that is a boolean returning function mate, perhaps you meant to write this?
$other_page = $current_user->user_login
if( is_page( $other_page ) )
{
the_field('favourite_movie', $other_page);
}
2 issues with your code:
1. quote marks in the is_page function
2. echo the_field does not need an echo
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.