Title: AutoAltify
Author: Vishal Padhariya
Published: <strong>December 23, 2025</strong>
Last modified: December 23, 2025

---

Search plugins

![](https://ps.w.org/autoaltify/assets/icon-256x256.png?rev=3432686)

# AutoAltify

 By [Vishal Padhariya](https://profiles.wordpress.org/vishalpadhariya/)

[Download](https://downloads.wordpress.org/plugin/autoaltify.1.1.0.zip)

 * [Details](https://twd.wordpress.org/plugins/autoaltify/#description)
 * [Reviews](https://twd.wordpress.org/plugins/autoaltify/#reviews)
 *  [Installation](https://twd.wordpress.org/plugins/autoaltify/#installation)
 * [Development](https://twd.wordpress.org/plugins/autoaltify/#developers)

 [Support](https://wordpress.org/support/plugin/autoaltify/)

## Description

AutoAltify is a powerful WordPress plugin that automatically generates descriptive
ALT text for images in your media library. Improve accessibility and SEO while saving
time on manual ALT text entry.

#### Features

 * **Automatic ALT Text Generation** – Generate ALT text from image titles, filenames,
   or combined with site name
 * **Three Generation Modes** – Title Only, Title + Site Name, or Clean Filename
 * **Bulk Operations** – Generate ALT text for your entire media library with one
   click
 * **AJAX Batching** – Process images in batches to prevent timeouts
 * **Media Library Integration** – View ALT status directly in media library
 * **Logging** – Optional detailed logging for troubleshooting
 * **Bulk Actions** – Process selected images from media library
 * **Developer Hooks** – Extensive filters and actions for custom integration
 * **Multi-language Ready** – Fully translatable

#### Generation Modes

**Title Only** – Uses the clean image title as ALT text

**Title + Site Name** – Combines the image title with your blog name

**Clean Filename** – Extracts readable text from filenames, removing common noise
words (v1, v2, final, copy, img, image, etc.)

#### Three Ways to Use

 1. **Enable Auto-generate** – Automatically generate ALT text when images are uploaded
 2. **Bulk Run Tool** – Generate ALT text for entire media library from settings page
 3. **Media Library Bulk Action** – Select specific images and generate ALT text

#### Security & Performance

 * Secure nonce verification on all AJAX actions
 * Proper capability checks for all admin functions
 * Efficient batching prevents server timeouts
 * Configurable batch sizes (5-200 images per batch)
 * Works with large media libraries (1000+ images)

#### Developer-Friendly

 * Modular class-based architecture
 * Multiple action and filter hooks for customization
 * Clean namespace implementation (AutoAltify)
 * Well-documented code with PHPDoc comments
 * Easy to extend and integrate with other plugins

#### Translations

AutoAltify is fully translatable. Text domain: `autoaltify`

### Configuration

Navigate to **Settings  AutoAltify** to configure:

 * **Auto-generate on Upload** – Enable automatic generation when images are uploaded
 * **Generation Mode** – Choose how ALT text is built (Title Only, Title + Site 
   Name, Clean Filename)
 * **Allowed Image Types** – Select which formats to process (JPG, PNG, GIF, WebP,
   AVIF, SVG)
 * **Enable Logging** – Turn on logging to wp-content/uploads/autoaltify-logs/
 * **Batch Size** – Set images per batch (5-200, default 30)

### Usage

#### Auto-generate on Upload

Enable the “Auto-generate on upload” setting to automatically generate ALT text 
for newly uploaded images.

#### Bulk Run All Media

 1. Go to Settings  AutoAltify
 2. Click “Run ALT Generator on all media (missing only)”
 3. Watch the progress bar
 4. Only processes images without existing ALT text

#### Media Library Bulk Action

 1. Go to Media Library
 2. Select one or more images
 3. Choose “Generate ALT with AutoAltify” from Bulk Actions
 4. Click Apply

#### Media Library Column

View ALT status directly in the media library with the new “ALT Status” column showing:
*“
Present” (green) – Image has ALT text * “Missing” (red) – Image needs ALT text

### API Reference

#### Filters

**autoaltify_generated_alt**
 Modify the generated ALT text before it’s saved.

    ```
    add_filter( 'autoaltify_generated_alt', function( $alt, $attachment_id ) {
        return 'Image: ' . $alt;
    }, 10, 2 );
    ```

**autoaltify_clean_title**
 Modify the cleaned title before final ALT text.

**autoaltify_clean_filename**
 Modify the cleaned filename before final ALT text.

#### Classes

 * `AutoAltify\Core\Generator` – ALT text generation logic
 * `AutoAltify\Core\Logger` – Logging functionality
 * `AutoAltify\Core\Options` – Settings management
 * `AutoAltify\Admin\Admin` – Admin interface
 * `AutoAltify\Public_Hooks\Public_Hooks` – Frontend hooks

See DEVELOPER-GUIDE.md for detailed API documentation.

### Requirements

 * WordPress 5.0 or higher
 * PHP 7.2 or higher
 * Multibyte string support (mb_* functions)

### Compatibility

Works with:
 * WordPress 5.0 – 6.4+ * PHP 7.2 – 8.3+ * All standard WordPress themes*
WooCommerce (for product images) * Most image optimization plugins

### Performance

 * Configurable batch sizes (5-200 images)
 * AJAX processing prevents timeouts
 * Efficient database queries with meta queries
 * Optional logging for better performance control
 * Suitable for media libraries with 1000+ images

### Support

For questions, issues, or feature requests, please contact the plugin author or 
refer to documentation.

### License

This plugin is licensed under GPLv2 or later.

    ```
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License, version 2 or later,
    as published by the Free Software Foundation.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    GNU General Public License for more details.
    ```

You should have received a copy of the GNU General Public License
 along with this
program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth
Floor, Boston, MA 02110-1301 USA

### Credits

Built with WordPress best practices and security in mind.

Made with ❤️ for WordPress developers and site owners.

## Installation

 1. Download the plugin files
 2. Upload the `autoaltify` folder to `/wp-content/plugins/` directory
 3. Activate the plugin through ‘Plugins’ menu in WordPress
 4. Go to Settings  AutoAltify to configure options

## FAQ

### Will this overwrite existing ALT text?

No. AutoAltify only generates ALT text for images that don’t already have it.

### Can I customize the ALT text?

Yes! Use the provided filters (autoaltify_generated_alt, autoaltify_clean_title,
autoaltify_clean_filename) to customize generation.

### What about performance with large media libraries?

AJAX batching handles large libraries efficiently. The system processes configurable
batches with delays to prevent timeouts.

### Where are logs stored?

Logs are stored at wp-content/uploads/autoaltify-logs/autoaltify.log when logging
is enabled.

### Which image types are supported?

JPG/JPEG, PNG, GIF, WebP, AVIF, and SVG. All can be enabled/disabled in settings.

### Will this work with custom post types?

Currently supports standard WordPress attachments. Use filters to extend for custom
implementations.

### What happens on deactivation?

Settings and logs are preserved. Simply reactivate to continue using.

## Reviews

There are no reviews for this plugin.

## Contributors & Developers

“AutoAltify” is open source software. The following people have contributed to this
plugin.

Contributors

 *   [ Vishal Padhariya ](https://profiles.wordpress.org/vishalpadhariya/)

[Translate “AutoAltify” into your language.](https://translate.wordpress.org/projects/wp-plugins/autoaltify)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/autoaltify/), check
out the [SVN repository](https://plugins.svn.wordpress.org/autoaltify/), or subscribe
to the [development log](https://plugins.trac.wordpress.org/log/autoaltify/) by 
[RSS](https://plugins.trac.wordpress.org/log/autoaltify/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 1.1.0

 * Refactored into modular architecture
 * Separated core, admin, and public functionality into classes
 * Added comprehensive documentation
 * Improved code organization and maintainability
 * Enhanced logging capabilities
 * Added developer hooks and filters
 * Full namespace implementation

#### 1.0.0

 * Initial release
 * Auto-generation on upload
 * Bulk operations with AJAX batching
 * Media library integration
 * Settings page and configuration

## Meta

 *  Version **1.1.0**
 *  Last updated **3 months ago**
 *  Active installations **Fewer than 10**
 *  WordPress version ** 5.0 or higher **
 *  Tested up to **6.9.4**
 *  PHP version ** 8.2 or higher **
 *  Language
 * [English (US)](https://wordpress.org/plugins/autoaltify/)
 * Tags
 * [Alt Text](https://twd.wordpress.org/plugins/tags/alt-text/)[automated](https://twd.wordpress.org/plugins/tags/automated/)
   [bulk actions](https://twd.wordpress.org/plugins/tags/bulk-actions/)[media library](https://twd.wordpress.org/plugins/tags/media-library/)
   [seo](https://twd.wordpress.org/plugins/tags/seo/)
 *  [Advanced View](https://twd.wordpress.org/plugins/autoaltify/advanced/)

## Ratings

No reviews have been submitted yet.

[Add my review](https://wordpress.org/support/plugin/autoaltify/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/autoaltify/reviews/)

## Contributors

 *   [ Vishal Padhariya ](https://profiles.wordpress.org/vishalpadhariya/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/autoaltify/)