Advertisement
arie_cristianD

override meta time amp

Sep 26th, 2023
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. <li class="amp-wp-posted-on">
  2.     <time datetime="<?php echo esc_attr( date( 'c', get_post_modified_time( 'U', get_the_ID() ) ) ); ?>">
  3.         <?php
  4.         echo esc_html(
  5.             sprintf(
  6.                 _x( '%s ' . JNews\AMP\Helper::jnews_return_translation( 'Ago', 'jnews-amp', 'ago' ), '%s = human-readable time difference', 'jnews-amp' ),
  7.                 human_time_diff( get_post_modified_time( 'U', get_the_ID() ), time() )
  8.             )
  9.         );
  10.         ?>
  11.     </time>
  12. </li>
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement