This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Automatically set an image Alt-Text on upload */ | |
add_action( 'add_attachment', 'kreks__add_alt_text_from_image_IPTC_on_upload' ); | |
function kreks__add_alt_text_from_image_IPTC_on_upload( $post_ID ) { | |
// Check if uploaded file is an image, else do nothing | |
if ( wp_attachment_is_image( $post_ID ) ) { | |
$postMeta = get_post_meta($post_ID); | |
$uploads = wp_get_upload_dir(); | |
$imgURL = $uploads['basedir'] . "/" . $postMeta['_wp_attached_file']['0']; |