{
    分享网正式开通,我们为大家提供免费资源,欢迎大家踊跃投稿!

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

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

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();?>



资源均来自第三方,谨慎下载,前往第三方网站下载


米微资源分享网 , 版权所有丨本站资源仅限于学习研究,严禁从事商业或者非法活动!丨本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:WordPress如何自动生成网站底部版权时间
喜欢 ()分享 (0)