Skip to content

Instantly share code, notes, and snippets.

@alwayscoding
Created March 17, 2013 16:48
Show Gist options
  • Save alwayscoding/5182396 to your computer and use it in GitHub Desktop.
Save alwayscoding/5182396 to your computer and use it in GitHub Desktop.
WORDPRESS: GET TIME SINCE PUBLISHED
/**
* GET TIME SINCE PUBLISHED
*/
function get_time_since_posted() {
$time_since_posted = human_time_diff( get_the_time( 'U' ), current_time( 'timestamp' ) ) . ' 전에';
return $time_since_posted;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment