有时候我查资料的时候,看到一些博客的年份标识有时都是去年的了,我就经不住内心嘀咕一下。嘿嘿,现在我在自己写主题,正好要装扮底部版权了,就去百度了下,顺便给大家分享下。
这种动态标识是根据第一篇日志来判断的,所以是蛮不错的。
函数如下,
- function comicpress_copyright() {
- global $wpdb;
- $copyright_dates = $wpdb->get_results("
- SELECT
- YEAR(min(post_date_gmt)) AS firstdate,
- YEAR(max(post_date_gmt)) AS lastdate
- FROM
- $wpdb->posts
- WHERE
- post_status = 'publish'
- ");
- $output = '';
- if($copyright_dates) {
- $copyright = "© " . $copyright_dates[0]->firstdate;
- if($copyright_dates[0]->firstdate != $copyright_dates[0]->lastdate) {
- $copyright .= '-' . $copyright_dates[0]->lastdate;
- }
- $output = $copyright;
- }
- return $output;
- }
以上的东西复制进functions.php
之后在适当的位置添加一下代码:
- <?php echo comicpress_copyright(); ?>
之后刷新看下,当得当,最终结果:就是类似© 2009 – 2011这样的日期。
版权声明:本文为原创文章,版权归 neo 所有。
本作品采用知识共享署名-非商业性使用 4.0 国际许可协议进行许可。
0 条评论