=== Columns DIY === Contributors: jupiterwise Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=FC54RLA8U6VCC Tags: shortcode, columns Requires at least: 2.8 Tested up to: 3.9 Stable tag: 1_1 License: GPLv2 Simple shortcodes for div-based columns and rows. Wrap desired content in [column][/column]. Mark the end of a row with [endrow]. CSS not included. == Description == This plugin is intended for theme developers and others who want to have full control of their column styles while still providing a quick and easy framework for adding/editing column content via WordPress's visual editor. It eliminates the need to type tedious, unmanageable chunks of HTML into the editor when specific posts or pages require a columnar layout. That said, this plugin is not plug-and-play. It does not include any styles out-of-the-box, so if you start using the shortcodes without adding appropriate CSS rules, there probably won't be any visible changes to your content. See the [Recipes](https://github.com/jupiterwise/Columns-DIY/wiki/Recipes) page on the GitHub wiki for some styling examples. = Usage = * Designate each column with `[column]` and `[/column]` * Mark the end of a row with `[endrow]` = Features = * Includes enumerated column and row classes, allowing for per-column and -row styling. Also includes parity classes (odd/even) for striping. * If a user forgets to add the last `[endrow]` shortcode, the plugin will automatically insert a closing `` so the site layout doesn't get broken. * Cleans up errant `
` and `
` tags that result from Wordpress's `wpautop()` function.
* All parameter inputs are escaped for security.
= Example =
Putting this into the visual editor:
> `[column]`
>
> This is the column of Foo.
>
> `[/column]`
>
> `[column]`
>
> This is the column of Bar.
>
> `[/column]` `[endrow]`
Will result in this output:
`
This is the column of Foo.
This is the column of Bar.
` and `
` tags.
= 1.0 =
* The initial release to the WordPress plugin repository.
== Upgrade Notice ==