Gallery Pagination by Row

It is definitely possible!! Ok, here is what I did… My new loop looks like: <?php $ids = array();?> <?php foreach(query_posts(“category_name=photos&showposts=-1”) as $post_blog): ?> <?php $url = wp_get_attachment_image_src( get_post_thumbnail_id($post_blog->ID), ‘gallery-full’ ); ?> <?php $thumbs = wp_get_attachment_image_src( get_post_thumbnail_id($post_blog->ID), ‘gallery-thumbnail’ ); ?> <?php list($width) = getimagesize($thumbs[0]); ?> <?php $ids[] = array(“id_post” => $post_blog->ID, “width” => $width, ‘url’ … Read more

How to Organize my Photo Albums?

General idea based on the use of regular Posts, not Custom Post Types (which is what the plugin CPT-UI is about): one parent Category -Photos under it, the needed sub-categories -Personal, Professional, etc one post corresponds to one Album -Vacations 2012, News Coverage, etc upload all images of the Album into the post, put titles, … Read more

Use bootstrap for wordpress gallery? [closed]

The gallery shortcode is contained in the wp-includes/media.php file. There is a function gallery_shortcode( that does all work. About 25 lines down you find: $output = apply_filters( ‘post_gallery’, ”, $attr, $instance ); if ( $output != ” ) { return $output; } This code goes out and runs any filters tethered to post_gallery, and if … Read more

JQuery WordPress gallery [closed]

Of course it’s possible. Galleria is a jQuery plugin that is similar, but better (fancy slide transition effects and more). You could include it yourself (see their documentation) or if you prefer WordPress plugins look at Photo Gallery which seems like it’s based on galleria (haven’t tried it). Another really popular gallery plugin is the … Read more

Cany anyone name this lightbox? [closed]

Ist and custom gallery, i think. See in the source of http://d3dgk6r8ca2pzn.cloudfront.net/js/gallery_1332969334.js: /** * Image gallery used in product detail pages and customization pages * * @module Gallery * @author Preet Jassi * @file gallery.js * @copyright (c) 2011 Indochino Apparel Inc. */ Use the yui lib from Yahoo: http://yuilibrary.com/ But maybe you find an … Read more

Seeking recommendations on Gallery plugins , specifically captioning thumbnails [closed]

Have you tried this for NextGen? – http://wordpress.org/support/topic/nextgen-image-gallery-captions Excerpt (many other useful tips at the linked thread): ENABLING CAPTIONS BELOW GALLERY IMAGES When you add a gallery to a post/page, you get this by default: [nggallery id=1] You need to add this: [nggallery id=1 template=caption] GETTING THE CAPTIONS YOU JUST ENABLED TO SHOW-UP When importing … Read more

Adding different classes to different images depending on size for fine control of image layout in posts

It looks to me that those images, along with their divs, have been added directly into the editor. So, it’s probably being updated by a developer, or at least someone HTML savvy. I’m not sure what you mean by ‘meta boxes’. A meta box is basically any collapsible box within the WP admin interface. If … Read more