=== Plugin Name ===
Contributors: dylanized
Tags: dummy text, lorem ipsum, lipsum
Requires at least: 3.3.2
Tested up to: 3.3.2
Stable tag: 1.4
License: GPLv2
License URI: http://www.gnu.org/licenses/gpl-2.0.html
WP-Lipsum is a simple plugin for generating dummy text for your WordPress site.
== Description ==
WP-Lipsum includes a collection of template fragments representing lots of common page types, from simple lorem ipsum paragraphs to demos of the WP comment system, and more. It works via a simple shortcode or template tag.
= Using the Shortcode =
`[lipsum]`
This outputs the basic content block. You can edit this in wp-lipsum/templates/basic.php.
`[lipsum template=aux]`
This outputs the auxilary lipsum page, with tables, definition lists, and more. You can edit this in templates/aux.php.
`[lipsum repeat=4]`
This outputs 4 simple paragphs of lorem ipsum text. You can edit the text in templates/p.php.
`[lipsum template=ol repeat=3]`
This loads the ordered list template and displays it 3 times.
`[lipsum t=ol r=3]`
You can also use âtâ and ârâ as parameter shortcuts.
= Lipsum Templates and Fragments =
Here are the full pages of lipsum content available:
* Basic Content â âbasicâ
* Aux Content â âauxâ
* Blog Demo â âblogâ
* Single Post Demo â âsingleâ
* Headline List â âheadline_listâ
* Gallery Demo â âgalleryâ
* Portfolio Demo â âportfolioâ
* Long Header Examples â âlong_headersâ
* Short Content Demo â âshortâ
* Template Fragments
You can also call these smaller fragments, and use the ârepeatâ parameter:
* Single Paragraph â âpâ
* Unordered List â âulâ
* Ordered List â âolâ
* Definition List â âdlâ
* Table Example â âtableâ
* Blockquote â âblockquoteâ
* Blog Teaser â âblog_teaserâ
* Image (without caption) - "img"
* Image with WP Caption - "caption"
* Code Demo â âcodeâ
* Comments Demo â âcommentsâ
* Gallery Item â âgallery_itemâ
* List of Headers â âheadersâ
* Headline Teaser â âheadline_teaserâ
* Misc Content â âmiscâ
* Portfolio Item â âportfolio_itemâ
All lipsum template snippets are located in plugins/wp-lipsum/templates. You can easily add new template files in here, and call them with the âtemplateâ attribute.
Templates use Bedrock conventions, including class names (like .table-style and .post-nav), using H1s and H2s only for titles, and other concepts.
= Image Dimensions =
For the image templates, you can also pass in custom dimensions with the "width", "height" and "align" parameters (shorcuts w, h and a). This works for the img, caption, portfolio & portfolio_item, and gallery & gallery_item templates.
`[lipsum template=img width=300 height=150]`
`[lipsum t=caption w=300 h=150 a=right]`
`[lipsum t=gallery w=500 h=220]`
`[lipsum t=portfolio w=100 h=100]`
Align can be set to "left", "right", "center" or "none". These parameters default to 200x200, and alignleft.
= Using the Template Tag =
You can also call the plugin from your theme code, by using the display_lipsum_template() function:
`<?php display_lipsum_template($template, $repeat); ?>`
`<?php display_lipsum_template('basic') ?>`
`<?php display_lipsum_template('table', 4) ?>`
`<?php display_lipsum_template('caption', 1, 500, 300, 'right') ?>`
= More Info =
[View the WP-Lipsum homepage here](http://bedrocktheme.com/wp-lipsum/ "View the WP-Lipsum homepage here")
WP-Lipsum is a part of the Bedrock mini-framework, more info at [bedrocktheme.com](http://bedrocktheme.com/ "bedrocktheme.com")
Follow me at [dylanized.com](http://dylanized.com/ "dylanized.com") and [@dylanized](http://twitter.com/dylanized "@dylanized")
== Installation ==
1. Upload the "wp-lipsum" folder to the "/wp-content/plugins/" directory
1. Activate the plugin through the 'Plugins' menu in WordPress
1. Now you can use the shortcodes and the template tag
== Screenshots ==
1. The "basic" template
2. The "aux" template
3. The "blog" template
== Changelog ==
= 1.4 =
* Added image dimensions and alignment parameters, and the img template
= 1.3 =
* Added "t" and "r" shortcuts, submitted to WP Directory
= 1.2 =
* Added lots more templates and changed paramters to "template" and "repeat"
= 1.1 =
* Fixed a bug
= 1.0 =
First version, just had a couple templates
== Upgrade Notice ==
Note: if you create your own custom lipsum templates, make sure to back them up before you upgrade this plugin.