非插件实现WordPress邮件回复评论

该代码由willin kan提供,不少草根博客站长用了都说好! “那个著名的手段高超的罪犯,在贼党中的名声犹如……” “别说外行话,华生,”福尔摩斯不赞成地嘟囔着。 “我是想说,犹如在公众中一样默默无闻。” ————《福尔摩斯探案全集•恐怖谷》by 柯南·道尔 像许多真正的技术大师一样,willin kan为人十分地低调,导致一些正在用大师作品的人竟然没听说过他。willin kan的文章不多,但篇篇均是精华佳作,令我辈汗颜。在此向willin kan表示深深地谢意! 代码如下: /* comment_mail_notify v1.0 by willin kan. (無勾選欄) */ function comment_mail_notify($comment_id) { $admin_email = get_bloginfo (‘admin_email’); $comment = get_comment($comment_id); $comment_author_email = trim($comment->comment_author_email); $parent_id = $comment->comment_parent ? $comment->comment_parent : ”; $to = $parent_id ? trim(get_comment($parent_id)->comment_author_email) : ”; $spam_confirmed = $comment->comment_approved; if (($parent_id != ”) && ($spam_confirmed […]

如何自动给文章添加关键词(非插件)

网站的关键词(keywords)包括两部分:网站首页里用于描述网站主要内容的关键词,以及单页文章中的关键词。 首页关键词好比是文化娱乐场所的招牌,表明主站的身份和定位:冰火全套,包爽到底,可开发票,公务员优惠神马的。观众一看,哦,这是偶的菜,就进去了,节省双方的时间。单页文章关键词则是具体到每一位出台姑娘的性格特点:热情如火、家庭风格,羞答答、小鸟依人;师大美眉,娇嫩如水……啪啦啪啦的。观众再一看,哦,是我要找的东西,就又进去了。 关键词曾是搜索引擎爬虫(Spider)非常喜爱的东西,每一个认真负责有心把网站搞大的站长都把关键词视为SEO的必备功课。现在出现了一种观点,借助于搜索引擎技术的进步,认为关键词已不像从前那样重要了。 然而不管怎么说,有这么个东西总是好的。 今天推荐一个能够自动给网站文章添加关键词的代码: <?if (is_home()){ $description = “新民智是一个全新的独立博客网站,我们倡导进化生活的理念,提供负责任,有情趣,开启民智的新鲜内容。任何人都可以在这里阅读、分享、提问。”; $keywords = “IT,互联网,原创,科技,数码,搜索引擎,智能手机,iPhone,HTC,黑莓,摄影,评论,人物,访谈,现场,创意坊,记者,深度报道,问答”; } elseif (is_single()){ if ($post->post_excerpt) { $description = $post->post_excerpt; } else { $description = substr(strip_tags($post->post_content),0,220); }   $keywords = “”; $tags = wp_get_post_tags($post->ID); foreach ($tags as $tag ) { $keywords = $keywords . $tag->name . “, “; } } ?> <meta name=”keywords” […]

Begin typing your search term above and press enter to search. Press ESC to cancel.