Skip to main content
  Saturday, April 11 2015
  8 Replies
  2.4K Visits
  Subscribe
Hi there, bought today this plugin. Awesome tool, NextGen go to hell with their tool to set watermarks, for now WP Media Folder + Image Watermark - great tools to automate process of upload a lot of images.
But :D
1) Thumbnails-For-Folders: I need thumbnails for folders, cuz when I have 5 subfolders in folder - its ok, but when they are going to be 200 - better to give me chance to find what I want just by using my visual memory.
2) As-Gallery-Output: - you creating folders by getting images into categories, so can I show this category on page I want by putting shortcode? Or using get_posts? Somehow? :)
T
Hey,

Thanks a lot for your feedback, highly appreciated.

1. You mean add a custom thumbnail in place of the gray folder image?

2. This is currently under dev. You'll have an option to create gallery per folder with different layout and other options.
When it's done we'll sent a newsletter to all WP members of course.

Cheers,
V
8 years ago
Tristan, it will be great if I can change thumbnail, but I dont think its rly need - just random image from folder, or first :) It will be logic.
And about gallery - great :) I dont know what will you use (I mean core for gallery), but highly recommend to use some open-source and responsive, cause for now its only one thing I'm coding myself in theme :D
Currently use Advanced Custom Fields, will be good to show list of media-categories can be used in post :)
T
Hi,

Ok got it, it should be available as an option. I'll add to our todo list.

For the gallery yes we've planned an enhancement of the core gallery, a masonry one, a slider, a portfolio type.

Note that we've also planned after that a nextgen gallery import feature.

Cheers,
V
8 years ago
Tristan, nice!
One more question - for now - do I have any possibility to get images, that in one folder (by ur plugin), and use them in cycle like "get_posts"?
Like "category => "name_of_media_folder" :)
T
Hi,

Could you please drop us a ticket referring this post, so the developer could take a look at that.

Cheers!
V
8 years ago
Tristan, lready :) Ticket #9443654040
V
8 years ago
so, guys?
I have your plugin.
In media I have folder with images.
Can I get array of this images by wpmf_category of this folder in php file?

We talk about that almost year ago. Would be good to solve this simple problem.
T
Hi,

I just asked, there are 2 ways to get it.

Method 1:
$images = get_objects_in_term( $term_ids, 'wpmf_category' );


Method 2:
$args = array(
'post_type' => 'attachment',
'tax_query' => array(
array(
'taxonomy' => 'wpmf_category',
'field' => 'slug',
'terms' => $slug,
'include_children' => false
),
),
);
$query = new WP_Query( $args );
$images = $query->get_posts();
  • Page :
  • 1
There are no replies made for this post yet.