lewismcarey / User-Field-ACF-Add-on

User Field Add on for Advanced Custom Fields
40 stars 19 forks source link

Can't seem to get this working. #15

Closed trewknowledge closed 12 years ago

trewknowledge commented 12 years ago

I am having a bit of an issue trying to get this to work on my site.

I added the following code

'$author = get_field('author'); if ($author) { echo 'By '. $author["display_name"] .' on '; }'

But I get the following error: Fatal error: Cannot use object of type WP_User as array

Anything I am doing wrong?

trewknowledge commented 12 years ago

Solved it. Had to use $author->display_name;