勤美堂源码网

WordPress如何自动生成网站底部版权时间

24小时自助开通VIP,马上拥有站内全部资源 西部数码钻石代理商特价冲量 乐道主机 24小时自助开通VIP,马上拥有站内全部资源

部分主题版权时间可能需要自己手动填写或者更改,今天给大家介绍一个可以自动生产网站底部版权时间的方法:

1、首先还是将自动生产版权的php函数添加到主题functions.php最后一个?php>前


//自动生成版权时间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;}

2、在主题footer.php文件版权处适当位置加入显示时间的代码,一般添加在Copyright后,以flshow主题为例


Copyright <?php echo comicpress_copyright();?>


本站提供的模板源码,仅供源码爱好者本地电脑环境下学习研究或2次开发使用,部分演示数据仅为网站模板整体美观或属性设置需要,不合适上线运营,下载后请自行24小时内删除数据。我们倡议:站长应该严格遵守互联网法律法规建站,净化网络,站长更有责!!!

发表评论

还没有评论,快来说点什么吧~

联系客服
网站客服 业务合作 Q交流群
51843834
返回顶部
 
QQ在线咨询
客服热线
139-3511-2134