A cool responsive gallery plugin with beautifully views.
See demo: http://shrimp2t.com/gallery-one/
Just paste your album url, example:
https://www.facebook.com/BillGates/photos/?tab=album&album_id=10153110017351961
Note: Your album status must be public to load.
Just paste your album url, example:
https://www.flickr.com/photos/gianstefanofontana/albums/72157649693279051
Note: Your album status must be public to load.
gallery-one
on your theme.view.php
config.php
Example file view.php
:
<div class="my-view"> <?php var_dump( $this->settings ); /* You config data in file config.php var_dump( $this->media->get_data() ); // Gallery items data ?> </div>
Example file config.php
:
$config = array( 'name' => __( 'Justified', 'gallery-one' ), // view name 'js' => 'js/js.js', 'css' => 'css/css.css', 'view_settings' => array( array( 'id' => 'margins', 'default' => '10', 'label' => __( 'Margins', 'gallery-one' ), 'type' => 'text' ), array( 'id' => 'lightbox', 'default' => '1', 'label' => __( 'Lightbox', 'gallery-one' ), 'type' => 'checkbox' ), ), );
my-cool-views
.my-cool-views/full-screen
.view.php
file for you view my-cool-views/full-screen/view.php
.config.php
file for you view my-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;
}
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:
gallery-one
folder to the /wp-content/plugins/
directory