在wordpress magento集成后显示帖子/主页中的作者头像

时间:2013-10-16 05:50:03

标签: wordpress magento

我正在使用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())
  ) ?>

1 个答案:

答案 0 :(得分:1)

要获得用户头像,您必须创建类似于wordpress get_avatar的功能,您可以找到它code here

拥有此功能后,只需使用正确的论证调用它,它就可以正常工作......

你可以从你已经可以使用的对象中获得论据,如

  

$后&GT; getAuthor() - &GT; getDisplayName())