php WordPress:WordPress页脚中的动态版权日期

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WordPress:WordPress页脚中的动态版权日期相关的知识,希望对你有一定的参考价值。

function wpb_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;
}

<?php echo wpb_copyright(); ?>

以上是关于php WordPress:WordPress页脚中的动态版权日期的主要内容,如果未能解决你的问题,请参考以下文章

php 添加Wordpress页脚小部件区域

php 自定义管理页脚wordpress

PHP Wordpress自定义管理页脚

PHP Wordpress管理页脚

php 删除页脚登录和Wordpress信用

PHP Wordpress:自定义管理页脚文本