plugin-icon

Upload Media Exif Date

メディアライブラリに画像を登録する際に、EXIF 情報の日付で登録します。
評価機能
5
最終更新日時
June 27, 2024
バージョン
1.07
有効インストール数
200

メディアライブラリへの画像登録

  • 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 );
無料Creator プランを利用中
インストールすることで、WordPress.com の利用規約サードパーティ製プラグインの規約に同意したとみなされます。
有効インストール数
200
最大テスト回数
6.6
このプラグインをダウンロードして、インストール型 WordPress のインストールに使用できます。