plugin-icon

Upload Media Exif Date

將圖片註冊至媒體庫時,使用圖片的 EXIF 資訊日期資料進行註冊。
評價
5/5
版本
1.08
活躍安裝總數
200
最近更新:
Nov 25, 2025

註冊媒體檔案至媒體庫

  • 使用 EXIF 資訊的日期/時間。

系列外掛

使用篩選器勾點示範

  • 程式碼片段範例
/** ================================================== * Sample snippet for Upload Media Exif Date * * The original filter hook('umed_postdate'), * Get the date and time from the file name when the date and time cannot be read from the EXIF. * * @param string $postdate postdate. * @param string $filename filename. */ function umed_postdate_from_filename( $postdate, $filename ) { /* Sample for 20191120_183022.jpg */ $year = substr( $filename, 0, 4 ); $month = substr( $filename, 4, 2 ); $day = substr( $filename, 6, 2 ); $hour = substr( $filename, 9, 2 ); $minute = substr( $filename, 11, 2 ); $second = substr( $filename, 13, 2 ); $postdate = $year . '-' . $month . '-' . $day . ' ' . $hour . ':' . $minute . ':' . $second; return $postdate; } add_filter( 'umed_postdate', 'umed_postdate_from_filename', 10, 2 );
免費使用Business方案
目前已測試版本
WordPress 6.9
此外掛程式已可供下載,並可用於你 系統。