plugin-icon

Upload Media Exif Date

When registering images in the media library, register with the date of EXIF information.
تقييمات
5
آخر تحديث
June 27, 2024
النسخة
1.07
التنصيبات النشطة
200

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 );
مجانيعلى خطة Creator
إذا قمت بالتثبيت، فإنك توافق على شروط خدمة ووردبريس.كوم وشروط إضافات الأطراف الثالثة.
التنصيبات النشطة
200
تم اختباره حتى
6.6
تتوافر هذه الإضافة للتنزيل لتُستخدم في عملية التثبيت المستضافة ذاتيًا على ووردبريس لديك.