Hello, I have wordpress blog, I use Newspaper Times Theme by Magazine3. I wanted to put a image gallery in post, Can any one tell me any plugin where i can install gallery in post or any other options... Also i wanted to install video option in post.. any plugins for it?
Hi Inzaji, NextGen gallery plugin is good for integrating gallery in wordpress post. Just try it.. You can try it from http://wordpress.org/extend/plugins/nextgen-gallery/
What exactly is not working with this gallery? Please share the issue. I use it and it works perfect! but i use togetrer with "nextgen scroll gallery" which adds slideshow gallery into a post. You may need to install "nextgen scroll gallery" then you can add slideshows right into a post. That way you'll save a good part of blog post space.
Doesn't wordpress have a gallery function builtin to the media library. You just upload the images and insert them as a gallery.
Hi Inzaji Put This Code to the functions.php function mattchthumb( ) { global $post; $args = array( "post_type" => "attachment", "post_parent" => $post->ID, "post_mime_type" => "image", "width" => 75, "height" => 75, "post_status" => null, "numberposts" => 6 ); $attachments = get_posts( $args ); if ( $attachments ) { foreach ( $attachments as $attachment ) { echo wp_get_attachment_link( $attachment->ID, "thumbnail", true, false ); } } } Code (markup): and than, put this code to the position that you will show the image gallery at single.php <?php mattchthumb(); ?> Code (markup): I Always use this code for my themes. Hopefully can help you.