Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jdgrimes/wp-html-validator
WordPress plugin that validates your site's HTML and reports any errors. Works for local sites too!
https://github.com/jdgrimes/wp-html-validator
Last synced: 13 days ago
JSON representation
WordPress plugin that validates your site's HTML and reports any errors. Works for local sites too!
- Host: GitHub
- URL: https://github.com/jdgrimes/wp-html-validator
- Owner: JDGrimes
- License: gpl-2.0
- Created: 2014-08-06T14:58:22.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-08-20T15:20:54.000Z (over 10 years ago)
- Last Synced: 2024-11-02T15:42:30.379Z (2 months ago)
- Language: PHP
- Size: 188 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
WP HTML Validator
=================WordPress plugin that validates your site's HTML and reports any errors. Works for
local sites too!# Installation
Install and activate it as you would any other plugin. Then visit any webpage on your
site (on the front end or the administration panels). You can scroll down to the
footer and see whether the HTML is valid.# Configuration
The results are cached per-URL using transients, and the default expiration is 2
minutes. You can change this by defining `WP_HTML_VALIDATOR_CACHE_EXPIRATION` in your
`wp-config.php`:```php
define( 'WP_HTML_VALIDATOR_CACHE_EXPIRATION', 15 * 60 ); // 15 minutes
```