Patch for better image credits compatibility
-
Hi, I created this patch to automatically fill out the better image credits fields.
In
pixabay-images.php
, after line 306 (wp_update_post($image_data);
), insert:if (!$pixabay_images_settings['attribution'] | $pixabay_images_settings['attribution']=='true'){ update_post_meta($attach_id, '_wp_attachment_source_name', htmlentities($_POST['image_user']).' / Pixabay'); update_post_meta($attach_id, '_wp_attachment_source_url', 'https://pixabay.com/users/'.htmlentities($_POST['image_user']).'/'); update_post_meta($attach_id, '_wp_attachment_license', 'CC0'); update_post_meta($attach_id, '_wp_attachment_license_url', 'https://creativecommons.org/publicdomain/zero/1.0/legalcode'); }
I’ll be happy if you include this in the next release.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Patch for better image credits compatibility’ is closed to new replies.