Multiple Galleries in WordPress 3.3.1
Use Nextgen and problem solved. You can add as many galleries as you want. And you’re right, sadly, this core upgrade killed a lot of amazing plugins. I have downgraded sites because of that.
Use Nextgen and problem solved. You can add as many galleries as you want. And you’re right, sadly, this core upgrade killed a lot of amazing plugins. I have downgraded sites because of that.
If ‘gallery’ is a taxonomy item (like a category) you could create a new page template (perhaps based on index.php) and then use the get_posts() function to return a list of posts in that category. That’s the process. Do you need more detail? If ‘gallery’ is a post format that may be a quite different … Read more
Make sure that your galleries are set as Links to “Image File” and not to “Attachment Post” for Galleries and images. You’ll find the settings in the image/galleries pop-up window. I’m not familiar with your plug-in but you might need to manually add the fancybox class to each image. Another option is to add the … Read more
The function you’ve supplied actually doesn’t look that bad. It’s almost the same way I’d handle the problem, however if you only ever want to modify the include part and always get the attachment_ids associated with the post, here is what I would do. I would actually create a new shortcode which in turn calls … Read more
Hourray : find it : do_shortcode do the trick ! here is the final code : // ——————————————————————————————————————– //Add a ShorCode to get a page/post content add_shortcode (‘post_cat3′,’get_post_cat3’); function get_post_cat3 ($att) { $query = new WP_Query( ‘cat=36’ ); if ($query->have_posts()) : while ($query->have_posts()) : $query->the_post(); $aaa .= ‘<p>————</p>’.do_shortcode(get_the_content()); endwhile; endif; return do_shortcode($aaa); }
try http://codex.wordpress.org/Gallery_Shortcode
Read Theme Unit Test and import the test data (including images!) into a new blog. You will get everything you need to test. There is a gallery post included (Images Test), and if you click on an image you get an attachment page for this gallery image. Here is a screen shot from TwentyEleven: See … Read more
Just figured out this one– in the function that load the iframe, add this: if ( !empty($_POST) ) { $return = media_upload_form_handler(); if ( is_string($return) ) return $return; if ( is_array($return) ) $errors = $return; } Then, all the form data get saved as normal.
I think those extra parameters in url (after-#) are generated to make that plugin work with browser history. I think the plugin doesn’t loading required javascript to popup full sized images. thats why it only updating url but not showing full sized image. See the source code of page to make sure you’re loading all … Read more
i’ve been using nextgen gallery and i believe it fits your needs: 1. Upload a folder full of images : yes 2. Resize images according to a specified size : yes, on the gallery option you can set the standard size. 3. Have the ability to organize these images into folders (collection1, collection2, etc) : … Read more