日次アーカイブを月次/年次アーカイブとは異なる方法で表示したいのですが。アーカイブテンプレートが日次アーカイブと月次/年次アーカイブのどちらで作成されているかどうかを確認するにはどうすればよいですか。
条件付きタグFTW。
それで、これらの条件のそれぞれについてテストするために、あなたのarchive.phpに(あるいはあなたのアーカイブページに使用されているどんなテンプレートでも)このような何かを追加してください:
// Check what posts were returned in order to find what date the archive is for
global $posts;
$archivedate = strtotime( $posts[0]->post_date);
if (is_day()) {
echo "Daily archive: ".date('m/d/Y', $archivedate);
} else if (is_month()) {
echo "Monthly archive: ".date('F Y', $archivedate);
} else if (is_year()) {
echo "Yearly archive: ".date('Y', $archivedate);
}