Return to Snippet

Revision: 48626
at July 6, 2011 18:45 by xavsio4


Initial Code
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;
}

Initial URL


Initial Description
in the theme's footer.php insert
<?php>

Initial Title
Wordpress  Dynamic Copyright Date

Initial Tags
wordpress

Initial Language
PHP