<meta property="article:published_time" content="2018-04-18T16:27:50Z">
<meta property="article:modified_time" content="2018-04-26T16:27:50Z">
워드프레스에서 글을 과거날짜로 쓰면 하난 과거날짜로 표시가 되고 하난 현재날짜로 표시가 되는게 현재날짜로 표시되는 저부분 같이 과거날짜로 보이게 할순없을까요?
안녕하세요~^^
해당 내용이 출력되는 코드는 아마도 테마 쪽 어느 파일 안에 있을 듯합니다.
테마 쪽 파일을 찾아서 수정하시거나,
데이터베이스(DB) 접속해서 직접 데이터를 수정해주셔야 할 듯합니다.
get_the_modified_time 필터로 가능한지 확인 해보시겠어요?
아래 코드를 테마의 functions.php 파일에 추가해서 테스트 해보세요.
add_filter('get_the_modified_time', 'my_get_the_modified_time', 10, 3);
function my_get_the_modified_time($the_time, $d, $post){
$the_time = $post->post_date;
return $the_time;
}
워드프레스 관리자 -> 외모 -> 테마 편집기 페이지에서 functions.php 파일을 편집할 수 있습니다.
고맙습니다.