私のテーマの下に動的に移入された著作権ステートメントを生成するための、最適化された、WP_Queryに対して安全な方法を見つけたいです。つまり、最も古い投稿と最も新しい投稿の日付を(年ごとに)確認してから、次の行に沿って何かを出力します。
[blog name] © [oldest post year]-[newest post year] [primary blog author]
最も簡単で安全な方法は何ですか?
これが私が使っているものです:
function oenology_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;
}
もちろん、もっとクリーンで、より安全な、あるいはもっと効率的な方法があるなら、私もそれについて聞きたいです!
編集:
そして、これはもっとクリーンアップされたバージョンで、著作権の日付をwp_cacheに追加します。
function oenology_copyright() {
// check for cached values for copyright dates
$copyright_cache = wp_cache_get( 'copyright_dates', 'oenology' );
// query the database for first/last copyright dates, if no cache exists
if ( false === $copyright_cache ) {
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'
");
$copyright_cache = $copyright_dates;
// add the first/last copyright dates to the cache
wp_cache_set( 'copyright_dates', $copyright_cache, 'oenology', '604800' );
}
// Build the copyright notice, based on cached date values
$output = '© ';
if( $copyright_cache ) {
$copyright = $copyright_cache[0]->firstdate;
if( $copyright_cache[0]->firstdate != $copyright_cache[0]->lastdate ) {
$copyright .= '-' . $copyright_cache[0]->lastdate;
}
$output .= $copyright;
} else {
$output .= date( 'Y' );
}
return $output;
}
これによりパフォーマンスが少し向上しますか?