是这样子的,我苦苦地想了很久, 然后参考了:
http://forum.lifetype.org.tw/index.php?topic=396.0 问题已经解决,谢谢!
代码如下:
<div align="center">
{assign var=blogOwner value=$blog->getOwnerInfo()}
{if $blogOwner->hasPicture()}
{assign var=picture value=$blogOwner->getPicture()}
<img src="{$url->resourcePreviewLink($picture)}" alt="{$blogOwner->getUsername()}" /><br/>
{/if}
{$blogOwner->getfullName()}<br/>
{$blogOwner->getAboutMyself()}
</div>
顺便说一下:在http://forum.lifetype.org.tw/index.php?topic=396.0中,markwu的方法:
{if $owner->hasPicture()}
{assign var=picture value=$owner->getPicture()}
<img src="{$url->resourcePreviewLink($picture)}" alt="{$owner->getUsername()}" />
{/if}
在PLOG1.01中是可以实现的,我现在用的就是1.01,但是,这个图片在首页能正常显示,而,点击进入查看文章以后,就出现Fatal error: Call to a member function on a non-object错误,所以,我没有用markwu的方法,而用了现在这个方法。