comments.php
<?php if ( have_comments() ) : ?>或是<?php if ( $comments ) : ?> <?php global $comment_ids; $comment_ids = array(); foreach ( $comments as $comment ) {文章归档
WordPress 您的足迹 功能
发布于 八月 5, 2010
add this plugin:cos_visitor_comment
OR
<?php if($_COOKIE["comment_author_" . COOKIEHASH]!=""){WordPress 读者墙
发布于 八月 2, 2010
<ul class="ffox_most_active">
<?php
$limit_num = '16';
$noneurl = get_bloginfo ('url');
$my_email = "'" . get_bloginfo ('admin_email') . "'";
改变默认的 Gravatar 头像
发布于 八月 2, 2010
很多同学都没设置Gravatar头像,没有Gravatar头像留言后显示的图片很丑陋,于是搜索了下,找到了这个方法,可以自定义Gravatar 默认头像图片。
在functions.php添加下面的代码就可以了,$myavatar填写图片地址
add_filter( 'avatar_defaults', 'newgravatar' );
function newgravatar ($avatar_defaults) {
$myavatar = 'http://s.014.cc/x.jpg';
$avatar_defaults[$myavatar] = “Dianso”
return $avatar_defaults;
}
然后去这里选择确认即可
-------------------0806
今天看到万戈博客上写的用get_avatar来实现
&amp;lt;?php echo get_avatar($comment,$size='48',$default='http://s.014.cc/x.jpg'); ?&amp;gt;
只要把 $default 定义为需要默认头像的链接就可以了
----------------------------------------------------
话说植物大战僵尸2010已经出来了,破解版也有了,下载地址在这里:
http://u.115.com/file/f1cc21f88a
