参考:http://stackoverflow.com/questions/4748956/how-do-i-get-yesterdays-date-in-c
核心代码:
time_t now; struct tm *ts; char yearchar[80]; now = time(NULL); ts = localtime(&now); ts->tm_mday--; mktime(ts); /* Normalise ts */ strftime(yearchar, sizeof(yearchar), "%Y%m%d", ts);
文章的脚注信息由WordPress的wp-posturl插件自动生成