designguru wrote:
Question - how hard would it be to have the avatar image display in line with the content title instead of below it?
q./
Yes, very simple. Instead of adding the image to $row->text, add it to $row->title.
function CBAuthorBot (&$row, &$params, $page) {
$row is passed by reference (we are working with the actual variable, not a copy) to CBAuthorBot so that it can be modified before printed on the page.
In CBAuthorBot we are modifiying $row->text to place the image at the beginning of the text (Content Item body).
To place the image in the title would be just to modify $row->title instead.