Page 1 of 1

get profilePicture from site creator

Posted: Mon May 22, 2023 1:04 pm
by LucyDemoon
Hey,

How can I retrieve the user profile picture of the person who created the page or blog entry?
this do not work:

Code: Select all

<?php echo $user->profilePicture() ?>

and this also not working

Code: Select all

<?php $users->keys('profilePicture') ?>
btw: I'm a newbie when it comes to PHP.

Re: get profilePicture from site creator

Posted: Mon May 22, 2023 11:04 pm
by Edi
You can use the following:

Code: Select all

<?php echo $page->user('profilePicture');  ?>
See for example:

https://github.com/bludit-themes/medium ... me.php#L42

Re: get profilePicture from site creator

Posted: Wed May 24, 2023 4:20 pm
by LucyDemoon
Nice Thx this working,
now i understand a litle bit more how i can extract values