This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

Remove CSS link IDs

Description

This simple plugin hooks to the wp_enqueue_scripts and removed the id='<handle of the css file>-css' attribute. Most of the time you don’t need these IDs anyway.

I am using the mod_pagespeed module on my server and the combine_css filter doesn’t work if the <link> tags have ID attributes. So based on this blog post I created a very very simple (basically one-liner) plugin that removes the ID attribute using regex.

There is also a very simple unit test for it, created using wp-cli: wp scaffod plugin ....

Enjoy the speedy sites! 🙂

Do you want to contribute? Great! Please fork this repository, make the changes and create a pull request.

Installation

  1. Unzip remove-css-link-ids.zip and upload unzipped folder to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

FAQ

A question that someone might have?

No questions asked yet.

Reviews

There are no reviews for this plugin.

Contributors & Developers

“Remove CSS link IDs” is open source software. The following people have contributed to this plugin.

Contributors

Translate “Remove CSS link IDs” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

1.0.0

  • First release