Advertisement
Lauda

time_ago()

Jun 25th, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.14 KB | None | 0 0
  1. // CUSTOM by Lauda:
  2. // time_ago() function:
  3. function mw_time_ago()
  4. {
  5.     global $post;
  6.  
  7.     $date = get_post_time('G', true, $post);
  8.  
  9.     // Array of time period chunks
  10.     $chunks = array(
  11.         array( 60 * 60 * 24 * 365 , __( 'year', 'mw' ), __( 'years', 'mw' ) ),
  12.         array( 60 * 60 * 24 * 30 , __( 'month', 'mw' ), __( 'months', 'mw' ) ),
  13.         array( 60 * 60 * 24 * 7, __( 'week', 'mw' ), __( 'weeks', 'mw' ) ),
  14.         array( 60 * 60 * 24 , __( 'day', 'mw' ), __( 'days', 'mw' ) ),
  15.         array( 60 * 60 , __( 'hour', 'mw' ), __( 'hours', 'mw' ) ),
  16.         array( 60 , __( 'minute', 'mw' ), __( 'minutes', 'mw' ) ),
  17.         array( 1, __( 'second', 'mw' ), __( 'seconds', 'mw' ) )
  18.     );
  19.  
  20.     if (!is_numeric($date))
  21.     {
  22.         $time_chunks = explode( ':', str_replace( ' ', ':', $date ) );
  23.         $date_chunks = explode( '-', str_replace( ' ', '-', $date ) );
  24.         $date = gmmktime( (int)$time_chunks[1], (int)$time_chunks[2], (int)$time_chunks[3], (int)$date_chunks[1], (int)$date_chunks[2], (int)$date_chunks[0] );
  25.     }
  26.  
  27.     $current_time = current_time( 'mysql', $gmt );
  28.     $newer_date = (!$newer_date) ? strtotime($current_time) : $newer_date;
  29.  
  30.     // Diff in secs
  31.     $since = $newer_date - $date;
  32.  
  33.     // Something derped with date aaaaand we ended up with a negative date, lal XD
  34.     if (0 > $since)
  35.         return __( 'sometime', 'mw' );
  36.  
  37.     /*
  38.      We only want to output one chunks of time here...liek:
  39.      x years
  40.      xx months
  41.      Vyrus slapped XX days ago, ect
  42.      */
  43.  
  44.     // the first chunk
  45.     for ( $i = 0, $j = count($chunks); $i < $j; $i++)
  46.     {
  47.         $seconds = $chunks[$i][0];
  48.  
  49.         // Finding the biggest chunk (if the chunk fits, break)
  50.         if (( $count = floor($since / $seconds) ) != 0)
  51.             break;
  52.     }
  53.  
  54.     // Set output var
  55.     $output = (1 == $count) ? '1 '. $chunks[$i][1] : $count . ' ' . $chunks[$i][2];
  56.  
  57.  
  58.     if (!(int)trim($output))
  59.         $output = '0 ' . __( 'seconds', 'mw' );
  60.  
  61.     $output .= __(' ago', 'mw');
  62.  
  63.     return $output;
  64. }
  65.  
  66. // Filter our mw_time_ago() function into WP's the_time() function
  67. add_filter('the_time', 'mw_time_ago');
  68.  
  69. if ( ! function_exists( 'twentyten_posted_on' ) ) :
  70. /**
  71.  * Prints HTML with meta information for the current post-date/time and author.
  72.  *
  73.  * @since Twenty Ten 1.0
  74.  */
  75.  /* OLD BEFORE MODDING ~Lauda
  76. function twentyten_posted_on() {
  77.     printf( __( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">by</span> %3$s', 'twentyten' ),
  78.         'meta-prep meta-prep-author',
  79.         sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a>',
  80.             get_permalink(),
  81.             esc_attr( get_the_time() ),
  82.             get_the_date()
  83.         ),
  84.         sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>',
  85.             get_author_posts_url( get_the_author_meta( 'ID' ) ),
  86.             esc_attr( sprintf( __( 'View all posts by %s', 'twentyten' ), get_the_author() ) ),
  87.             get_the_author()
  88.         )
  89.     );
  90. }
  91. */
  92. /* NEW: */
  93. function twentyten_posted_on() {
  94.     printf( __( '<span class="%1$s">Posted on:</span> %2$s', 'twentyten' ),
  95.         'meta-prep meta-prep-author',
  96.         sprintf('<span class="entry-date">%2$s</span>',
  97.             esc_attr(get_the_time()),
  98.             get_the_date() . ' ' . get_the_time()
  99.         //   ' ('. the_time() .')'
  100.         ),
  101.         NULL // lol'd
  102.     );
  103. }
  104. endif;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement