Fixedly Media Gallery

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

Author:Krasen Slavov (profile at wordpress.org)
WordPress version required:3.2
WordPress version tested:3.4.2
Plugin version:1.3.1
Added to WordPress repository:05-07-2012
Last updated:16-11-2012
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, %:65
Rated by:8
Plugin URI:http://www.fixedly.net/
Total downloads:6 737
plugin download
Click to start download

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 Screencast page to learn more on how to use the plugin.

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_id - overwrite the default gallery template (optional)

(e.g. if you would like to have same gallery on different pages with different template style)

1 - default, 2 - default_thumbnails, 3 - content_left, 4 - content_right, 5 - content_top, 6 - content_bottom, 7 - content_left_thumbnails, 8 - content_right_thumbnails, 9 - gallery

Examples

[fixedly-media-gallery id="1"]
[fixedly-media-gallery id="1" template_id="4"]

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");
    }
?>

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"]");?>