Welcome to the WordPress www Validation plugin home page…

What is the wp-w3-validation plugin?

The WordPress www Validation plugin displays the validity of the html and/or css on each of your posts or pages. All you have to do is add a small line of code to your page/post theme files where you want the validity message to be displayed. Enjoy!

Download The Plugin

Why not tryout the plugin.

How do i install the wp-w3-validation plugin?

  1. Installing Files

    Method 1:
    Use the “Add New” functionality in the WordPress WP-Admin -> Plugins section of your site. Search for wp-w3-validation.
    Method 2:
    Upload the contents of the wp-w3-validation.zip to your wordpress’s plugin directory (http://www.your-site.com/wp-content/plugins/). Then activate the plug in WP-Admin -> Plugins -> Installed
  2. Adding wp-w3-validation to your theme

    Once you have activated the plugin navigate to your current
    wordpress theme located at WP-Admin -> Appearence -> Editor.
    You will now need to add the code to one of the theme files.


    <?php if(function_exists(‘wp_w3_validation’)) {wp_w3_validation();} ?>

    Adding this code will result in a small image being displayed
    (only to people who have page editing privileges) at the point
    the code is added to the theme.

    Personally i like to add this code anywhere the “Edit this entry.”
    text is displayed. Hence all you need to do is find this
    code in your current theme edit_post_link(‘Edit this entry.’ ” ”);
    and add the wp_w3_validation() after. a little something like this:


    edit_post_link(‘Edit this entry.’ ” ‘ ‘); if(function_exists(‘wp_w3_validation’)) {wp_w3_validation();}

    In wordpress’s standard theme the above code is location in
    page.php and single.php

More Info

More info comming soon, in the meantime you can check out the comprensive readme file in the plugins download folder which contains info on:

  • Un-Installation
  • FAQ
  • Screenshots
  • Version Histories – Features – Future plans

or if your feeling extra brave have a look at the source its fairly well commented.