wp-rounded-image

WP Rounded Image puts rounded corners around your images. It does it using HTML/CSS markup only.

Author:spintheweb (profile at wordpress.org)
WordPress version required:3.0.3
WordPress version tested:3.0.5
Plugin version:1
Added to WordPress repository:30-12-2010
Last updated:30-12-2010
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:0
Rated by:0
Plugin URI:http://www.spintheweb.org
Total downloads:2 719
Active installs:20+
plugin download
Click to start download

WP Rounded Image puts rounded borders around your images. It does it using HTML/CSS markup only.

When you post, any images contained in your post will receive rounding. Image will be replaced with markup.

This:

<img src="thetest.jpg" title="fantastico!" / >

Becomes this:

<!-- wp-rounded-img begin -->
    <div class="wp-rounded-img ">
        <div class="wp-rounded-img-corner wp-rounded-img-tl"></div>
        <div class="wp-rounded-img-corner wp-rounded-img-tli"></div>
        <div class="wp-rounded-img-side wp-rounded-img-t"></div>
        <div class="wp-rounded-img-corner wp-rounded-img-tr"></div>
        <div class="wp-rounded-img-corner wp-rounded-img-tri"></div>
        <div class="wp-rounded-img-side wp-rounded-img-l"></div>
        <div class="wp-rounded-img-side wp-rounded-img-r"></div>
        <div class="wp-rounded-img-corner wp-rounded-img-bl"></div>
        <div class="wp-rounded-img-corner wp-rounded-img-bli"></div>
        <div class="wp-rounded-img-corner wp-rounded-img-br"></div>
        <div class="wp-rounded-img-side wp-rounded-img-b"></div>
        <div class="wp-rounded-img-corner wp-rounded-img-bri"></div>
<!-- wp-rounded-img img begin --> <img src="thetest.jpg" title="fantastico!" style="border: none 0em;" /> <!-- wp-rounded-img img end -->
    </div><!-- wp-rounded-img end -->

If the <img> has the class "wp-rounded-off", it will not be replaced with the above markup. You can add the class to the image with the rounded markup, and the rounding markup will be removed.