Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kovshenin/columns
https://github.com/kovshenin/columns
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kovshenin/columns
- Owner: kovshenin
- Created: 2013-01-04T14:03:02.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-12-03T18:30:28.000Z (almost 11 years ago)
- Last Synced: 2024-04-14T05:33:11.884Z (7 months ago)
- Language: PHP
- Size: 309 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.txt
Awesome Lists containing this project
README
=== Columns ===
Contributors: kovshenin
Donate Link: http://kovshenin.com/beer/
Tags: columns, shortcode
Requires at least: 3.5
Tested up to: 3.8
Stable tag: 0.7.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.htmlThis WordPress plugin boosts your website with... you guessed it, columns!
== Description ==
Create a column group with the `[column-group]` shortcode, then add columns to the group with the `[column]` shortcode, like this:
[column-group]
[column]This is my first column[/column]
[column]This is my second column[/column]
[/column-group]You can also span columns, like this:
[column-group]
[column span="2"]This is my first column spanned across two columns.[/column]
[column]This is my second column[/column]
[column]This is my third column[/column]
[/column-group]The firt column will be twice as large as the second or third.
Styles are in columns.css. If you'd like your own margins and stuff, dequeue the columns.css style during `wp_enqueue_scripts` with a priority of 11 or more.
== Installation ==
1. Download archive and unzip in wp-content/plugins or install via Plugins - Add New.
1. Start using the `[column-group]` and `[column]` shortcodes.== Screenshots ==
1. Columns demo
2. This is how things look in the editor== Changelog ==
= 0.7.2 =
* Fix wpautop issues when another shortcode appears in a column
* Testing in 3.7.1 and 3.8= 0.7.1 =
* Clear floats after column group
* Allow other shortcodes inside column contents= 0.7 =
* First version