jQuery gallery plugin to interface with Picasa
Picasa plugin i think it’ll help you,or help to start a new plugin with some ideas..
Picasa plugin i think it’ll help you,or help to start a new plugin with some ideas..
Usually your WordPress theme will have an “attachments.php” page that would have a “single view” of the image in question. For an example: http://twentyelevenphoto.wordpress.com/2011/05/25/an-image/mcm_5276/ That gives you a “single” view of your image as well as comments. To test to see if your site has this, create a gallery and make sure to check “Attachment … Read more
In cleaner-gallery.php make changes to the cleaner_gallery_plugin_gallery_image function that starts on line 122 and ends on line 151. What we are doing is replacing href with data-href in the two instances that output the html with the image attributes. function cleaner_gallery_plugin_gallery_image( $image, $id, $attr, $instance ) { /* If the image should link to nothing, … Read more
there is a plugin (discontinued): http://wordpress.org/extend/plugins/wp-imageflow/) and a Nextgen addon: http://wordpress.org/extend/plugins/nextgen-imageflow/. More samples and the original code (to the best of my knowledge) can be found here: http://finnrudolph.de/ImageFlow/
Every attachment in a gallery has its post_parent set to the ID of the gallery post that it is attached to. So if you have two gallery posts, each with several images, then you can tell which gallery post the attachment is in (in image.php) by examining that post_parent. So for example, say you had … Read more
This should do the trick add_filter(‘wp_get_attachment_image_attributes’, ‘change_alt_image’, 10, 2); function change_alt_image($attr, $attachment) { $data_img = wp_get_attachment_image_src($attachment->ID, ‘original’, false); $attr[‘alt’] = esc_url($data_img[0]); return $attr; }
I don’t think so, but you could use get_children and get the attachment(s) of those posts: $attachments = get_children(array( ‘post_parent’ => $post->ID, // <- source post ‘post_status’ => ‘inherit’, ‘post_type’ => ‘attachment’, ‘post_mime_type’ => ‘image’, ‘order’ => ‘post_date’, ‘orderby’ => ‘DESC’, ‘numberposts’ => 5, // the number )); Then get the image URLs: $size=”post-thumbnail”; // … Read more
Found a solution – using the plugin “Add from server”, I can re-import the pictures which I attached to the posts when the blog was powered by Dotclear.
You can use the default Gallery Shortcode within your post by specifying a post ID. ID == the original post the photos to which the photos are attached. Hope this helps.
Maybe someone will correct me, but I believe your answer is no. The reason I say no is because NextGen creates additional folders that contain your gallery images. It might be possible to tweak the settings to force it to use the current images location, but that would cause issues down the road if you … Read more