Upload Media Exif Date

বৰ্ণনা

Register image to media library

  • Change to the date/time of EXIF information.

Sibling plugin

Sample of how to use the filter hook

  • Sample snippet
/**  ==================================================
 * 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 );

স্ক্ৰীনশ্বট

  • EXIF information
  • Media Library

ইনষ্টলেশ্যন

  1. Upload upload-media-exif-date directory to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

সঘনাই উত্থাপিত প্ৰশ্ন

none

পৰ্য্যালোচনা

এপ্ৰিল 26, 2024
いちいち日付を書き直す必要がなく、年月でフォルダ分けできるのでとても助かっていて今まで当たり前のように利用させていただいていました。 最近アップロードするとファイル名に2バイト文字が含まれていることが問題なのか、特定のカメラの写真をRAW編集して現像したJpeg写真をアップするとタイトルがアップ後に「?????」となる問題が発生しています。日付はちゃんと取得してくれます。 何かのプラグインとの競合や、私の特定の環境(Wordpressは最新版ですがプラグインは多い)の問題かもしれませんがそうなる場合があることを書かせていただきました。もしかしたらお門違いかもしれません。プラグイン自体はとても素晴らしいものです
আটাই 2টা পৰ্য্যালোচনা পঢ়ক

অৱদানকাৰী আৰু বিকাশকাৰীসকল

“Upload Media Exif Date” হৈছে মুক্ত উৎসৰ ছফ্টৱেৰ। এইসকল লোকে এই প্লাগিনত অৱদান আগবঢ়াইছে।

অৱদানকাৰীসকল

“Upload Media Exif Date” 2টা ভাষাত অনুবাদ কৰা হৈছে। অনুবাদকসকলক তেওঁলোকৰ অৱদানৰ বাবে ধন্যবাদ।

আপোনাৰ ভাষাত “Upload Media Exif Date” অনুবাদ কৰক।

বিকাশৰ প্ৰতি আগ্ৰহী?

ক’ড ব্ৰাউজ কৰক, SVN ৰিপজিটৰী চাওক নাইবা RSS-দ্বাৰা বিকাশৰ পঞ্জী ছাবস্ক্ৰাইব কৰক।

সলনি-পঞ্জী

[1.07] 2024/03/05

  • Fix – Changed file operations to WP_Filesystem.

1.06

Supported WordPress 6.4.
PHP 8.0 is now required.

1.05

Fixed filter hook(‘umed_postdate’).

1.04

Add filter hook(‘umed_postdate’).

1.03

Supported WordPress 5.6.

1.02

Fixed problem of metadata.

1.01

Fixed a problem with moving files.

1.00

Initial release.