One in a million
每月一歌时间。
[youtube]EbRB22fOXbQ[/youtube]
Continue reading…
每月一歌时间。
[youtube]EbRB22fOXbQ[/youtube]
Continue reading…
与 Ubuntu 相比,通过 grub4dos 引导来硬盘安装 Fedora 10 显然要繁琐那么一点点。花了大半天的时间来尝试硬盘安装 Fedora 10 ,事实证明,有刻录机不用反而要硬盘安装,纯粹是自己给自己找麻烦。
几点安装心得:
幸好提前去 Yahoo 看了下域名的续费情况,不然还不知道 Yahoo 的域名年费狂涨到 $34.95,实在是太不厚道了!
于是决定将域名转出至 GoDaddy,不过却没想到过程却这么麻烦:
相关参考链接:
How do I transfer my yahoo domain to a new registrar
域名转移到 Godaddy 图文教程
Godaddy 域名使用说明
貌似在 wp-config.php
中加入 define(’WP_POST_REVISIONS’, false);
来禁用 WordPress 的日志修订功能,post revision 还是会产生。gohsy 同学写了个插件 Revision Manager 来清理 post revision,不过个人觉得手动清理还是不够方便,决定利用 WordPress 的计划任务功能(WP_Cron)偷偷懒。
不想为了这小小的功能而多添加一个插件,所以在主题目录下的 functions.php
文件添加了以下代码:
function delete_post_revisions() {
global $wpdb;
// Also need to delete the post meta and term relationships
$wpdb->query("DELETE FROM {$wpdb->postmeta} WHERE post_id IN (SELECT ID FROM {$wpdb->posts} WHERE post_type = 'revision')");
$wpdb->query("DELETE FROM {$wpdb->term_relationships} WHERE object_id IN (SELECT ID FROM {$wpdb->posts} WHERE post_type = 'revision')");
// Delete the post revisions
$wpdb->query("DELETE FROM {$wpdb->posts} WHERE post_type = 'revision'");
}
// Register the event
add_action('delete_post_revisions_event', 'delete_post_revisions');
if (!wp_next_scheduled('delete_post_revisions_event')) {
wp_schedule_event(time(), 'daily', 'delete_post_revisions_event');
}
在之前使用 HemingwayEx 主题的时候我把一些只有半句或几句话的日志移动到了 asides 分类,而现在我不想让 Google Sitemaps Generator 插件生成 sitemap 的时候包括这些日志,也许只有我才会有这样奇怪的需求 😯 。
可 Google XML Sitemaps 只能忽略指定的日志或页面,而不能忽略整个分类,所以只能自己动手了。
1. 打开插件目录下的 sitemap-core.php
文件,找到:
$where.=" AND post_password='' ORDER BY post_modified DESC";
$sql .= $where;
修改成:
$where.=" AND post_password='' ORDER BY post_modified DESC";
$where = apply_filters('sitemap_exclude_categories', $where);
$sql .= $where;