Plugin Directory

Changeset 1310921


Ignore:
Timestamp:
12/17/2015 02:30:30 PM (10 years ago)
Author:
vantco
Message:

readme updated

Location:
go-gallery/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • go-gallery/trunk/go-gallery.php

    r1309971 r1310921  
    22/**
    33 * Plugin Name: Go Gallery
    4  * Plugin URI:  http://wpdemo.vantco.com/gogallery/
     4 * Plugin URI:  http://bit.ly/go-gal-home
    55 * Text Domain: go_gallery
    6  * Description: This plugin displays beautiful galleries. Simple, lightweight yet very powerful gallery plugin brings you all functionality to display beautiful galleries with less configurations and without slowing down your page.
     6 * Description: Responsive filterable gallery. Easy to use, lightweight yet very powerful shortcode driven gallery plugin to display beautiful galleries.
    77 * Version:     1.0
    88 * Author:      AlViMedia
     
    7373
    7474
    75  /** Add a category filter to images */
     75/** Add a category filter to images */
     76/*
    7677function go_add_image_category_filter() {
    7778    $screen = get_current_screen();
    7879    if ( 'upload' == $screen->id ) {
    79         $dropdown_options = array( 'show_option_all' => __( 'View all categories', 'ct' ), 'hide_empty' => false, 'hierarchical' => true, 'orderby' => 'name', );
     80        $dropdown_options = array( 'show_option_all' => __( 'View all categories', 'ct' ), 'taxonomy' => 'attachment_category', 'hide_empty' => false, 'hierarchical' => true, 'orderby' => 'name', );
    8081        wp_dropdown_categories( $dropdown_options );
    8182    }
    8283}
    8384add_action( 'restrict_manage_posts', 'go_add_image_category_filter' );
     85*/
    8486
    8587
  • go-gallery/trunk/readme.txt

    r1309971 r1310921  
    2121Go Gallery enables categories in media images and adds filter menu to each gallery for easy and beautiful sorting. For more info and examples see [Other Notes](https://wordpress.org/plugins/go-gallery/other_notes/ "Other Notes")
    2222
    23 * Live Demo: [Live Demo](http://wpdemo.vantco.com/gogallery/ "Live Demo")
    24 * QuickStart: [QuickStart](http://wpdemo.vantco.com/gogallery/quickstart/ "QuickStart")
     23* Live Demo: [Live Demo](http://bit.ly/go-gal-home "Live Demo")
     24* QuickStart: [QuickStart](http://bit.ly/go-gal-qs "QuickStart")
    2525
    2626== Understanding Media Categories ==
     
    3232You can add more Media Categories directly in Image Edit or in Media Categories:
    3333
    34 == ShortCodes List ==
     34== ShortCode OPTIONS List ==
     35
     36Usage: [go_gallery OPTION1='use quotes for text values OPTIONS space separated' OPTION2=1]
    3537
    3638 * go_gallery = Go Gallery opening shortcode all params follows space separated
    37  * cat = ‘category1, category2, …’ – comma separated list of media categories to display
    38  * size = ‘large/medium/small/tiny’ – size of the gallery grid: (large – 2 columns, medium – 3 columns, small – 4 columns, tiny – 8 columns)
     39 * cat = 'category1, category2, …' – comma separated list of media categories to display
     40 * size = 'large/medium/small/tiny' – size of the gallery grid: (large – 2 columns, medium – 3 columns, small – 4 columns, tiny – 8 columns)
    3941 * limit = 1-200 – number of images to display (in total)
    4042 * border_size = size (in pixels) of the image border
Note: See TracChangeset for help on using the changeset viewer.