wordpress动态获得版权年份
function copyrightDate() {
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'
");
if($copyright_dates) {
$date = date('Y-m-d');
$date = explode('-', $date);
$copyright = "Copyright © " . $copyright_dates[0]->firstdate;
if($copyright_dates[0]->firstdate != $date[0]) {
$copyright .= '-' . $date[0];
}
echo $copyright;
}
}
add_filter('wp_footer', 'copyrightDate');
全网最新最细最实用WPS零基础入门到精通全套教程!带你真正掌握WPS办公! 内含Excel基础操作、函数设计、数据透视表等
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号