Đây là một đoạn code nhỏ trong wordpress cho phép bạn hiển thị thời gian từ ngày đăng bài đến hiện tại. Các bạn có thể thêm nó vào file function.php
/** * Display time since post was published * * @uses human_time_diff() Return time difference in easy to read format * @uses get_the_time() Get the time the post was published * @uses current_time() Get the current time * * @return string Timestamp since post was published * * @author c.bavota */ function get_time_since_posted() { $time_since_posted = human_time_diff( get_the_time( 'U' ), current_time( 'timestamp' ) ) . ' ago'; return $time_since_posted; }
Bây giờ các bạn có thể sử dụng hàm get_time_since_posted() để hiển thị thời gian từ ngày đăng bài cho đến hiện tại trong loop wordpress.
Tham khảo hàm human_time_diff() tại http://codex.wordpress.org/Function_Reference/human_time_diff
25 thoughts on “Hiển thị thời gian kể từ ngày đăng trong wordpress”
Comments are closed.