See demo: http://shrimp2t.com/gallery-one/
Features
- Fully responsive, Touch enabled
- Unlimited albums
- Unlimited images
- Carousel
- Gird
- Justified
- Masonry
- Slideshow
- Blog style (comming soon )
- JustifiedGallery Light box
- Load Facebook album images
- Load Flickr album images
- Add image from url
- Shortcode creator
Load Facebook Album
Just paste your album url, example:
Note: Your album status must be public to load.
Load Flickr Album
Just paste your album url, example:
Note: Your album status must be public to load.
Adding your own view in your theme
- Create a folder
gallery-oneon your theme. - Inside folder which created add a file and name
view.php - [Optional] Inside folder which created add a file and name
config.php
Example file view.php:
Example file config.php:
Adding your own view in your plugin
- Create new folder in your plugin, example:
my-cool-views. - Add add new view folder example:
my-cool-views/full-screen. - Add
view.phpfile for you viewmy-cool-views/full-screen/view.php. - [Optional] Add
config.phpfile for you viewmy-cool-views/full-screen/config.php. -
Add your your views folder to view loader:
add_filter( ‘gallery_one_get_template_folders’, ‘my_cool_views_path’);
function my_cool_views_path( $view_paths ){
$view_paths[‘my_cool_view’] = PATH_TO_MY_PLUGIN.’/my-cool-views’;
return $view_paths;
}
Config Parameters
name: (string) Name of your view.
css: (string/array) CSS files will enqueue when this view load.
js: (string/array) JS files will enqueue when this view load.
view_settings: (array) list field settings for your view.
view_settings Parameters:
- id: Id of setting field.
- label: Label of setting files.
- default: Default value.
- type: Field type: text|select|checkbox|textarea.
- option: For field type select (array).
- desc: Field description.

评论0