' . esc_html( $year ) . ''; echo '
  • ' . esc_html( $month ) . '
  • '; echo '
  • ' . esc_html( $d ) . '
  • '; $title = __( 'Daily Archives' , 'cannyon' ); }else if ( is_month() ){ $month = get_the_date( 'F' ); $year = get_the_date( 'Y' ); echo '
  • ' . esc_html( $year ) . '
  • '; echo '
  • ' . esc_html( $month ) . '
  • '; $title = __( 'Monthly Archives' , 'cannyon' ); }else if ( is_year() ){ $year = get_the_date( 'Y' ); echo '
  • ' . esc_html( $year ) . '
  • '; $title = __( 'Yearly Archives' , 'cannyon' ); }else{ $year = __( 'Archives' , 'cannyon' ); echo '
  • ' . esc_html( $year ) . '
  • '; $title = $year; } ?>