php [WORDPRESS] - 脚注中的Wordpress动态版权日期#wp #footer #wordpress#functions.php

Posted

tags:

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

//Wordpress dynamic copyright date in the footer
//###################### Add following code to functions.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;
}

//###################### Add following code to footer.php
<?php echo comicpress_copyright(); ?>

以上是关于php [WORDPRESS] - 脚注中的Wordpress动态版权日期#wp #footer #wordpress#functions.php的主要内容,如果未能解决你的问题,请参考以下文章

如何在 WordPress 中获取当前页面名称?

Wordpress jQuery ajax GET 请求到 php 函数,该函数在每个 php 任务完成时逐步发回多个响应

如何在 Wordpress 中加载 Ajax

子目录安装中的Wordpress 403禁止错误

sql 使用这些MySQL查询修复WordPress数据库编码问题...来源#1:http://tanyanam.com/technology/fixing-encoding-issues-on-wo

Wordpress开启GZIP功能的多个方法