=== Add Custom Fields to Media === Contributors: christopherross, pattihis Plugin URI: https://https://wordpress.org/plugins/add-custom-fields-to-media/ Tags: wordpress, media, upload, custom fields Donate link: https://profiles.wordpress.org/pattihis/ Requires at least: 5.2 Tested up to: 6.4 Requires PHP: 7.2 Stable tag: 2.0.0 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Allows users to add custom fields to the media uploader and access those fields in posts or template files. Great for adding copyrights etc. == Description == Allows users to add custom fields to the media uploader and access those fields in posts or template files. Great for adding copyrights etc. To display the custom fields in your theme, use the following shortcode in post/pages: * [acfm id="123" field="my_custom_field"] Where id is the ID of the media item and field is the name of the custom field. For PHP templates, use the following code: * echo get_post_meta( 123, 'my_custom_field', true ); To use this plugin effectively, download and intall it on your WordPress blog. Next, access "Media Custom Fields" page in your admin Settings and create a new custom field for your media uploads. * Unique ID - The unique variable name for this item. It may not contain special characaters or spaces * Field Title - The name you want to appear in the media uploader * Field Help - A descriptive message you want to appear in the media uploader Once you've added a custom field, you can access it via the Media Library or during the Add Media process of uploading a new item. This plugin was originally developed by [Christopher Ross](http://thisismyurl.com). The plugin has been adopted and refactored by [George Pattichis](https://profiles.wordpress.org/pattihis/) who will continue development and maintenance. [Changelog](http://wordpress.org/extend/plugins/add-custom-fields-to-media/changelog/) == Installation == 1. In your WordPress admin panel, go to Plugins > New Plugin, search for "Add Custom Fields To Media" and click "Install now" 2. Alternatively, download the plugin and upload the contents of add-custom-fields-to-media.zip to your plugins directory, which usually is /wp-content/plugins/ 3. Activate the plugin 4. Go to "Media Custom Fields" page in your admin Settings == Frequently Asked Questions == = How do I see the results? = * [acfm id="123" field="my_custom_field"] - Shortcode * echo get_post_meta( 123, 'my_custom_field', true ); - PHP code = Where can I get more information, or technical support for this plugin? = Technical support is available for free from the WordPress community on [wordpress.org](http://wordpress.org). == Screenshots == 1. Plugin settings page 2. The custom fields in media library == Changelog == = 2.0.0 (January, 2024) = * Major Update * Compatibility refactoring * WP Coding Standards * Added shortcode [acfm] = 1.2.5 (March 31, 2013) = * fixed incorrectly named categories * removed link to website from plugin links * encoded and removed icon * added support link = 1.2.1 (September 13. 2012) = * language customization * renamed function for compatibility = 1.2.0 (September 13. 2012) = Added functions: * thisismyurl_has_custom_media_field( $attachment_id, $unique_field_id ) - Returns boolean value * thisismyurl_custom_media_field( $attachment_id, $unique_field_id ) - Displays the value = 1.0.1 = * fixed a bug in the fetch function = 1.0.0 = * initial release