【发布时间】:2013-10-16 14:47:19
【问题描述】:
我正在使用 FishPig 扩展将 wordpress 集成到 magento 中,一切正常。现在我想在每篇文章中显示作者 gravatar 以及在主页上每篇文章标题下的小作者图片。这是博客网址 - www.postmygreetings.com/blog/
编辑:
我正在使用此代码在主页上的每个帖子下显示作者姓名、发布日期和标签现在我还想显示小作者图片:
<?php echo stripslashes($this->__('This entry was posted in %s and tagged %s on %s<span class=\"by-author\"> by %s</span>.',
$this->getCategoryString($post),
$this->getTagString($post),
$post->getPostDate(),
$post->getAuthor()->getDisplayName())
) ?>
【问题讨论】:
-
你能分享一下你想在哪里显示gravatar的代码吗?请在其中包含您用于获取帖子标题的代码,获取作者图像是相似的
-
我正在使用此代码在主页上的每个帖子下显示作者姓名,发布日期和标签现在我还想显示小作者图像
<?php echo stripslashes($this->__('This entry was posted in %s and tagged %s on %s<span class=\"by-author\"> by %s</span>.', $this->getCategoryString($post), $this->getTagString($post), $post->getPostDate(), $post->getAuthor()->getDisplayName())) ?>