如何在Wordpress / php中显示媒体的日期

时间:2018-01-26 11:49:11

标签: php wordpress date

我尝试在Stackoverflow上搜索一些解决方案以解决我的问题,但我找不到任何内容。

我想显示在Wordpress上传媒体的日期,我使用包含许多php代码的页面模板。我尝试用一​​些功能来做它但它没有用。

1 个答案:

答案 0 :(得分:0)

添加此功能:

// retrieves the images date from the file URL
function rustys_get_image_date($image_url) {
  global $wpdb;
  $attachment = $wpdb->get_col($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE guid='%s';", $image_url )); 
  $id = $attachment[0];
  echo get_the_date('F j, Y g:i a', $id);        
}

使用它:

<?php rustys_get_image_date("full image url here")  ?>