Support

Account

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

  • Try this, probably won’t work but who knows… 🙂

    <?php function get_currentuserinfo() {
    
    		global $current_user;
    		$other_page = $current_user->user_login;
    		$field = get_field('favourite_movie', $other_page);
    
    		if( is_page( $other_page ) ) {
    			echo $field;
    		}	
    	}
    ?>

    If not, should post the whole code since you mentioned using a repeater.