Title: Icon ALT values
Last modified: August 30, 2016

---

# Icon ALT values

 *  Resolved [Gahsto](https://wordpress.org/support/users/bkseoexpert/)
 * (@bkseoexpert)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/icon-alt-values/)
 * Hi,
 * I’m building a site that must be 508 compliant, and I need to insert an ALT tag
   value for the icons used in DM (pdf, mp3, etc)d. I found the following code in
   wpdm-function.php:
 *     ```
       if ($column_name == 'wpdm-image') {
       //        if(has_post_thumbnail($post_ID))
       //            echo get_the_post_thumbnail( $post_ID, 'thumbnail', array('class'=>'img60px') );
       //        else {
                   $icon = get_post_meta($post_ID,'__wpdm_icon', true);
                   if($icon!=''){
                       if(file_exists(WP_PLUGIN_DIR.'/'.$icon))
                           $icon = plugins_url('/').$icon;
                        //   $icon = "/download-manager/file-type-icons/blank.png";
   
                       echo "<img src='$icon' class='img60px' alt='image' />";
                   } else {
                       echo "<img src='".WPDM_BASE_URL."/file-type-icons/blank.png' title='Default Icon' class='img60px' alt='Icon' />";
                   }
               //}
           }
       }
       ```
   
 * Is this where the alt value is inserted? Please advise.
 * Thanks,
    Michael
 * [https://wordpress.org/plugins/download-manager/](https://wordpress.org/plugins/download-manager/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [Shahjada](https://wordpress.org/support/users/codename065/)
 * (@codename065)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/icon-alt-values/#post-6663512)
 * Yes, thanks for pointing that, I certainly shall add it with next update.

Viewing 1 replies (of 1 total)

The topic ‘Icon ALT values’ is closed to new replies.

 * ![](https://ps.w.org/download-manager/assets/icon-256x256.png?rev=1561688)
 * [Download Manager](https://wordpress.org/plugins/download-manager/)
 * [Support Threads](https://wordpress.org/support/plugin/download-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/download-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/download-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/download-manager/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Shahjada](https://wordpress.org/support/users/codename065/)
 * Last activity: [10 years, 7 months ago](https://wordpress.org/support/topic/icon-alt-values/#post-6663512)
 * Status: resolved