name; } elseif (is_day()) { /* translators: %s: Date */ $title = sprintf( __( 'Daily Archives: %s', 'virtue' ), get_the_date() ); } elseif (is_month()) { /* translators: %s: Date showing year and month */ $title = sprintf( __( 'Monthly Archives: %s', 'virtue' ), get_the_date( 'F Y' ) ); } elseif (is_year()) { /* translators: %s: Date showing year only */ $title = sprintf( __( 'Yearly Archives: %s', 'virtue' ), get_the_date( 'Y' ) ); } return $title; }