Allows users to add custom fields to the media uploader and access those fields in posts or template files. Great for adding copyrights, image meta et …
Allows users to add custom fields to the media uploader and access those fields in posts or template files. Great for adding copyrights, image meta 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.
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. The plugin has been adopted and refactored by George Pattichis who will continue development and maintenance.
[acfm id="123" field="my_custom_field"]
– Shortcodeecho get_post_meta( 123, 'my_custom_field', true );
– PHP codeYou can post in the support forum or contact me.
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