Plugin info

Total downloads: 11,294
Active installs: 700
Total reviews: 7
Average rating: 5
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 3
Last updated: 12/4/2025 (27 days ago)
Added to WordPress: 3/14/2013 (12 years old)
Minimum WordPress version: 4.7
Tested up to WordPress version: 6.9
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Actively maintained • Last updated 27 days ago • 7 reviews

70/100

Is Autover abandoned?

Likely maintained (last update 27 days ago).

Compatibility

Requires WordPress: 4.7
Tested up to: 6.9
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

No similar plugins found yet.

Description

Autover plugin will automatically version your CSS and JS files. This is especially useful when using a Content Distribution Network (CDN) for delivering static files like CSS and JavaScripts. The plugin appends to the resource URL a numeric version number generated by the filemtime() PHP function (e.g. style.css?ver=1359464809). This means the version number will be updated every time the CSS or JS file is being saved.

IMPORTANT: this plugin only works with CSS and JS files that are enqueued using the standard WordPress functions wp_enqueue_style and wp_enqueue_script and/or admin_enqueue_style, admin_enqueue_script.

Installation

Installation

  1. Upload autover.zip to the /wp-content/plugins/ directory;
  2. Extract the autover.zip archive into the /wp-content/plugins/ directory;
  3. Activate the plugin through the ‘Plugins’ menu in WordPress.

Alternatively go into your WordPress dashboard and click on Plugins -> Add Plugin and search for Autover. Then click on Install, then on Activate Now.

Usage

Just install and activate the plugin.
The plugin will automatically start to version your CSS and JS files that are correctly enqueued into WordPress (by using wp_enqueue_style and wp_enqueue_script and/or admin_enqueue_style, admin_enqueue_script functions).

Depending on the caching mechanism used, a purge of page (html) cache might be needed.

If you want to version only CSS or only JS files, please use the constants AUTOVER_DISABLE_JS and AUTOVER_DISABLE_CSS.

Frequently Asked Questions

Why should I use this plugin?

If you want to automatically version your CSS and JavaScript files, this will help to load your CSS and JS file into the cache memory only when you change the code from the files.

What is the difference between the wp_enqueue_script and admin_enqueue_script?

The ‘admin_‘ hooks are designed for wp-admin area or so called Dashboard area, the ‘wp_‘ hooks are designed for site.

Review feed

Andrei Lupu
2/3/2017

Working perfect

Excellent plugin to lose your CDN cache without any other interaction.

Screenshots

  1. <p>Before activation</p>

    Before activation

  2. <p>After activation</p>

    After activation

Changelog

1.7

  • Tested up to WP 6.9

1.6

  • Tested up to WP 6.8

1.5

  • Standardised folder structure
  • Added tests for current features and improved url replacement (custom arguments now preserved)
  • Cleanup of code

1.4

  • Cleaned up the plugin code(remove the options from DB).
  • Now the plugin uses the constants AUTOVER_DISABLE_CSS / AUTOVER_DISABLE_JS to see if it needs to ignore a resource.
  • Removed settings page (replaced by the constants AUTOVER_DISABLE_JS and AUTOVER_DISABLE_CSS).
  • Removed the file list.

1.3

  • Add file lists.

1.2

  • Enhancement: settings tab is now separated for easier understanding.
  • Enhancement: updated readme.txt file with more details and added print screens.
  • Bug fix: fixed an error at the ‘filemtime()’ function.

1.1

  • Bug fix: fixed some settings error.

1.0

  • First version on WP.