一直想把一些自己手动添加的代码写成函数调用,这样比较方便,但曾经试过出错或者代码失效。前段时间到了 Bolo 那里评论时问了一下,他说可能函数缺少 Return。因为我从来没看过 PHP 教材和手册,加上 10 多年前学的编程方面的知识早已忘得一干二净了,所以什么 Return 啥的根本不知道。前 2 天实在是无聊到蛋疼,就去网络上搜了一下 PHP 手册,只看了函数一小部分,没看完就动手了,没想到竟然也能搞定 - - ,这里记录一下,老鸟就飘吧,菜鸟、菜菜鸟、菜菜菜菜鸟也不一定适合,反正喜欢折腾的就跟我折腾吧。
一、带头像的最新评论函数
1. 一般情况下的,或者说通用型
打开主题文件 Functions.php ,添加下面的代码:
function zsofa_recentcomments($commentsnum = 10, $extractlength = 16, $extractuser = '') { global $wpdb; $sql = "SELECT DISTINCT ID, post_title, post_password, comment_ID, comment_post_ID, comment_author, comment_date_gmt, comment_approved, comment_type,comment_author_url,comment_author_email, SUBSTRING(comment_content,1,$extractlength) AS com_excerpt FROM $wpdb->comments LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID = $wpdb->posts.ID) WHERE comment_approved = '1' AND comment_type = '' AND comment_author != '$extractuser' AND post_password = '' ORDER BY comment_date_gmt DESC LIMIT $commentsnum"; $comments = $wpdb->get_results($sql); foreach ($comments as $comment) { $output .= "n<li>".get_avatar($comment->comment_author_email, 32)."<a href="" . get_comment_link( $comment->comment_ID ) . "" title="on " .$comment->post_title . "">" . strip_tags($comment->com_excerpt)."</a>...</li>"; } $output = convert_smilies($output); return $output; }
调用方法:
<h3>Recent Comments</h3> <ul class="recentcomments"> <?php if (function_exists('zsofa_recentcomments')) { echo zsofa_recentcomments(10,16,'zwwooooo'); } ?> </ul>
函数说明:zsofa_recentcomments(10,16,'zwwooooo') 里面的 10 是评论数量,16是每条评论文字个数,'zwwooooo' 是不显示其评论的用户名(一般用来不显示博主自己的评论)
因为有头像,所以要在 css 里面定义 .recentcomments,参考我的 css 自己折腾:
#sidebar .recentcomments img.avatar{width:16px;height:16px;float:left;position:relative;border:1px solid #dfdfdf;padding:2px;margin:0 5px 0 0;} #sidebar .recentcomments li{padding:4px 0;} #sidebar .recentcomments li img{width:20px;height:20px;}
(这里有个技巧,就是注意定义行高[line-height]的值,可以避免交叉行,当然还有其他方法。)
2. 我个人认为完美的函数(就是能显示“连接”开头的评论内容摘录)
同样把下面的代码贴到 Functions.php 主题文件里面:
if ( !function_exists('cut_str')) { function zsofa_cut_str($string, $sublen, $start = 0, $code = 'UTF-8') { if($code == 'UTF-8') { $pa = "/[x01-x7f]|[xc2-xdf][x80-xbf]|xe0[xa0-xbf][x80-xbf]|[xe1-xef][x80-xbf][x80-xbf]|xf0[x90-xbf][x80-xbf][x80-xbf]|[xf1-xf7][x80-xbf][x80-xbf][x80-xbf]/"; preg_match_all($pa, $string, $t_string); if(count($t_string[0]) - $start > $sublen) return join('', array_slice($t_string[0], $start, $sublen))."..."; return join('', array_slice($t_string[0], $start, $sublen)); } else { $start = $start*2; $sublen = $sublen*2; $strlen = strlen($string); $tmpstr = ''; for($i=0; $i<$strlen; $i++) { if($i>=$start && $i<($start+$sublen)) { if(ord(substr($string, $i, 1))>129) $tmpstr.= substr($string, $i, 2); else $tmpstr.= substr($string, $i, 1); } if(ord(substr($string, $i, 1))>129) $i++; } if(strlen($tmpstr)<$strlen ) $tmpstr.= "..."; return $tmpstr; } } } function zsofa_recentcomments($commentsnum = 10, $extractlength = 16, $extractuser = '') { global $wpdb; $sql = "SELECT DISTINCT ID, post_title, post_password, comment_ID, comment_post_ID, comment_author, comment_date_gmt, comment_approved, comment_type,comment_author_url,comment_author_email, comment_content AS com_excerpt FROM $wpdb->comments LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID = $wpdb->posts.ID) WHERE comment_approved = '1' AND comment_type = '' AND comment_author != '$extractuser' AND post_password = '' ORDER BY comment_date_gmt DESC LIMIT $commentsnum"; $comments = $wpdb->get_results($sql); foreach ($comments as $comment) { $output .= "n<li>".get_avatar($comment->comment_author_email, 32)."<a href="" . get_comment_link( $comment->comment_ID ) . "" title="on " .$comment->post_title . "">" . zsofa_cut_str(strip_tags($comment->com_excerpt),$extractlength) ."</a>...</li>"; } $output = convert_smilies($output); return $output; }
调用方法和 css 同上
如果你使用了 Willin 的简单头像缓存,参考这篇《带头像显示的最新评论代码 - 完善篇》的缓存代码自个折腾。
二、最活跃朋友(读者墙)
把下面的代码贴到主题文件 Functions.php 里面:
function zsofa_most_active_friends($friends_num = 10) { global $wpdb; $counts = $wpdb->get_results("SELECT COUNT(comment_author) AS cnt, comment_author, comment_author_url, comment_author_email FROM (SELECT * FROM $wpdb->comments LEFT OUTER JOIN $wpdb->posts ON ($wpdb->posts.ID=$wpdb->comments.comment_post_ID) WHERE comment_date > date_sub( NOW(), INTERVAL 1 MONTH ) AND user_id='0' AND comment_author != 'zwwooooo' AND post_password='' AND comment_approved='1' AND comment_type='') AS tempcmt GROUP BY comment_author ORDER BY cnt DESC LIMIT $friends_num"); foreach ($counts as $count) { $c_url = $count->comment_author_url; if ($c_url == '') $c_url = get_bloginfo('url'); $mostactive .= '<li class="mostactive">' . '<a href="'. $c_url . '" title="' . $count->comment_author . ' ('. $count->cnt . 'comments">' . get_avatar($count->comment_author_email, 32) . '</a></li>'; } return $mostactive; }
调用方法:
<h3>Most Active Friends</h3> <ul class="ffox_most_active"> <?php if (function_exists('zsofa_most_active_friends')) { echo zsofa_most_active_friends(24);} ?> </ul>
函数说明:zsofa_most_active_friends(24) 里面的 24 是指显示的读者数量。
同样因为有图片,所以要定义 css:.ffox_most_active,参考我的如下:
#sidebar .ffox_most_active{overflow:hidden;} #sidebar .ffox_most_active li{list-style:none;float:left;line-height:0;} #sidebar .ffox_most_active img.avatar{width:28px;height:28px;border:1px solid #dfdfdf;padding:2px;margin:0 1px 0 0;}
如果你使用了 Willin 的简单头像缓存,参考这篇《WordPress 免插件读者墙 willin 版本》的缓存代码自个折腾。
三、热评文章(评论最多的文章)
把下面的代码贴到主题文件 Functions.php 里面:
function zsofa_hotposts($postsnum = 10, $extractpost_id = 0) { global $wpdb; $result = $wpdb->get_results("SELECT comment_count,ID,post_title FROM $wpdb->posts WHERE ID != '$extractpost_id' ORDER BY comment_count DESC LIMIT 0 , $postsnum"); foreach ($result as $post) { setup_postdata($post); $postid = $post->ID; $title = $post->post_title; $commentcount = $post->comment_count; if ($commentcount != 0) { $hotposts .= '<li><a href="' . get_permalink($postid) . '" title="' . $title . '">' . $title . '</a> (' . $commentcount . ')</li>'; } } return $hotposts; }
调用方法:
<h3>Hot Posts</h3> <ul> <?php if (function_exists('zsofa_hotposts')) { echo zsofa_hotposts(10, 0); } ?> </ul>
函数说明:zsofa_hotposts(10, 0) 里面的 10 是要显示热评文章的数量,0 是你不想加入热评的文章 ID(如你不想“留言板”加入热评,只要填入“留言板”对应的文章 ID 即可)
折腾完了,那么有兴趣的朋友折腾吧,原理我说不上来,反正 CP 能用就行了。
写完后自己看都觉得有点晕,没办法,技术不到家,不够傻瓜化,只能适合喜欢折腾的朋友和我自己了。
PS1:有些代码我是直接在写文章时改的,所以没测试,有什么问题请留言。
PS2:昨晚翎翎发烧了,39度,我 3 点多就起来给翎翎喝退烧药水,忙到 4 点多,我自己就突然肚子有点疼上厕所,上第 2 次才真正上完,在上厕所期间突然想到“现在这个主题样式”,本来打算睡醒再改,但上完厕所后就睡不着了,可能小孩发烧心里焦急吧,到 5:30 后量一下翎翎的体温,已经降到 38 度,心也比较定了。于是再回到床上准备睡觉,但还是睡不着,于是就开电脑开始改主题,改啊改就成现在这个样。
- 本文标题:把一些手动添加的代码写成函数了
- 本文链接:https://zww.me/archives/24836
- 发布时间:2010年01月25日 11:46
- 版权声明:除非注明,文章均为 zwwooooo 原创,转载请以链接形式标明本文地址!
沙发~
这个主题带色的,不错,哈哈
我喜欢带色的
@久酷 干脆说你比较色
@久酷 不好 不是黄色
@shuil 色不在多,有色则行!
终于从twitter上成功坐上沙发了。Z大真是生命不息,折腾不止啊~
@纯粹 唉,无聊呗
你又换皮了啊~
@SATURN 你应该说“你又改皮”啦?
@zwwooooo 你又画皮了。。。
@SATURN
呀,又换皮肤了,真能折腾。
最近忙,闲下来再折腾主题
@A.shun 你不叫折腾主题,叫折腾inove
代码写的蛮工整
@ooaixt 嘿嘿,直接用html
我今天也刚换了个主题 ,你的主题感觉比我的好看多了
@crossyou 你的也不错,简约。我的是昨晚上厕所时想到的
好像我的最新评论就带头像。。。
我也是最近折腾了好几个皮肤,感觉搞一个中意的太不容易了。
@真好网 你的不是WP吧,自己折腾主题即使不好看不中意也是唯一,所以慢慢折腾吧
哈哈,你在肢解你的主题函数
@万戈 不是相反么?我在把主题所用的零碎代码整合成函数
菜鸟也飘过,呵呵
辛苦了,不知道白天有时间补觉不。希望翎翎早日康复。
最近没啥心情折腾,先存着好了。
@Vicia 没有补觉了,稍后小息一下就可以了
每天主题风格都一大变那!我现在都没敢动了……
@林木木 说明你的已经定型了,我这个主题前些日子我不是用骨架来形容么?现在才稍微有点样子
@林木木 测试评论提交速度
折腾吧,好东西都是折腾出来的,
很有用的函数啊
@砼砼 你不需要吧
很有用,收藏了
收藏一下,改天仔细来看看。
@普洱 折腾吧
谢谢分享,准备在新主题里这样用了~
@Jutoy 你的主题很不错,新主题在哪里?
@zwwooooo 谢谢,我很懒的好久都不换一次主题,新的正在赶工,希望尽快能与大家见面哈~
@Jutoy 肯定又会是个强主题。我制作过的主题有3个提交wp,但国内基本没人用 悲哀,幸好还有国外朋友
很实用啊
复制下来去实践下
@Dianso 荒淫你随便 CP