function twentysixteen_entry_date() {
$time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
$time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time><time class="updated" datetime="%3$s">%4$s</time>';
}
$time_string = sprintf( $time_string,
esc_attr( get_the_date( 'c' ) ),
get_the_date(),
esc_attr( get_the_modified_date( 'c' ) ),
get_the_modified_date()
);
printf( '<span class="posted-on"><span class="screen-reader-text">%1$s </span><a href="%2$s" rel="bookmark">%3$s</a></span>',
_x( 'Posted on', 'Used before publish date.', 'twentysixteen' ),
esc_url( get_permalink() ),
$time_string
);
}
이부분 때문에 워드프레스 시간이 미국시간으로 표시가 되는거 같은데 이걸 어떻게 수정해야 하는걸가요?
안녕하세요~^^
워드프레스 관리자 -> 설정 -> 일반 페이지에서
타임존이 "서울"로 설정되어있는지도 확인해보셔야 할 듯합니다.
올려주신 코드는 테마 쪽에 있는 코드인지요?
다른 테마로도 확인해보시겠어요?
고맙습니다.