21时26分 02月10日 2011年

让中文版WordPress的the_time(‘M’)显示英文月份

No Comments Popularity: 28%, WordPress

  可以用下面的方法让the_time(‘M’)显示英文月份。通过PHP的date函数和WordPress自带的get_the_time函数,可以让他显示成英文的Jan 27,2010。

代码如下

<?php
$u_time = get_the_time('U'); /*获取日志文章发表时间的时间戳*/
echo date("M j,Y",$u_time); /*Jan 27,2010*/
echo date("F j,Y",$u_time); /*January 27,2010*/
?>

Tags:, , .

20时50分 01月22日 2011年

Godaddy 1-2月域名优惠码只需 1.49美元

2 Comments Popularity: 28%, Domains

  优惠码适用于域名注册或者转移.COM、.US、.MOBI、.BIZ、.NET、.ORG、.CA、.CO.UK、.IN 等域名,只需要1.49美元,只支持信用卡付费。

  优惠码:winter149

  截止日期:2011.2.16或前10000名

Tags:, , , , , .

14时50分 01月22日 2011年

WordPress 内容更新时自动通知会员

1 Comment Popularity: 27%, WordPress

  如何在博客内容更新时自动通知所有注册会员?方法很简单,您只需要在 functions.php 文件中添加以下代码即可:

function email_members($post_ID)  {
    global $wpdb;
    $usersarray = $wpdb->get_results("SELECT user_email FROM $wpdb->users;");
    $users = implode(",", $usersarray);
    mail($users, "您关注的博客“爱在深邱”已有更新", '<a href="http://www.shenaiqiu.com">点此查看博客更新内容</a>');
    return $post_ID;
}
add_action('publish_post', 'email_members');

  当可能数据量大时效率会有下降。

Tags:.

14时12分 01月22日 2011年

GoDaddy $0.99 优惠码支持支付宝付款

No Comments Popularity: 27%, Domains, Hosting

  优惠码只适用于 .INFO 域名注册,不需要一次性注册5个域名,注册1个域名也可以享受 0.99美元的优惠。支持支付宝付款,截止日期未知。

  $0.99 优惠码:gdz1112n

Tags:, , , , , .

22时28分 01月20日 2011年

第一次用手机写博客

No Comments Popularity: 17%, Journal, WordPress

  老婆逛街买衣服,我陪。她选她的衣服,我玩我的手机,一个月30个小时免费Wifi上网时长不用白不用。

  ……

  逛累了,不想写了。

  第一次用手机写博客,哈哈。

Tags:, .