首页 > wordpress > 给WordPress文章添加关于作者和评价功能

给WordPress文章添加关于作者和评价功能

IBM的知识库上所有文章的最后都有”关于作者” 和 “对本文的评价”功能. 那么wordpress的文章如何实现呢?

 

一、“关于作者”显示作者头像,所以需要一个作者头像插件,可以让每个作者上传自己的头像照片.

       这可以使用 User photo 插件来实现,插件下载地址:http://wordpress.org/extend/plugins/user-photo/

       安装插件:按照通常的方法安装,这里就不多说了。

二、“对本文的评价”需要对文章评价,所以需要一个评分插件,这可以使用WP-PostRatings 插件来实现,插件下载地址:
       http://lesterchan.net/portfolio/programming/php/

      安装插件:按照通常的方法安装,这里就不多说了。

三、更改当前主题下的single.php, 找到这段内容:

        <div class=”content”>
            <div class=”text”>
                <?php the_content(); ?>
                <div class=”clear”></div>
            </div>
         </div>

        在其下面添加如下内容:

      

 

<div class="content">
  <div class="text">  
    <div class="clear"></div>
    <div class="clear"></div>
    <p></p>
    <p></p>
    <h4>关于作者: </h4>
    <p></p>
    <table><tbody><tr><td><?php if(function_exists('userphoto_the_author_thumbnail')) { userphoto_the_author_thumbnail(); } ?></td><td>昵称:<?php the_author_nickname(); ?><br>档案信息:<?php the_author_description(); ?><br>联系方式:你可以通过<a href="mailto:&lt;?php the_author_email(); ?&gt;"><?php the_author_email(); ?></a>联系作者<br>点击查看<?php the_author_posts_link(); ?>发表过的所有文章...</td></tr></tbody></table>
   <p></p>
   <p></p>
   <h4>对本文的评价: </h4>
   <p></p>
   <?php if(function_exists('the_ratings')) { the_ratings(); } ?>
   <p></p>
  </div>
</div>

N

四、更改当前主题下的index.php, 找到:

      <h3 class=”title”><a href=”<?php the_permalink() ?>” rel=”bookmark”><?php the_title(); ?></a>

      在其后面添加:<?php if(function_exists(‘the_ratings’)) { the_ratings(); } ?>

     (备注:我这里针对的是blocks主题,其他的主题查找的字符串可能有所不同)

五、查看效果:

      点击进入某篇文章,我们在文章末尾看到效果如下:

     image

 

 

关于作者:

昵称:Jack.shang
档案信息:jack.shang 一位从技术走向管理,再从管理走向市场的普通行者
联系方式:你可以通过syfvb@hotmail.com联系作者
点击查看发表过的所有文章...
本文永久链接: http://blog.retailsolution.cn/archives/2116

 

 

对本文的评价:

 

 

分类: wordpress 标签:
  1. 本文目前尚无任何评论.
  1. 本文目前尚无任何 trackbacks 和 pingbacks.
您必须在 登录 后才能发布评论.