=== Fixedly Media Gallery ===
Contributors: kobra12
Donate link: http://fixedly.net/donate
Tags: image, video, slideshow, gallery
Requires at least: 3.2
Tested up to: 3.4.1
Stable tag: 4.3
License: GPLv2
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Create and integrate, easily and quickly your next video, image or slideshow gallery into your WordPress pages and posts.

== Description ==

Fixedly Media Gallery is WordPress plugin that can help you create and integrate, easily and quickly your next video, image or
slideshow gallery into your pages and posts. Within 3 easy steps you can create and insert a gallery to your next post.
Check out our [HOWTOs category](http://fixedly.net/category/howtos/ "HOWTOs category") to learn more.

Be sure that you have `<?php wp_head();?>` function included into your WordPress theme header file otherwise the Fixedly Media Gallery won't work.

= Shortag =

[fixedly-media-gallery]

= Options =

* *id* - the ID of the gallery you want to insert (**required**)
* *template* - the name of your template directory (optional) - available values default*, image, video, slideshow
* *type* - the type of you gallery (optional) - available values image*, video, slideshow
* *width* - width of the gallery container in % or px (optional) for video and image galleries you set left & right width - available values 100%*, 100px ...
* *height* - height of the gallery container in px (optional)- available values 360px*, 500px ...

= Examples =

`[fixedly-media-gallery id="1"]`
`[fixedly-media-gallery id="1" template="image" type="image" width="350px/150px" height="350px"]`
`[fixedly-media-gallery id="2" template="video" type="video" width="350px/150px" height="350px"]`
`[fixedly-media-gallery id="3" template="slideshow" type="slideshow" width="680px" height="400px"]`

= PHP Code =

Here is the code if you want to add the gallery directly into your PHP templates.

`<?php
    if (function_exists("fixedly_media_gallery")) {
        print fixedly_media_gallery(1, "default", "image", "680px", "350px");
    }
?>`

Another way to add gallery into your PHP templates is by using the `<?php do_shortcode();?>` function.

`<?php print do_shortcode("[fixedly-media-gallery id=1]");?>`

- * this is a default option value.


== Installation ==

1. Upload `fixedly` directory to the `/wp-content/plugins/` directory.
2. Activate the plugin through the 'Plugins' menu in WordPress.
3. Use shortcode [fixedly-media-gallery id="1"] OR PHP code
    `<?php if (function_exists("fixedly_media_gallery")) { print fixedly_media_gallery(1, "default", "image", "100%", "360px");}?>` OR
    `<?php print do_shortcode("[fixedly-media-gallery id=1]");?>` in your templates.

Learn more about the plugin installation and usage @ [Fixedly Media Gallery](http://fixedly.net/ "Fixedly Media Gallery") website.

== Frequently Asked Questions ==

See Fixedly Media Gallery FAQs [here](http://fixedly.net/faqs/ "here").

== Screenshots ==

See Fixedly Media Gallery Screenshots [here](http://fixedly.net/screenshots/ "here").

== Changelog ==

= 1.0 =
* Fixedly Media Gallery 1.0 Released (beta version)

== Upgrade Notice ==

= 1.0 =
* Fixedly Media Gallery 1.0 Released (beta version)
* Fixedly Media Gallery 1.0 Released (beta version) - Update to readme.txt #2
